/**
 * Mirror League Main CSS
 * Cinematic Afro-futuristic Sports Theme
 */

/* RESET & CUSTOM PROPERTIES */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

:root {
    --navy: #08111f;
    --navy-2: #0e1e36;
    --navy-3: #142848;
    --gold: #c9a84c;
    --gold-lt: #e8c86a;
    --gold-dk: #9a7328;
    --gold-ghost: rgba(201, 168, 76, 0.08);
    --gold-border: rgba(201, 168, 76, 0.22);
    --white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-dim: rgba(255, 255, 255, 0.35);
    --max-w: 1160px;
    --pad-x: clamp(1.25rem, 5vw, 3rem);
    --section-y: clamp(5rem, 11vw, 9rem);
    --radius: 6px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    line-height: 1.2;
}

/* Navigation */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1.1rem var(--pad-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

#nav.stuck {
    padding: 0.65rem var(--pad-x);
    background: rgba(8, 17, 31, 0.96);
    backdrop-filter: blur(18px);
    border-color: var(--gold-border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.nav-text-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    color: var(--gold);
}

.nav-text-sub {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy);
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-lt);
    transform: translateY(-1px);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger b {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

/* Mobile Menu */
#drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 199;
    background: var(--navy-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}

#drawer.open {
    opacity: 1;
    visibility: visible;
}

#drawer a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 8vw, 3rem);
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
}

#drawer a:hover {
    color: var(--gold);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .burger {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
}

/* Hero Section */
#hero {
    min-height: 100vh;
    padding-top: 80px;
    display: grid;
    position: relative;
    overflow: hidden;
}

@media (min-width: 860px) {
    #hero {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    animation: gridMove 22s linear infinite;
}

@keyframes gridMove {
    to { background-position: 56px 56px; }
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 70% at 72% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 65%),
                radial-gradient(ellipse 40% 55% at 15% 85%, rgba(26, 92, 42, 0.1) 0%, transparent 55%),
                linear-gradient(155deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 5rem) var(--pad-x);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.67rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.9;
    margin-bottom: 1rem;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.8vw, 1.55rem);
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.6rem;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 2.2rem;
}

.hero-btns {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline {
    border: 1.5px solid var(--gold-border);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: var(--gold-ghost);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.8rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gold-border);
}

.stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.stat-l {
    font-size: 0.67rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero-visual {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--navy) 0%, transparent 18%, transparent 82%, var(--navy) 100%);
}

@media (min-width: 860px) {
    .hero-visual::after {
        background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
    }
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 3;
    background: rgba(8, 17, 31, 0.85);
    backdrop-filter: blur(14px);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 1rem 1.3rem;
    text-align: center;
}

.badge-yr {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    color: var(--gold);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-hint {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: lineAnim 1.6s ease-in-out infinite;
}

@keyframes lineAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Ticker */
.ticker {
    background: var(--gold);
    overflow: hidden;
    padding: 0.65rem 0;
    position: relative;
    z-index: 5;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 28s linear infinite;
}

@keyframes tickerMove {
    to { transform: translateX(-50%); }
}

.ticker-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    color: var(--navy);
    padding: 0 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 1.4rem;
}

.ticker-track span::after {
    content: '◆';
    font-size: 0.4rem;
    opacity: 0.5;
}

/* Sections Container */
.wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.label::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.display {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.93;
}

.gold {
    color: var(--gold);
}

/* About Section */
#about {
    padding: var(--section-y) 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 860px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}

.about-img-frame {
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    pointer-events: none;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -18px;
    right: -10px;
    background: var(--gold);
    color: var(--navy);
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius);
    text-align: center;
}

.about-badge .big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    line-height: 1;
}

.about-badge .smol {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-top: 1rem;
}

.pillar {
    background: var(--gold-ghost);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 1.1rem;
    transition: var(--transition);
}

