:root {
    --bg-primary: #f5f7fa;
    --bg-secondary: #ffffff;
    --accent-primary: #1e40af;
    --accent-secondary: #dc2626;
    --accent-success: #059669;
    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    --accent-green: #10b981;
    --accent-green-light: #34d399;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --gradient-bg: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 142, 83, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.06) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 142, 83, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.06) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 1rem 2rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.5rem;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.logo-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--accent-coral);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-coral);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.logo-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.title {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
}

.title::after {
    content: '✨';
    position: absolute;
    right: -2rem;
    top: 0;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.7; }
}

.subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.5;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding: 0 1rem;
    animation: fadeIn 1s ease-out;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    overflow: hidden;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--border-light);
    border-radius: 2px;
    z-index: 0;
}

.progress-line {
    position: absolute;
    top: 50%;
    left: 10%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    z-index: 1;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%);
}

.step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2.5px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.step.active {
    border-color: var(--accent-coral);
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.15);
    box-shadow: var(--shadow-md);
}

.step.completed {
    border-color: var(--accent-teal);
    background: var(--gradient-accent);
    color: white;
}

/* Question Container */
.question-container {
    position: relative;
    min-height: auto;
}

.question-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.question-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.question-card {
    background: white;
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: cardIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.question-card.active::before {
    transform: scaleX(1);
}

.question-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.question-number-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    flex-shrink: 0;
}

.question-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.question-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.875rem;
    width: 100%;
    box-sizing: border-box;
}

.option-card {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 1rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.option-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.option-card:hover {
    border-color: var(--accent-coral);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.option-card:hover::before {
    opacity: 1;
}

.option-card.selected {
    border-color: var(--accent-coral);
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

.option-card.selected .option-icon {
    transform: scale(1.2) rotate(10deg);
    filter: brightness(1.2);
}

.option-card.selected .option-label {
    color: white;
}

.option-card.selected .option-description {
    color: rgba(255, 255, 255, 0.9);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    display: block;
    transition: color 0.3s ease;
}

.option-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Navigation */
.nav-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 2px solid var(--border-light);
    width: 100%;
    box-sizing: border-box;
}

.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    flex: 1;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    position: relative;
    z-index: 1;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: white;
    border: 2.5px solid var(--border-light);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--accent-coral);
    color: var(--accent-coral);
    background: rgba(255, 107, 107, 0.05);
}

/* Result Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    background: rgba(45, 52, 54, 0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.4s ease;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 3px solid var(--border-light);
    overflow: hidden;
    box-sizing: border-box;
    margin: auto;
    max-height: 95vh;
    overflow-y: auto;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

@keyframes modalIn {
    0% {
        transform: scale(0.8) rotate(-5deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.05) rotate(2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: successPulse 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 12px 30px rgba(78, 205, 196, 0.4);
    position: relative;
}

.success-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 3px solid var(--accent-teal);
    border-radius: 50%;
    animation: ripple 1.5s ease-out infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.modal-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight {
    color: var(--accent-coral);
    font-weight: 700;
}

.features-box {
    background: linear-gradient(135deg, #fff5f0 0%, #ffeaa7 100%);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
    border: 2px solid var(--border-light);
    width: 100%;
    box-sizing: border-box;
}

.features-list {
    text-align: left;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.features-list li {
    padding: 0.75rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 107, 107, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: transparent;
    border-top: none;
    padding: 1.5rem 2rem 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-coral);
}

.footer-links a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .title::after {
        display: none;
    }
    
    .subtitle {
        font-size: 0.8rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .question-card {
        padding: 1.25rem 1rem;
        border-radius: 20px;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }

    .header {
        padding: 0;
    }

    .question-title {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .question-desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }

    .option-card {
        padding: 0.875rem 0.625rem;
    }

    .modal-overlay {
        padding: 0.75rem;
    }

    .modal-content {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
        max-height: 90vh;
    }

    .modal-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .modal-text {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .features-box {
        padding: 1.25rem 0.875rem;
        margin: 1.25rem 0;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .progress-steps {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .progress-steps::before {
        left: 5%;
        right: 5%;
    }

    .progress-line {
        left: 5%;
    }

    .step {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }

    .question-number-circle {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .option-icon {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
    }

    .option-label {
        font-size: 0.875rem;
    }

    .option-description {
        font-size: 0.7rem;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .nav-buttons {
        padding-top: 1rem;
        margin-top: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    #app {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0.75rem 0.5rem;
        width: 100%;
        max-width: 100%;
    }

    .title {
        font-size: 1.35rem;
        padding: 0 0.5rem;
    }

    .subtitle {
        font-size: 0.75rem;
        padding: 0 0.5rem;
    }

    .question-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.625rem;
    }

    .question-number-circle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .question-card {
        padding: 1rem 0.875rem;
    }

    .question-title {
        font-size: 1rem;
        line-height: 1.3;
    }

    .question-desc {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .option-card {
        padding: 0.75rem 0.5rem;
    }

    .option-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .option-label {
        font-size: 0.8rem;
    }

    .option-description {
        font-size: 0.65rem;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .progress-steps {
        gap: 0.375rem;
        padding: 0 0.25rem;
    }

    .step {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .modal-overlay {
        padding: 0.5rem;
    }

    .modal-content {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        max-height: 95vh;
    }

    .modal-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .modal-text {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .features-box {
        padding: 1rem 0.75rem;
        margin: 1rem 0;
    }

    .features-list {
        gap: 0.625rem;
    }

    .cta-button {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }

    .footer {
        padding: 1rem 0.75rem 0.75rem;
        font-size: 0.7rem;
    }

    .footer-links {
        gap: 1rem;
        margin-top: 0.5rem;
    }
}
