.bengal-test-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.test-header {
    text-align: center;
    margin-bottom: 30px;
}

.test-header h3 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
}

.test-header p {
    color: #7f8c8d;
    font-size: 16px;
}

.question-container {
    background: white;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.question-container:hover {
    transform: translateY(-2px);
}

.question {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
    font-size: 18px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.option:hover {
    border-color: #3498db;
    background: #ebf3fd;
}

.option.selected {
    border-color: #ab7147;
    background: #fdf5f0;
    color: #8b5a3c;
}

.option input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.2);
    cursor: pointer;
}

.submit-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 30px auto;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ab7147 0%, #8b5a3c 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(171, 113, 71, 0.3);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(171, 113, 71, 0.4);
}

.submit-btn:disabled {
    background: #bdc3c7 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.result {
    text-align: center;
    padding: 30px;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.result.excellent {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.result.good {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.result.warning {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.result h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.result p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.result-score {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

.restart-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 5px;
    font-size: 14px;
}

.restart-btn:hover {
    background: white;
    color: #34495e;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #ecf0f1;
    border-radius: 3px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ab7147 0%, #8b5a3c 100%);
    width: 0%;
    transition: width 0.5s ease;
}

.email-section {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    padding: 12px 15px;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.rgpd-checkbox {
    display: flex;
    align-items: flex-start;
    text-align: left;
    font-size: 13px;
    gap: 8px;
}

.rgpd-checkbox input {
    margin-top: 3px;
    min-width: 18px;
    height: 18px;
}

.email-btn {
    background: white;
    color: #34495e;
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.email-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid white;
    background: rgba(255,255,255,0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.share-btn:hover {
    background: white;
    color: #34495e;
}

.success-message {
    background: rgba(255,255,255,0.3);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bengal-test-container {
        padding: 15px;
        margin: 10px;
    }
    
    .question-container {
        padding: 20px;
    }
    
    .test-header h3 {
        font-size: 24px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}