@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary-color: #4CAF50;
    --secondary-color: #2196F3;
    --accent-color: #FF9800;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --border-color: #ddd;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --error-color: #F44336;
    --text-color-light: #666;
    --background-color: #f8f9fa;
    --gradient-start: #4ECDC4;
    --gradient-end: #45B7D1;
    --background-dark: #1a1a1a;
    --background-light: #2d2d2d;
    --text-light: #ffffff;
    --text-dim: #a0a0a0;
    --border-radius: 8px;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --clerk-gradient-start: #4ECDC4;
    --clerk-gradient-end: #45B7D1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: var(--light-gray);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    line-height: 1.6;
}

body.game-theme {
    background-color: var(--background-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1em;
    position: relative;
}

.logo-image {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Hide text fallback when image loads successfully */
.logo-image:not([src=""]) + .logo-text-fallback {
    display: none;
}

/* Show text fallback when image fails to load */
.logo-image[src=""] + .logo-text-fallback,
.logo-image:not([src]) + .logo-text-fallback,
.logo-image[src*="error"] + .logo-text-fallback {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1em;
}

.logo-text-fallback {
    display: none; /* Hidden by default */
}

.logo-text {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Style for the ü character */
.logo-text:nth-child(2) {
    position: relative;
}

.logo-text:nth-child(2)::before,
.logo-text:nth-child(2)::after {
    content: '•';
    position: absolute;
    top: 0.2em;
    font-size: 0.4em;
    color: var(--primary-color);
    animation: dotPulse 2s infinite;
}

.logo-text:nth-child(2)::before {
    left: -0.2em;
    animation-delay: 0s;
}

.logo-text:nth-child(2)::after {
    right: -0.2em;
    animation-delay: 0.5s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* Add gradient effect on hover */
.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo:hover .logo-text:nth-child(2)::before,
.logo:hover .logo-text:nth-child(2)::after {
    color: var(--secondary-color);
}

.animation-container {
    position: relative;
    height: 400px;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
    border-radius: 24px;
    padding: 2rem;
}

.journey-path {
    position: absolute;
    width: 80%;
    height: 6px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.character {
    position: absolute;
    width: 48px;
    height: 48px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    top: calc(50% - 24px);
    left: 10%;
    animation: moveCharacter 4s infinite;
    transform-origin: center;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.milestones {
    position: absolute;
    width: 80%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.milestone {
    position: absolute;
    top: calc(50% + 30px);
    transform: translateX(-50%);
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.milestone.start { 
    left: 10%; 
    background: linear-gradient(135deg, var(--primary-color), #FF8E8E);
    color: white;
}
.milestone.progress1 { left: 35%; }
.milestone.progress2 { left: 60%; }
.milestone.goal { 
    left: 85%; 
    background: linear-gradient(135deg, var(--secondary-color), #6FF7F0);
    color: white;
}

.buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::after {
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-signin {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-start {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

@keyframes moveCharacter {
    0% {
        left: 10%;
        transform: scale(1);
    }
    25% {
        left: 35%;
        transform: scale(0.9);
    }
    50% {
        left: 60%;
        transform: scale(0.8);
    }
    75% {
        left: 85%;
        transform: scale(0.7);
    }
    100% {
        left: 10%;
        transform: scale(1);
    }
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.profile-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Overlay styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay.active {
    display: flex;
}

.overlay-content {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-out;
}

.overlay-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.overlay-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, rgb(99, 102, 241), rgb(168, 85, 247));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overlay-subtitle {
    color: #4a5568;
    font-size: 1rem;
}

.close-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-overlay:hover {
    color: #1a202c;
    background: rgba(99, 102, 241, 0.1);
}

.medication-info {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    font-size: 0.875rem;
    color: #4a5568;
}

.dosage-info {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
}

.dosage-item {
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.dosage-value {
    font-weight: 600;
    color: rgb(99, 102, 241);
}

.dosage-duration {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .overlay-content {
        width: 95%;
        padding: 1.25rem;
        margin: 1rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions button {
        width: 100%;
    }

    .overlay-title {
        font-size: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}

/* Form styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.form-group .form-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: rgb(239, 68, 68);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message::before {
    content: '⚠️';
}

.form-input,
.form-select,
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(99, 102, 241, 0.03);
    transition: all 0.3s ease;
    color: #1a202c;
}

.form-input:focus,
.form-select:focus,
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgb(99, 102, 241);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    background: rgba(99, 102, 241, 0.03) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 1.5rem;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(99, 102, 241, 0.03) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
}

.button:active {
    transform: translateY(1px);
}

.button.primary {
    background-color: var(--primary-color);
    color: white;
}

.button.primary:hover {
    background-color: #43A047;
}

.button.secondary {
    background-color: var(--light-gray);
    color: var(--text-color);
}

.button.secondary:hover {
    background-color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-info {
        flex-direction: column;
        text-align: center;
    }

    .profile-stats {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .progress-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.dashboard-container {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
    padding: 20px;
    min-height: 100vh;
}

/* Character Panel */
.character-panel {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.character-avatar {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.character-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
}

.level-badge {
    position: absolute;
    bottom: -10px;
    right: 70px;
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
}

.character-stats {
    margin-bottom: 20px;
}

.stat-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stat-row .material-icons {
    margin-right: 10px;
    color: var(--primary-color);
}

.stat-info {
    flex-grow: 1;
}

.stat-info label {
    display: block;
    font-size: 0.9em;
    color: var(--text-dim);
    margin-bottom: 5px;
}

/* Progress Bars */
.progress-bar {
    background: var(--background-dark);
    border-radius: 10px;
    height: 18px;
    overflow: hidden;
}

.progress-bar .progress {
    height: 100%;
    transition: width 0.3s ease;
}

/* Journey Map */
.journey-map {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
}

.map-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--text-dim);
    z-index: 0;
}

.map-node {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--background-dark);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.map-node.completed {
    background: var(--success-color);
}

.map-node.active {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

.map-node.locked {
    background: var(--text-dim);
}

.map-node.boss {
    width: 80px;
    height: 80px;
}

.node-icon {
    font-size: 24px;
    color: var(--text-light);
}

.node-label {
    position: absolute;
    bottom: -25px;
    white-space: nowrap;
    font-size: 0.9em;
    color: var(--text-light);
}

/* Achievements */
.achievements-gallery {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.achievement-card {
    background: var(--background-dark);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    opacity: 0.5;
    transition: transform 0.2s;
}

.achievement-card.unlocked {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-2px);
}

.achievement-card .material-icons {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.action-btn {
    background: var(--background-light);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-light);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.action-btn.primary {
    background: var(--primary-color);
}

.action-btn .material-icons {
    font-size: 20px;
}

/* Daily Quests */
.daily-quests {
    margin-top: 20px;
}

.quest-list {
    margin-top: 10px;
}

.quest-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    background: var(--background-dark);
    border-radius: var(--border-radius);
    transition: transform 0.2s;
}

.quest-item:hover {
    transform: translateX(5px);
}

.quest-item .material-icons {
    margin-right: 10px;
    color: var(--success-color);
}

.quest-item.incomplete .material-icons {
    color: var(--text-dim);
}

/* Quote Card */
.quote-card {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.quote-card .material-icons {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 32px;
    color: var(--primary-color);
    background: var(--background-dark);
    border-radius: 50%;
    padding: 5px;
}

blockquote {
    margin: 0;
    padding: 10px 0;
    font-style: italic;
}

blockquote footer {
    margin-top: 10px;
    color: var(--text-dim);
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dashboard-container {
        grid-template-columns: 250px 1fr;
    }
    .leaderboard-panel {
        display: none;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    .character-panel {
        order: -1;
    }
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Leaderboard */
.leaderboard-panel {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--card-shadow);
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background: var(--background-dark);
    border-radius: var(--border-radius);
}

.leaderboard-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
}

.leaderboard-item .rank {
    width: 24px;
    text-align: center;
    font-weight: bold;
}

.leaderboard-item .name {
    flex-grow: 1;
}

.leaderboard-item .score {
    color: var(--primary-color);
    font-weight: bold;
}

.leaderboard-item.current-settings {
    border: 2px solid var(--primary-color);
}

.mood-selector {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.mood-option {
    cursor: pointer;
}

.mood-option input {
    display: none;
}

.mood-emoji {
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.2s;
}

.mood-option input:checked + .mood-emoji {
    transform: scale(1.2);
    background: var(--primary-color);
}

/* Auth Pages */
.auth-container {
    background: linear-gradient(135deg, rgba(78,205,196,0.03), rgba(69,183,209,0.03));
    border-radius: var(--border-radius);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--clerk-gradient-start), var(--clerk-gradient-end));
}

/* Clerk Component Theme */
#clerk-sign-in, #clerk-sign-up {
    --clerk-font-family: system-ui, sans-serif;
    --clerk-button-background: linear-gradient(135deg, var(--clerk-gradient-start), var(--clerk-gradient-end));
    --clerk-button-border-radius: var(--border-radius);
    --clerk-button-box-shadow: var(--card-shadow);
    width: 100%;
    display: flex;
    justify-content: center;
}

#clerk-sign-in > div, #clerk-sign-up > div {
    width: 100%;
    max-width: 100%;
}

/* Loading state */
.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(78,205,196,0.1);
    border-radius: 50%;
    border-top-color: var(--clerk-gradient-start);
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {transform: rotate(360deg);}
}

/* Auth Layout */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-logo {
    height: 4rem;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
}

.auth-subtitle {
    color: var(--text-color-light);
    width: 100%;
    text-align: center;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.footer-version {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 640px) {
    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
} 