/* Background wrapper */
.ict-wrapper {
    /*background: radial-gradient(circle at 10% 10%, #111 0%, #0a0a0a 100%);*/
    padding: 60px 20px;
    min-height: 100vh;
}

/* Card */
.ict-card {
    max-width: 750px;
    margin: auto;
    background: #121212;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #1f1f1f;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* Title */
.ict-title {
    color: #ccc;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Drop Area */
.ict-drop-area {
    border: 2px dashed #2a2a2a;
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.ict-drop-area:hover {
    border-color: #5b4bff;
    background: rgba(91,75,255,0.05);
}

.ict-icon {
    font-size: 32px;
    color: #888;
    margin-bottom: 10px;
}

.ict-main-text {
    color: #fff;
    font-size: 18px;
    margin: 5px 0;
}

.ict-sub-text {
    color: #777;
    font-size: 14px;
}

/* Format Select */
.ict-format {
    margin-top: 25px;
}

.ict-format label {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
}

.ict-format select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    color: #fff;
}

/* Button */
.ict-btn {
    width: 100%;
    margin-top: 30px;
    padding: 16px;
    border-radius: 14px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #5b4bff, #7a5cff);
    transition: 0.3s ease;
}

.ict-btn:hover {
    opacity: 0.9;
}

/* Note */
.ict-note {
    margin-top: 12px;
    font-size: 13px;
    color: #777;
    text-align: center;
}

/* Result */
#ict_result {
    margin-top: 20px;
    text-align: center;
}

.ict-btn {
    /* ... your existing styles ... */
    cursor: pointer;
    transition: all 0.2s;
}

.ict-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

#ict_result img {
    object-fit: contain;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}