/**
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 🎨 GLOBAL.CSS - Styles globaux GOΔ GUILD
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VARIABLES CSS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
    /* Couleurs principales */
    --color-primary: #7c3aed;
    --color-primary-hover: #6d28d9;
    --color-secondary: #ec4899;
    --color-accent: #f59e0b;

    /* Couleurs de fond */
    --color-bg: #0f172a;
    --color-bg-secondary: #1e293b;
    --color-bg-tertiary: #334155;

    /* Couleurs de texte */
    --color-text: #f1f5f9;
    --color-text-secondary: #cbd5e1;
    --color-text-muted: #94a3b8;

    /* Couleurs de bordure */
    --color-border: #334155;
    --color-border-light: #475569;

    /* Couleurs de rareté */
    --color-common: #94a3b8;
    --color-uncommon: #22c55e;
    --color-rare: #3b82f6;
    --color-special_rare: #a855f7;
    --color-epic: #f59e0b;
    --color-legendary: #ef4444;

    /* Couleurs d'élément */
    --color-fire: #ef4444;
    --color-water: #3b82f6;
    --color-air: #06b6d4;
    --color-earth: #84cc16;
    --color-light: #fbbf24;
    --color-dark: #8b5cf6;
    --color-life: #10b981;

    /* Espacements */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Largeur max du contenu */
    --container-max-width: 1400px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.header {
    background: linear-gradient(180deg,
        rgba(44, 46, 50, 0.92) 0%,
        rgba(26, 28, 31, 0.88) 100%);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-bottom: 1px solid rgba(169, 181, 189, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
                0 1px 0 rgba(240, 234, 228, 0.08) inset,
                0 0 40px rgba(169, 181, 189, 0.1);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%,
        rgba(169, 181, 189, 0.08) 0%,
        transparent 50%),
        radial-gradient(circle at 70% 50%,
        rgba(240, 234, 228, 0.05) 0%,
        transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(100, 108, 116, 0.3) 15%,
        rgba(169, 181, 189, 0.6) 35%,
        rgba(240, 234, 228, 0.8) 50%,
        rgba(169, 181, 189, 0.6) 65%,
        rgba(100, 108, 116, 0.3) 85%,
        transparent 100%);
    opacity: 0.7;
    animation: shimmer 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(240, 234, 228, 0.4);
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
        filter: brightness(1);
    }
    50% {
        opacity: 1;
        filter: brightness(1.3);
    }
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all 0.3s;
    font-weight: 600;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--color-text);
    background-color: var(--color-bg-tertiary);
}

.nav-link.active {
    color: #00a2ff;
    background-color: rgba(0, 162, 255, 0.1);
    border: 1px solid rgba(0, 162, 255, 0.5);
}

.wallet-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(15, 23, 42, 0.9);
    padding: 0 var(--spacing-sm);
    height: 48px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 162, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 162, 255, 0.3),
                0 0 20px rgba(0, 162, 255, 0.1),
                inset 0 0 8px rgba(0, 162, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.wallet-info::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg,
        rgba(0, 162, 255, 0.4),
        rgba(102, 126, 234, 0.4),
        rgba(0, 162, 255, 0.4)
    );
    border-radius: var(--radius-md);
    opacity: 0.5;
    filter: blur(4px);
    z-index: -1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.wallet-info:hover {
    border-color: rgba(0, 162, 255, 0.6);
    box-shadow: 0 0 16px rgba(0, 162, 255, 0.5),
                0 0 24px rgba(0, 162, 255, 0.2),
                inset 0 0 12px rgba(0, 162, 255, 0.15);
    transform: scale(1.02);
}

.phantom-icon-wallet {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(171, 71, 255, 0.5));
    transition: all 0.3s ease;
}

.wallet-info:hover .phantom-icon-wallet {
    filter: drop-shadow(0 0 8px rgba(171, 71, 255, 0.7));
    transform: scale(1.1);
}

.wallet-address {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--goa-blue);
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wallet-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6),
                0 0 12px rgba(16, 185, 129, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.wallet-info .btn-secondary {
    width: 20px;
    height: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border-radius: 3px;
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.wallet-info .btn-secondary:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #ff5555;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAIN
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.main {
    flex: 1;
    padding: var(--spacing-2xl) 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOUTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-family: inherit;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.btn-primary:hover:not(:disabled) {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--color-bg-tertiary);
    color: var(--color-text);
}

.btn-secondary:hover:not(:disabled) {
    background-color: var(--color-border-light);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PARTICLES BACKGROUND
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-100px) rotate(180deg);
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CARDS & SECTIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.welcome-section,
.loading-section,
.error-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.welcome-card,
.error-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    text-align: center;
    max-width: 500px;
}

.welcome-card h2,
.error-card h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.welcome-card p,
.error-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-lg);
}

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

