/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --color-bg: #050505;
    --color-bg-alt: #0a0a0a;
    --color-surface: #121212;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-accent: #9d00ff; /* Púrpura Neón del Instagram */
    --color-accent-secondary: #00ffff; /* Cyan láser */
    --color-glow: rgba(157, 0, 255, 0.6);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, .logo, .footer-logo {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

p {
    color: var(--color-text-muted);
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    max-width: 100vw;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    background: transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 0 20px var(--color-glow);
    transform: translateY(-2px);
    border-color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.2) inset;
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    box-shadow: 0 0 20px var(--color-glow);
    transform: translateY(-2px);
    border-color: var(--color-accent);
}

.btn-outline {
    border: 1px solid var(--color-accent);
    color: var(--color-text);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.2) inset;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    box-shadow: 0 0 15px var(--color-glow);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem; /* Más aire en los bordes */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.98); /* Fondo casi opaco para legibilidad */
    backdrop-filter: blur(15px);
    padding: 0.2rem 3rem; /* Reducción significativa del padding vertical */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-left: 1.5rem; /* Aire extra respecto al borde izquierdo de la pantalla */
    margin-bottom: -5px; /* Ajuste fino para la alineación vertical con los textos del menú */
}

.logo img {
    height: 140px; /* Tamaño significativamente aumentado para estar en proporción al menú */
    width: auto;
    filter: invert(1); /* Convierte el texto negro a blanco y el fondo blanco a negro */
    mix-blend-mode: screen; /* Hace el nuevo fondo negro transparente */
    transition: var(--transition-fast);
    transform-origin: left center;
    image-rendering: -webkit-optimize-contrast; /* Evita que se pixele al estirar */
}

.logo:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/AGF-136.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.2);
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(5,5,5,0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px var(--color-glow);
    position: relative;
}

/* Efecto Laser Glitch */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    color: var(--color-accent-secondary);
    z-index: -1;
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    color: var(--color-accent);
    z-index: -2;
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); transform: translate(-2px, 1px); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(40% 0 50% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(-1px, 1px); }
    100% { clip-path: inset(30% 0 50% 0); transform: translate(1px, -1px); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); transform: translate(2px, 1px); }
    20% { clip-path: inset(30% 0 20% 0); transform: translate(-2px, -1px); }
    40% { clip-path: inset(70% 0 10% 0); transform: translate(2px, 2px); }
    60% { clip-path: inset(20% 0 50% 0); transform: translate(-2px, -2px); }
    80% { clip-path: inset(50% 0 30% 0); transform: translate(1px, 1px); }
    100% { clip-path: inset(5% 0 80% 0); transform: translate(-1px, -1px); }
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrow {
    width: 1px;
    height: 40px;
    background-color: var(--color-text);
}

@keyframes pulse {
    0% { opacity: 0.3; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 5px); }
    100% { opacity: 0.3; transform: translate(-50%, 0); }
}

