/* Test Page Specific Styles */
.test-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.test-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.test-intro h1 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.subtitle {
    color: #718096;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.intro-content {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 1.5rem;
    border: 1px solid #e2e8f0;
}

.archetype-previews {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.archetype-card {
    flex: 1;
    min-width: 280px;
    padding: 1.75rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.archetype-card:hover {
    transform: translateY(-4px);
}

.mug-washer-preview {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4caf50;
}

.mug-leaver-preview {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #f44336;
}

.test-instructions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.test-instructions h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.test-instructions ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.test-instructions li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
}

.note {
    background: #fff8e1;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffb300;
    margin-top: 1.5rem;
    color: #5d4037;
    font-size: 0.9rem;
}

/* Test Container */
.test-container {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    border: 1px solid #e2e8f0;
}

.progress-container {
    margin-bottom: 2.5rem;
}

.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4299e1, #38b2ac);
    width: 0%;
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 5px;
}

.progress-text {
    display: block;
    text-align: center;
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Quiz Options - Desktop: Single Column, Mobile: 2x2 Grid with better alignment */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.75rem 0;
}

@media (max-width: 768px) {
    .options-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.option {
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    display: flex;
    align-items: flex-start;
    min-height: 85px;
    position: relative;
    text-align: left;
}

@media (max-width: 768px) {
    .option {
        min-height: 110px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .option {
        min-height: 100px;
        padding: 0.875rem;
    }
}

.option:hover {
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.option.selected {
    border-color: #4299e1;
    background: linear-gradient(135deg, #ebf8ff 0%, #e6fffa 100%);
    box-shadow: 0 8px 16px rgba(66, 153, 225, 0.15);
}

.option-label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .option-label {
        padding-right: 1.5rem;
        width: 100%;
    }
}

.option-label strong {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .option-label strong {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

.option-label small {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
    display: block;
}

@media (max-width: 768px) {
    .option-label small {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Custom radio button */
.option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .option::before {
        top: 1rem;
        right: 1rem;
        width: 18px;
        height: 18px;
    }
}

.option.selected::before {
    border-color: #4299e1;
    background: #4299e1;
}

.option.selected::after {
    content: '';
    position: absolute;
    top: 1.4rem;
    right: 1.65rem;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .option.selected::after {
        top: 1.15rem;
        right: 1.15rem;
        width: 8px;
        height: 8px;
    }
}

/* Question card */
.question-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    scroll-margin-top: 100px;
}

.question-card h3 {
    font-size: 1.35rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 600;
}

/* Form actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary, .btn-submit {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    min-width: 140px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    box-shadow: 0 4px 6px rgba(66, 153, 225, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3182ce, #2c5282);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(66, 153, 225, 0.3);
}

.btn-secondary {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    display: none;
    box-shadow: 0 4px 6px rgba(72, 187, 120, 0.25);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #38a169, #2f855a);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(72, 187, 120, 0.3);
}

/* Results Section */
.results-container {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.results-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.results-header h2 {
    color: #2d3748;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.results-subtitle {
    color: #718096;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Score Display */
.score-display {
    margin: 3rem 0;
}

.score-meter {
    max-width: 700px;
    margin: 0 auto;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
}

.meter-track {
    height: 24px;
    background: linear-gradient(90deg, #f56565, #ed8936, #48bb78);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.meter-fill {
    height: 100%;
    background: rgba(255,255,255,0.25);
    width: 0%;
    transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meter-indicator {
    position: absolute;
    top: -8px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translateX(-20px);
    transition: left 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 4px solid #4299e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.score-value {
    text-align: center;
    margin-top: 1.5rem;
}

.score-value span:first-child {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
    display: block;
    background: linear-gradient(135deg, #4299e1, #38b2ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.score-label {
    color: #718096;
    font-size: 1rem;
    font-weight: 500;
}

/* Archetype Result */
.archetype-result {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-left: 6px solid #4299e1;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.archetype-result h3 {
    color: #2d3748;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.archetype-result p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.score-breakdown {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid #e2e8f0;
}

.score-breakdown p {
    margin: 0.75rem 0;
    color: #4a5568;
    font-size: 1rem;
}

/* Growth Section */
.growth-section {
    margin: 3.5rem 0;
}

.growth-section h3 {
    color: #2d3748;
    margin-bottom: 1.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
}

.growth-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.growth-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.growth-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #4299e1;
}

.growth-card h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.growth-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.action-item {
    background: linear-gradient(135deg, #ebf8ff 0%, #e6fffa 100%);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 5px solid #4299e1;
    font-size: 1rem;
    color: #2d3748;
}

/* Animal Archetype */
.animal-archetype-section {
    margin: 3.5rem 0;
}

.animal-archetype-section h3 {
    color: #2d3748;
    margin-bottom: 1.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
}

.animal-result {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
}

.animal-result h3 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 800;
}

.animal-result p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.animal-tips {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.animal-tips h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.animal-tips ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
}

.animal-tips li {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: left;
}

.animal-tips li:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Action Steps */
.action-steps {
    margin: 4rem 0;
}

.action-steps h3 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.action-steps h3::after {
    content: '☕️';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
}

/* Desktop layout: Top 3 cards in a row, bottom card full width */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bottom-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Top row cards (1,2,3) */
.top-row .step-card {
    min-height: 280px;
}

/* Bottom row card (4) */
.bottom-row .step-card {
    min-height: 320px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50, #2196f3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.step-card h4 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    min-height: 3rem;
}

.step-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.step-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    border: 2px solid #2196f3;
    border-radius: 25px;
    transition: all 0.3s ease;
    min-width: 160px;
    margin-left: auto;
    margin-right: auto;
}

.step-link:hover {
    background: #2196f3;
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.3);
}

/* Share Card - Uniformed Share Buttons with better organization */
.share-buttons-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-grow: 1;
}

.share-btn-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    min-height: 70px;
    text-align: center;
    min-width: 0;
}

.share-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-btn-small i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.share-btn-small span {
    display: block;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding: 0 2px;
    font-weight: 600;
}

/* Platform colors for share buttons */
.share-btn-small[data-platform="whatsapp"] {
    color: #25D366;
    border-color: #25D366;
}

.share-btn-small[data-platform="linkedin"] {
    color: #0077B5;
    border-color: #0077B5;
}

.share-btn-small[data-platform="twitter"] {
    color: #1DA1F2;
    border-color: #1DA1F2;
}

.share-btn-small[data-platform="tumblr"] {
    color: #35465D;
    border-color: #35465D;
}

.share-btn-small[data-platform="reddit"] {
    color: #FF4500;
    border-color: #FF4500;
}

.share-btn-small[data-platform="facebook"] {
    color: #1877F2;
    border-color: #1877F2;
}

.share-btn-small[data-platform="email"] {
    color: #EA4335;
    border-color: #EA4335;
}

.share-btn-small[data-platform="copy"] {
    color: #6c757d;
    border-color: #6c757d;
}

/* Hover effects */
.share-btn-small:hover[data-platform="whatsapp"] {
    background-color: #25D366;
    color: white;
    border-color: #25D366;
}

.share-btn-small:hover[data-platform="linkedin"] {
    background-color: #0077B5;
    color: white;
    border-color: #0077B5;
}

.share-btn-small:hover[data-platform="twitter"] {
    background-color: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
}

.share-btn-small:hover[data-platform="tumblr"] {
    background-color: #35465D;
    color: white;
    border-color: #35465D;
}

.share-btn-small:hover[data-platform="reddit"] {
    background-color: #FF4500;
    color: white;
    border-color: #FF4500;
}

.share-btn-small:hover[data-platform="facebook"] {
    background-color: #1877F2;
    color: white;
    border-color: #1877F2;
}

.share-btn-small:hover[data-platform="email"] {
    background-color: #EA4335;
    color: white;
    border-color: #EA4335;
}

.share-btn-small:hover[data-platform="copy"] {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
}

/* Results Actions */
.results-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.results-actions button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

/* Share Feedback Message */
.share-feedback {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-buttons-small {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .test-intro h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .intro-content {
        padding: 1.75rem;
    }
    
    .archetype-previews {
        flex-direction: column;
        align-items: center;
    }
    
    .archetype-card {
        width: 100%;
        max-width: 400px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary, .btn-submit {
        width: 100%;
        min-width: auto;
    }
    
    .action-steps {
        margin: 3rem 0;
    }
    
    /* Mobile layout: Stack all cards */
    .top-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        min-height: 280px;
        padding: 1.75rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .bottom-row .step-card {
        min-height: 300px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-card h4 {
        font-size: 1.1rem;
        min-height: 2.5rem;
    }
    
    .share-buttons-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .share-btn-small {
        padding: 0.75rem 0.5rem;
        min-height: 65px;
        font-size: 0.7rem;
    }
    
    .share-btn-small i {
        font-size: 1.1rem;
    }
    
    .animal-tips ul {
        justify-content: flex-start;
    }
    
    .animal-tips li {
        width: 100%;
        text-align: left;
    }
    
    .growth-cards {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .results-actions button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .test-wrapper {
        padding: 1rem 0.75rem;
    }
    
    .test-intro h1 {
        font-size: 1.8rem;
    }
    
    .test-container {
        padding: 1.5rem;
    }
    
    .question-card {
        padding: 1.5rem;
    }
    
    .option {
        padding: 1rem;
        min-height: 100px;
    }
    
    .option-label strong {
        font-size: 0.85rem;
    }
    
    .option-label small {
        font-size: 0.75rem;
    }
    
    .action-steps h3 {
        font-size: 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
        min-height: 260px;
    }
    
    .bottom-row .step-card {
        min-height: 280px;
    }
    
    .share-buttons-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .share-btn-small {
        padding: 0.6rem 0.3rem;
        min-height: 60px;
        font-size: 0.65rem;
    }
    
    .share-btn-small i {
        font-size: 1rem;
    }
    
    .animal-result {
        padding: 2rem 1.5rem;
    }
    
    .animal-tips li {
        padding: 0.875rem 1.25rem;
    }
}

/* Accessibility Improvements */
.btn-primary:focus, .btn-secondary:focus, .btn-submit:focus,
.option:focus-within,
.share-btn-small:focus {
    outline: 2px solid #4299e1;
    outline-offset: 2px;
}

.option:focus {
    outline: none;
}

.question-card:target {
    animation: highlight 1s ease;
}

@keyframes highlight {
    0% { background-color: #fff9c4; }
    100% { background-color: white; }
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2196f3;
    color: white;
    padding: 8px;
    border-radius: 0 0 4px 0;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Animation for option selection */
@keyframes optionSelect {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.option.selected {
    animation: optionSelect 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