.loading-section p {
    color: var(--color-text-secondary);
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer {
    background: linear-gradient(0deg,
        rgba(44, 46, 50, 0.92) 0%,
        rgba(26, 28, 31, 0.88) 100%);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-top: 1px solid rgba(169, 181, 189, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5),
                0 -1px 0 rgba(240, 234, 228, 0.08) inset,
                0 0 40px rgba(169, 181, 189, 0.1);
    padding: 1.5rem 0;
    margin-top: auto;
    position: relative;
    z-index: 100;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content {
    flex: 1;
    text-align: center;
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%,
        rgba(169, 181, 189, 0.08) 0%,
        transparent 50%),
        radial-gradient(circle at 70% 50%,
        rgba(240, 234, 228, 0.05) 0%,
        transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(100, 108, 116, 0.3) 15%,
        rgba(169, 181, 189, 0.6) 35%,
        rgba(240, 234, 228, 0.8) 50%,
        rgba(169, 181, 189, 0.6) 65%,
        rgba(100, 108, 116, 0.3) 85%,
        transparent 100%);
    opacity: 0.7;
    animation: shimmer 4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(240, 234, 228, 0.4);
}

.footer p {
    color: var(--color-text-secondary);
    margin: 0 0 0.5rem 0;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

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

.footer p a {
    color: #A9B5BD;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #646C74 0%, #A9B5BD 50%, #F0EAE4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer p a:hover {
    filter: brightness(1.3);
    text-shadow: 0 0 20px rgba(240, 234, 228, 0.6);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.footer-links a {
    color: #A9B5BD;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #F0EAE4;
    text-shadow: 0 0 15px rgba(240, 234, 228, 0.5);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Tablet et Mobile - Réduire la hauteur du footer */
@media (max-width: 1024px) {
    .footer {
        padding: 1rem 0;
        font-size: 0.95em;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        order: 1;
    }

    .footer .language-selector {
        order: 2;
        justify-content: center;
    }

    /* Cacher le footer sur tablette/mobile pour toutes les pages sauf index */
    .footer-desktop-only {
        display: none;
    }
}

@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-content {
        flex-direction: column;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        justify-content: center;
    }

    .logo {
        flex: 0 0 auto;
    }

    .wallet-section {
        order: 2;
        margin-left: auto;
        width: auto;
        justify-content: flex-end;
        position: fixed;
        right: 16px;
        top: 16px;
        z-index: 1001;
    }

    /* Cacher le menu desktop sur mobile (remplacé par bottom nav) */
    .nav {
        display: none;
    }

    .nav-link {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.85rem;
    }

    .wallet-info {
        padding: 0 10px;
        gap: 8px;
        height: 40px;
    }

    .wallet-address {
        font-size: 0.7rem;
        max-width: 90px;
    }

    .phantom-icon-wallet {
        width: 16px;
        height: 16px;
    }

    .wallet-info .btn-secondary {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
    }

    .wallet-status-dot {
        width: 6px;
        height: 6px;
    }

    .main {
        padding: var(--spacing-lg) 0;
    }

    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   📱 BOTTOM NAVIGATION - Mobile Navigation Bar
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Caché par défaut sur desktop */
.bottom-nav {
    display: none;
}

/* Affichage sur mobile */
@media (max-width: 768px) {
    .bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(169, 181, 189, 0.2);
        padding: 0.5rem 0;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
        z-index: 1000 !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        justify-content: flex-start;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .bottom-nav::-webkit-scrollbar {
        display: none;
    }

    .bottom-nav-item {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        padding: 0.5rem 0.75rem;
        text-decoration: none;
        color: rgba(169, 181, 189, 0.6);
        transition: all 0.3s ease;
        border-radius: 12px;
        position: relative;
        min-width: 60px;
        flex: 0 0 auto;
        flex-shrink: 0;
    }

    .bottom-nav-item:hover {
        color: var(--royal-pearl);
        background: rgba(169, 181, 189, 0.1);
        transform: translateY(-2px);
    }

    .bottom-nav-item:active {
        transform: translateY(0);
    }

    .bottom-nav-item.active {
        color: var(--royal-pearl);
        background: rgba(169, 181, 189, 0.15);
    }

    .bottom-nav-item.active::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--royal-pearl), transparent);
        border-radius: 0 0 3px 3px;
        box-shadow: 0 2px 8px rgba(169, 181, 189, 0.5);
    }

    .bottom-nav-icon {
        width: 24px;
        height: 24px;
        fill: currentColor;
        stroke: currentColor;
        stroke-width: 1.5;
        transition: all 0.3s ease;
    }

    .bottom-nav-item:hover .bottom-nav-icon {
        transform: scale(1.1);
    }

    .bottom-nav-item.active .bottom-nav-icon {
        filter: drop-shadow(0 0 4px rgba(169, 181, 189, 0.6));
    }

    .bottom-nav-label {
        font-size: 0.65rem;
        font-weight: 500;
        text-align: center;
        white-space: nowrap;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }

    .bottom-nav-item.active .bottom-nav-label {
        font-weight: 700;
        text-shadow: 0 0 8px rgba(169, 181, 189, 0.5);
    }

    /* Ajuster le footer pour qu'il ne soit pas masqué par la bottom nav */
    footer {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    /* Ajuster le body pour éviter que le contenu soit masqué */
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    /* Animation d'apparition */
    @keyframes slideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .bottom-nav {
        animation: slideUp 0.3s ease-out;
    }
}

/* Extra small screens - Icônes plus petites */
@media (max-width: 360px) {
    .bottom-nav-icon {
        width: 20px;
        height: 20px;
    }

    .bottom-nav-label {
        font-size: 0.6rem;
    }

    .bottom-nav-item {
        padding: 0.4rem 0.5rem;
        min-width: 50px;
        gap: 0.2rem;
    }
}