.pillar:hover {
    background: rgba(201, 168, 76, 0.13);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.pillar-ico {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.pillar-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.pillar-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.gold-rule {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0;
    border: 0;
}

/* Teams Section */
#teams {
    padding: var(--section-y) 0;
    background: var(--navy-2);
}

.teams-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.teams-intro p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 1rem;
}

.teams-scroll {
    overflow: hidden;
    margin: 0 calc(-1 * var(--pad-x));
}

.teams-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: teamsMove 32s linear infinite;
    padding: 1rem 0;
}

.teams-track:hover {
    animation-play-state: paused;
}

@keyframes teamsMove {
    to { transform: translateX(-50%); }
}

.team-card {
    flex-shrink: 0;
    width: 165px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    background: var(--gold-ghost);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.team-emblem {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.9rem;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.team-city {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    color: var(--gold);
}

.team-sub {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* Uniform Section */
#uniform {
    padding: var(--section-y) 0;
    background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
}

.uniform-grid {
    display: grid;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 860px) {
    .uniform-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.uniform-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.8rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
    background: var(--gold-ghost);
    border-left: 2px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-name {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.feature-desc {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Mission Section */
#mission {
    padding: var(--section-y) 0;
    background: var(--navy);
    position: relative;
}

.mission-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.mission-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mission-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 1.8rem;
    position: relative;
    transition: var(--transition);
}

.mission-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.mc-num {
    font-family: 'Bebas Neue', sans-serif;
    position: absolute;
    top: 0.8rem;
    right: 1.2rem;
    font-size: 3.8rem;
    line-height: 1;
    color: rgba(201, 168, 76, 0.08);
}

.mc-ico {
    font-size: 1.9rem;
    margin-bottom: 0.9rem;
}

.mc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.mc-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Quote Section */
#quote {
    padding: clamp(4rem, 9vw, 7rem) 0;
    background: var(--gold);
    position: relative;
}

.q-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    color: var(--navy);
    font-style: italic;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.q-author {
    text-align: center;
    margin-top: 1.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy-2);
    font-weight: 600;
}

/* Partnership Section */
#partnership {
    padding: var(--section-y) 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.partner-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.partner-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.partner-card {
    background: rgba(255, 255, 255, 0.022);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 1.6rem 1.3rem;
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--gold);
    background: var(--gold-ghost);
    transform: translateY(-5px);
}

.p-ico {
    font-size: 2.2rem;
    margin-bottom: 0.9rem;
    display: block;
}

.p-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.p-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Logo Showcase */
#logo-section {
    padding: var(--section-y) 0;
    background: var(--navy-3);
    text-align: center;
}

.logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3.5rem;
}

.logo-showcase img {
    max-width: min(600px, 90vw);
    height: auto;
}

.logo-divider {
    width: 1px;
    height: 50px;
    background: var(--gold-border);
}

.logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-style: italic;
    color: var(--text-muted);
}

/* CTA Section */
#cta {
    padding: var(--section-y) 0;
    text-align: center;
    background: var(--navy);
    position: relative;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.09) 0%, transparent 70%);
    pointer-events: none;
}

.cta-btns {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-meta {
    margin-top: 2rem;
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* Footer */
footer {
    background: #050d18;
    border-top: 1px solid var(--gold-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-desc {
    font-size: 0.83rem;
    color: var(--text-dim);
    line-height: 1.72;
}

.footer-col h4 {
    font-size: 0.67rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.83rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.socials {
    display: flex;
    gap: 0.75rem;
}

.soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.soc:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Scroll Reveal */
.sr {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.sr.on {
    opacity: 1;
    transform: none;
}

.sr.d1 { transition-delay: 0.1s; }
.sr.d2 { transition-delay: 0.2s; }
.sr.d3 { transition-delay: 0.3s; }

/* Cursor */
.cur-dot, .cur-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cur-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.cur-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(201, 168, 76, 0.7);
}

body:hover .cur-dot, body:hover .cur-ring {
    opacity: 1;
}

@media (hover: none) {
    .cur-dot, .cur-ring { display: none; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .socials {
        justify-content: center;
    }
}