/* VIP Logos Marquee */
.vip-marquee-container {
    width: 100%;
    background-color: var(--color-bg-alt);
    padding: 2.5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vip-marquee {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    flex-shrink: 0; /* Evita que el contenedor se aplaste */
    animation: scrollMarquee 25s linear infinite;
}

.vip-img {
    height: 50px;
    width: auto;
    margin: 0 4rem;
    transition: var(--transition-fast);
    opacity: 0.6;
    flex-shrink: 0; /* Evita que las imágenes se superpongan */
    object-fit: contain;
}

.vip-img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Specific Logo Treatments for Dark Theme */
.ginebra {
    /* Ginebra is grey on white. Invert makes it light grey on black. Screen makes black transparent */
    filter: invert(1) grayscale(100%);
    mix-blend-mode: screen;
}
.ginebra:hover {
    filter: invert(1) grayscale(0%);
}

.ultra {
    /* Ultra One is white on black. Screen makes black transparent */
    mix-blend-mode: screen;
}

.zeeker {
    /* Zeeker has a colorful gradient. Assuming it's a transparent PNG */
    /* If it had a white bg, it would need mix-blend-mode: multiply but on dark theme it's tricky. 
       We will leave it normal, assuming transparency. */
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Experience Section */
.experience {
    background-color: var(--color-bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--color-surface);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.feature-icon {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    background-color: transparent;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 15px var(--color-glow) inset, 0 0 15px var(--color-glow);
    width: 60px;
    height: 60px;
    line-height: 56px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 0 0 5px var(--color-accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Events Section */
.events {
    background-color: var(--color-bg);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-fast);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
}

.event-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    filter: grayscale(80%);
    transition: var(--transition-fast);
}

.event-card:hover .event-img {
    filter: grayscale(0%);
}

.event-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.event-status {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.event-status.active {
    color: var(--color-accent);
}

.event-status.ended {
    color: var(--color-text-muted);
}

.event-details {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-detail-item {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
}

.event-detail-item strong {
    color: var(--color-text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loading-events {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem;
    color: var(--color-text-muted);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(157, 0, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-accent);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 1rem;
}

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

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0; /* Sin bordes/espacios */
    width: 100%;
}

/* Forzar que los embeds de Instagram ocupen todo el ancho sin bordes ni separación */
.insta-grid blockquote.instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background-color: #000000 !important;
}

.insta-grid iframe.instagram-media {
    border-radius: 0 !important;
    margin: 0 !important;
    border: none !important;
    background-color: transparent !important;
    /* Filtro solicitado para forzar Dark Mode (invierte blancos a negros manteniendo el tono) */
    filter: invert(1) hue-rotate(180deg);
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1; /* Cuadrado perfecto como Instagram */
    overflow: hidden;
    display: block;
    background-color: var(--color-surface); /* Color de fondo mientras carga */
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insta-item:hover img {
    transform: scale(1.05);
    opacity: 0.6; /* Efecto de opacidad suave solicitado */
}

/* Location Section */
.location {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-bg-alt);
}

.location-content {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.address-box p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.address-box strong {
    color: var(--color-text);
}

.map-container {
    min-height: 500px;
    filter: grayscale(100%) invert(90%) contrast(1.2);
}

/* Contact Section */
.contact {
    background-color: var(--color-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-container {
    background-color: var(--color-surface);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
}

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

/* Eliminado el media query de 600px, se integrará en el breakpoint principal de 768px */

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-bg);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-text);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    color-scheme: dark;
}

.form-group select option {
    color: #000000;
    background-color: #ffffff;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.02);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
}

.hidden {
    display: none;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--color-bg-alt);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 180px; /* Tamaño mucho más imponente */
    width: auto;
    filter: invert(1);
    mix-blend-mode: screen;
    image-rendering: -webkit-optimize-contrast;
}

.footer-social {
    display: flex;
    gap: 2rem; /* Mayor separación entre enlaces */
}

.footer-social a {
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Separación entre el icono y el texto */
    font-size: 1.1rem;
}

.footer-social a svg {
    width: 22px;
    height: 22px;
    fill: #ffffff; /* Asegura que el SVG herede el color blanco del footer */
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
    color: #FFF;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .location, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        z-index: 9999;
    }
    
    .navbar.scrolled {
        padding: 0 20px !important;
    }
    
    .logo {
        margin: 0 !important;
        padding: 15px 0;
    }
    
    .logo img {
        height: auto !important;
        max-width: 120px !important;
    }

    .hamburger {
        display: flex !important;
        position: static !important;
        margin: 0 !important;
        z-index: 10000;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%; /* Cambiado a left para que actúe como un drawer clásico lateral */
        width: 100%; /* 100% de la pantalla */
        height: 100vh;
        background-color: #000000; /* Fondo negro sólido para evitar transparencias */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease; /* Transición fluida */
        z-index: 9998; /* Justo debajo del header/hamburger */
        gap: 3rem;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu.active {
        left: 0; /* Despliega el menú cubriendo la pantalla */
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 2rem; /* Tamaño grande y cómodo para el pulgar */
        text-align: center;
        display: block;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.2rem; /* Better touch targets */
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .location-content {
        padding: 4rem 2rem;
    }

    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 1.2rem;
    }
    
    .logo img {
        height: 65px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .insta-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
