:root {
    --primary: #ff007a;
    --black: #080808;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Syncopate', sans-serif;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --cream-pale: #fff0d9;
    --accent-orange: #ff6600;
}

/* Reset & Base */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#INICIO, #INFORMACION, #PATROCINADORES, #INSCRIPCION {
    scroll-margin-top: 100px;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--primary);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    background: rgba(5, 5, 5, 0);
    border-bottom: 2px solid rgba(255, 165, 0, 0);
    box-shadow: 0 4px 30px rgba(255, 165, 0, 0);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 2px solid rgba(255, 165, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-orange);
}

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

.nav-btn {
    background: linear-gradient(135deg, var(--accent-orange), #ff8c00);
    color: var(--black);
    text-decoration: none;
    padding: 12px 30px;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    display: inline-block;
}

.nav-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.8);
    background: var(--white);
    color: var(--black);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 0 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
    background: #080808; /* Deep black base */
}

.parallax-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 160%;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    pointer-events: none;
    will-change: transform;
    opacity: 0.65; 
    filter: saturate(0.8) contrast(1.1) brightness(0.75);
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 95%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 95%);
    transform: translateZ(0); /* Force GPU layer */
}

.hero .parallax-bg {
    background-image: url('assets/images/bgs/bg_inicio.webp');
    background-position: left top;
    height: 115%;
    top: -2%;
    mask-image: none;
    -webkit-mask-image: none;
}

/* Overlay for better integration */
.info-section::before, .sponsors-section::before, .registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Much subtler gradient to avoid covering content while still fading background */
    background: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.6) 5%, 
        transparent 15%, 
        transparent 85%, 
        rgba(0,0,0,0.6) 95%, 
        rgba(0,0,0,1) 100%
    );
    z-index: 1; /* Lower than content */
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Only top fade for hero to avoid the bottom cut look */
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.3) 15%, 
        transparent 35%
    );
    z-index: 2;
    pointer-events: none;
}



.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-main-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 40vh;
}



.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.85;
    margin: 0;
    text-shadow: 6px 6px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: -3px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-badges-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-location-badge {
    background: var(--primary);
    color: var(--black);
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    width: fit-content;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    text-transform: uppercase;
}

.hero-description-visual {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 600px;
}

.desc-line {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    background: rgba(5, 5, 5, 0.85);
    padding: 10px 25px;
    border-left: 4px solid var(--primary);
    width: fit-content;
    text-transform: uppercase;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.desc-line.accent {
    background: var(--primary);
    color: var(--black);
    font-weight: 800;
    border-left: none;
    transform: rotate(-1deg);
}

.desc-line:hover {
    background: rgba(255, 0, 122, 0.2);
    transform: translateX(10px);
}



.desc-line.accent:hover {
    transform: rotate(0deg) scale(1.05);
}

.hero-instagram-badge-new {
    background: #000;
    color: var(--white);
    padding: 10px 25px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    border: 2px solid var(--primary);
    transition: var(--transition);
    animation: neonBadgePulse 2s infinite alternate;
    position: relative;
    z-index: 10;
}

@keyframes neonBadgePulse {
    from { 
        box-shadow: 0 0 5px var(--primary), inset 0 0 2px var(--primary);
        filter: brightness(1);
    }
    to { 
        box-shadow: 0 0 20px var(--primary), inset 0 0 5px var(--primary);
        filter: brightness(1.2);
    }
}

.hero-instagram-badge-new i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.hero-instagram-badge-new span {
    letter-spacing: 1px;
}

.hero-instagram-badge-new:hover {
    background: var(--primary);
    color: var(--black);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 30px var(--primary);
}

.hero-instagram-badge-new:hover i {
    color: var(--black);
}

.hero-image-side {
    display: flex;
    justify-content: center;
}

.hero-poster-wrapper {
    position: relative;
    padding: 20px;
}

.poster-tape {
    position: absolute;
    width: 120px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    z-index: 5;
    pointer-events: none;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.tape-1 {
    top: 5px;
    left: -20px;
    transform: rotate(-35deg);
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.tape-2 {
    bottom: 20px;
    right: -30px;
    transform: rotate(-15deg);
    background: rgba(255, 0, 122, 0.3);
    clip-path: polygon(0% 15%, 100% 0%, 95% 85%, 5% 100%);
}

.hero-poster {
    width: 100%;
    max-width: 550px;
    height: auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 10px var(--white),
                20px 20px 50px rgba(0,0,0,0.8),
                0 0 0 15px rgba(255, 0, 122, 0.2);
    transition: var(--transition);
    filter: sepia(0.2) contrast(1.1);
}

.hero-poster:hover {
    transform: rotate(1deg) scale(1.02);
    filter: none;
}





/* Marquee Divider */
.cinta_01 {
    background: var(--cream-pale);
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin: -50px 0 -40px 0; /* Overlap with hero and info section */
    transform: rotate(-2deg) scale(1.1);
    border-top: 4px solid #ff6600;
    border-bottom: 4px solid #ff6600;
    background-clip: border-box; /* Extends background under border to hide gaps */
    box-shadow: 0 0 0 1px #ff6600;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; /* Smoothes rotated edges */
}

.cinta-track {
    white-space: nowrap;
    display: flex;
    align-items: center;
    width: max-content;
}

.cinta-track span {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 20px;
    letter-spacing: 3px;
}

.cinta_02 {
    background: var(--cream-pale);
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 100;
    margin: -40px 0 -40px 0; /* Overlap top and bottom */
    transform: rotate(2deg) scale(1.1);
    border-top: 4px solid #ff6600;
    border-bottom: 4px solid #ff6600;
    background-clip: border-box;
    box-shadow: 0 0 0 1px #ff6600;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cinta_03 {
    background: var(--cream-pale);
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 120;
    margin: -100px 0 0 0; /* Deep overlap to ensure space above but no gap below */
    transform: rotate(-1.5deg) scale(1.1);
    border-top: 4px solid #ff6600;
    border-bottom: 4px solid #ff6600;
    background-clip: border-box;
    box-shadow: 0 0 0 1px #ff6600;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Sections General */
section {
    position: relative;
    z-index: 1;
}

/* Info Section */
.info-section {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 calc(100% - 60px));
    background: #080808;
}

.info-section .parallax-bg {
    background-image: url('assets/images/bgs/bg_objetivos.webp');
    background-position: center bottom;
    top: -70%;
    height: 200%;
}

.info-section .container {
    position: relative;
    z-index: 2;
    max-width: 1700px; /* Much wider */
    padding: 0 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 0 auto;
    transition: var(--transition);
}

.info-grid:hover {
    transform: scale(1.02);
}

.info-card {
    background-color: #0d0d0d;
    opacity: 1 !important;
    display: flex;
    flex-direction: row; /* Split horizontal */
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    overflow: hidden;
    min-height: 450px;
    position: relative;
    z-index: 5;
}

.info-image-wrapper {
    flex: 1.6; /* 60% of the card */
    height: auto;
    position: relative;
    overflow: hidden;
}

.info-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
    transition: var(--transition);
}

.info-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary);
    mix-blend-mode: multiply;
    opacity: 0.7;
    transition: var(--transition);
}

.info-card-content {
    padding: 40px;
    flex: 1; /* 40% of the card */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card.featured {
    border-top: 5px solid var(--primary);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: #222222;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.info-card:hover .info-card-img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.1); /* Return to color */
}

/* Tablet specific visual adjustments */
@media (min-width: 769px) and (max-width: 1100px) {
    .info-card-img {
        object-position: center 20%; /* Adjusted to see faces better */
    }
    
    .nav-container {
        padding: 0 20px; /* Reduced from 40px */
    }

    .nav-links {
        gap: 15px; /* Reduced from 35px to avoid overlap */
    }

    .nav-links a {
        font-size: 0.85rem; /* Slightly smaller */
        letter-spacing: 0.5px;
    }

    .nav-logo {
        font-size: 1.3rem; /* Smaller logo for tablet */
    }

    .nav-btn {
        padding: 10px 20px; /* Smaller button */
        font-size: 0.8rem;
    }

    .sponsors-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 columns = 3 lines for 11 sponsors */
        gap: 15px;
        width: 100%;
        max-width: 1000px;
    }
    
    .row-break {
        display: none; /* Ignore manual breaks in grid mode */
    }

    .sponsor-item {
        width: 100%;
        height: 90px; /* Slightly shorter for tablet grid */
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-item:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

.info-card:hover .info-image-wrapper::after {
    opacity: 0; /* Hide the color overlay */
}

@media (max-width: 1100px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .info-card {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    .info-image-wrapper {
        flex: 0 0 350px;
        width: 100%;
        height: 350px;
    }
    .info-card-content {
        padding: 40px 20px;
    }
}



.section-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1;
    text-transform: uppercase;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 550px; /* Reduced slightly to wrap better */
    text-align: justify;
    text-justify: inter-word; /* Distribute space between words only */
    hyphens: auto; /* Split words to fill gaps */
}



/* Ambassador */
/* Ambassador merged into Sponsors */
.ambassador-section {
    display: contents; /* Let children use parent container */
}

.ambassador-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 5;
}

.ambassador-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* Reduced from 60 */
    position: relative;
    padding: 40px; /* Reduced from 60 */
    background: rgba(20, 10, 30, 0.6);
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3), inset 0 0 20px rgba(255, 0, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden; /* Keep arcs contained */
}

/* The neon arcs behind the image and text */
.ambassador-content::before,
.ambassador-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%; /* Centered */
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.ambassador-content::before {
    width: 450px;
    height: 450px;
    border-right-color: var(--primary);
    border-top-color: var(--primary);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateArc 10s linear infinite;
    z-index: 0;
}

.ambassador-content::after {
    width: 580px;
    height: 580px;
    border-left-color: #ffde00;
    border-bottom-color: #ffde00;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateArcReverse 15s linear infinite;
    z-index: 0;
    opacity: 0.2;
}

/* Orange Corner Accents - Pure Neon L-Shape */
.corner-accent {
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent; /* Ensure no fill */
    z-index: 10;
    pointer-events: none;
}

.corner-accent.top-left {
    top: -2px;
    left: -2px;
    border-top: 6px solid #ffde00; /* High visibility yellow */
    border-left: 6px solid #ffde00;
    filter: drop-shadow(0 0 10px #ffde00) drop-shadow(0 0 5px #ffffff); /* Double glow for intensity */
}

.corner-accent.bottom-right {
    bottom: -2px;
    right: -2px;
    border-bottom: 6px solid #ffde00;
    border-right: 6px solid #ffde00;
    filter: drop-shadow(0 0 10px #ffde00) drop-shadow(0 0 5px #ffffff);
}

@keyframes rotateArc {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateArcReverse {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.ambassador-image-container {
    flex: 0 0 300px;
    position: relative;
    z-index: 2;
    background: #1a0b2e;
    padding: 5px;
    transform: rotate(-3deg); /* Tilted for energy */
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.5);
}

/* Neon Tape Elements */
.ambassador-image-container::before,
.ambassador-image-container::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 30px;
    z-index: 10;
    opacity: 0.9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.ambassador-image-container::before {
    top: -8px;
    left: -15px;
    background: #ffde00; /* Yellow Tape */
    transform: rotate(-45deg);
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.ambassador-image-container::after {
    bottom: -8px;
    right: -15px;
    background: var(--primary); /* Magenta Tape */
    transform: rotate(-45deg);
}

.ambassador-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.05); /* Minimal adjustment for clarity */
    border: 1px solid rgba(255,255,255,0.05);
}



.ambassador-info {
    flex: 1;
    z-index: 2;
}

.ambassador-tag {
    color: #ffde00;
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.ambassador-title {
    font-size: 5.5rem;
    line-height: 0.85;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
    text-shadow: 
        3px 3px 0px var(--primary),
        6px 6px 0px rgba(0, 0, 0, 0.5);
    position: relative;
}

.ambassador-title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    text-shadow: 0 0 15px var(--primary);
    margin-top: 5px;
}

.ambassador-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ambassador-list li {
    position: relative;
    padding-left: 15px; /* Reduced from 25 */
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.2;
    display: flex;
    align-items: flex-start;
}

.ambassador-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #ffde00;
    box-shadow: 0 0 10px #ffde00;
}

.ambassador-description {
    display: none; /* Replaced by list */
}

/* Hide hazard-border as it's not in the reference */
.hazard-border {
    display: none;
}

.ambassador-info {
    z-index: 3;
    position: relative;
}

.ambassador-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 0.9;
    margin: 0;
    color: var(--white);
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.ambassador-title span {
    display: block;
    color: var(--primary);
}

.ambassador-tag {
    background: #ffa500;
    color: #000;
    display: inline-block;
    padding: 10px 40px;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 30px;
    transform: skewX(-10deg) rotate(2deg);
}

.ambassador-description {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-left: 5px solid var(--primary);
    font-size: 1.4rem;
    line-height: 1.4;
    color: #fff;
    max-width: 500px;
}

/* No hover animation on Maria Romero as requested */





/* Sponsors Section */
/* Sponsors Section (Combined with Ambassador) */
.sponsors-section {
    padding: 150px 0 280px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 60px, 100% calc(100% - 45px), 0 100%);
    background: #080808;
}

.sponsors-section .parallax-bg {
    background-image: url('assets/images/bgs/bg_patrocinadores.webp');
    background-position: center 5%; 
    top: -45%;
    height: 165%;
}

.sponsors-container {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.sponsors-row-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(5, 5, 5, 0.4);
    padding: 60px 0;
    border-bottom: 3px solid #ffa500;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 20px -10px rgba(255, 165, 0, 0.3),
        inset 0 -10px 15px -10px rgba(255, 165, 0, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.6);
    margin-top: 30px;
    overflow: hidden;
}

.sponsors-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    max-width: 1500px;
    margin: 0 auto;
    align-items: center;
}

.row-break {
    flex-basis: 100%;
    height: 0;
    margin: 0;
}

.sponsors-row.row-bottom {
    display: none; /* Removed as we now use row-break in a single container */
}

.sponsor-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 110px;
    border-radius: 2px;
    position: relative;
    backdrop-filter: blur(5px);
    flex-shrink: 1;
    animation: neonFlicker 4s infinite alternate;
}

.sponsor-item:nth-child(2n) { animation-duration: 3.5s; animation-delay: 0.5s; }
.sponsor-item:nth-child(3n) { animation-duration: 5s; animation-delay: 1.2s; }
.sponsor-item:nth-child(4n) { animation-duration: 4.5s; animation-delay: 0.2s; }

@keyframes neonFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        opacity: 1;
        filter: brightness(1) contrast(1);
    }
    20%, 24%, 55% {
        opacity: 0.7;
        filter: brightness(0.8) contrast(1.2);
    }
}

.sponsor-item:hover {
    background: rgba(255, 165, 0, 0.05);
    border-color: #ffa500;
    transform: translateY(-5px);
}

.sponsor-item img {
    max-width: 85%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(3) contrast(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    opacity: 0.9;
    transition: var(--transition);
}

.sponsor-item:hover img {
    opacity: 1;
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 10px rgba(255, 165, 0, 0.5));
}



/* Registration Section Overhaul (Ref: 1.png) */
.registration-section {
    position: relative;
    z-index: 110;
    margin-top: -30px;
    background-color: #080808;
    overflow: hidden;
    min-height: auto;
    padding: 100px 20px 40px;
}

.registration-section .parallax-bg {
    background-image: url('assets/images/bgs/bg_inscripciones.webp');
}

.reg-wide-wrapper {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.reg-unified-box {
    width: 100%;
    border: 1px solid #1a1a1a;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    position: relative;
}

.reg-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 800px;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    gap: 40px;
}

/* Left Side: Form */
.reg-form-side {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.reg-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: -1px;
    line-height: 1;
}

.form-step {
    margin-bottom: 50px;
}

.step-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 46, 99, 0.2);
    padding-bottom: 10px;
    display: inline-block;
}

.reg-form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.form-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.input-group label, 
.field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.input-group input, 
.input-group select {
    width: 100%;
    background: #151515;
    border: 1px solid #222;
    padding: 15px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-group input:focus {
    border-color: var(--primary);
    outline: none;
    background: #1a1a1a;
}

/* Players Grid */
.players-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.p-card {
    background: #151515;
    border-left: 4px solid var(--primary);
    padding: 25px;
}

.p-card.optional {
    border-left-color: #333;
    opacity: 0.8;
}

.p-label {
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    white-space: normal;
}

.p-card input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.p-card input:focus {
    border-bottom-color: var(--primary);
    outline: none;
}

.submit-btn {
    margin-top: 20px;
    background: var(--primary);
    color: #000;
    border: none;
    padding: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: #ffae00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 166, 0, 0.4);
}

.payment-warning {
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 15px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.4;
    text-transform: uppercase;
}

.payment-warning i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Right Side: Prizes */
.reg-prizes-side {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
}

.reg-side-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 100px;
    line-height: 1;
    letter-spacing: -1px;
}

.prizes-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prize-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.02);
    padding: 15px 20px;
}

.prize-row .p-icon {
    font-size: 32px;
}

.prize-row h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.prize-row p {
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.prize-row.highlight {
    border-left: 4px solid var(--primary);
}

.deadline-footer {
    background: var(--primary);
    color: #000;
    padding: 25px;
    text-align: center;
    font-weight: 900;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: auto;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.deadline-footer:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1250px) {
    .players-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .reg-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        background: transparent;
        backdrop-filter: none;
        min-height: auto;
    }
    .reg-form-side, .reg-prizes-side {
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 20px;
        margin-bottom: 20px;
    }
    .reg-unified-box {
        border: none;
        box-shadow: none;
    }
    .reg-main-title, .reg-side-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .form-row-grid {
        grid-template-columns: 1fr;
    }
}


input[type="date"] {
    color-scheme: dark;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important; /* Force text color in Safari/Chrome */
    font-family: var(--font-main);
    min-height: 1.2em;
}

/* Force visible text in ALL internal date components */
input[type="date"]::-webkit-datetime-edit,
input[type="date"]::-webkit-datetime-edit-fields-wrapper,
input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Fix for some mobile browsers that hide the text */
input[type="date"]::-webkit-date-and-time-value {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    min-height: 1.5em;
    text-align: left;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ff007a" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"/></svg>');
    cursor: pointer;
    filter: drop-shadow(0 0 2px var(--primary));
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px var(--primary));
}



@media (max-width: 1200px) {
    .players-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .reg-wide-wrapper {
        padding: 0 10px;
    }
    
    .players-cards-row {
        grid-template-columns: 1fr;
    }

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

/* Footer Ticket Stub Design - Single Line */
.site-footer {
    position: relative;
    background: var(--black);
    padding: 30px 0;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 4px dashed var(--primary);
}

.footer-perforation {
    position: absolute;
    top: -22px;
    left: 0;
    width: 100%;
    height: 10px;
    background-image: radial-gradient(circle, var(--black) 6px, transparent 6px);
    background-size: 30px 30px;
}

.footer-centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.f-meta-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.f-date-mini {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.f-divider {
    opacity: 0.2;
    font-weight: 300;
}

/* FAQ Section */
.faq-section {
    padding: 10px 0;
    margin-top: 0;
    margin-bottom: 50px;
    background: var(--black);
    position: relative;
}

.faq-section .container {
    max-width: 100%;
    padding: 0 40px;
}

.faq-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-top: 5px solid var(--primary);
    text-align: center;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.f-rights-mini {
    font-family: var(--font-main);
    font-size: 0.65rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social-link {
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
    opacity: 0.6;
    display: flex;
    align-items: center;
}

.footer-social-link:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 10px var(--primary));
}

@media (max-width: 992px) {
    .footer-strip {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-on-scroll.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Success Message Refined */
.success-message {
    animation: fadeIn 0.5s ease;
}

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

/* Responsive Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition);
        z-index: 1000;
    }

    .navbar.menu-open .nav-links {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-btn {
        display: none;
    }

    /* Hero Responsive */
    .hero {
        padding-bottom: 60px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
    }

    .hero-main-grid {
        gap: 30px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-text-side {
        align-items: center;
    }

    .hero-location-badge {
        margin: 0 auto;
    }

    .hero-instagram-badge-new {
        margin: 5px auto;
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .hero-description {
        margin: 0 auto;
    }

    .cyber-ticket {
        margin: 40px auto 0;
    }

    .cinta_01 {
        margin-top: -30px;
    }

    /* Ambassador & Sponsors Responsive */
    .ambassador-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .ambassador-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .ambassador-info {
        text-align: center;
        width: 100%;
    }

    .ambassador-title {
        font-size: 3.5rem;
    }

    .ambassador-list {
        align-items: center;
    }

    .ambassador-list li {
        justify-content: center;
        padding-left: 0;
        text-align: center;
    }

    .ambassador-list li::before {
        display: none;
    }

    .sponsors-row-container {
        width: 100%;
        margin: 20px 0;
        padding: 20px 10px;
        background: rgba(5, 5, 5, 0.6);
        border: 2px solid #ffa500;
        border-radius: 8px;
        left: auto;
        right: auto;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    .sponsors-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0;
        width: 100%;
    }
    
    .row-break {
        display: none;
    }
    
    .sponsor-item:last-child {
        grid-column: span 2;
        width: 50% !important;
        margin: 0 auto;
    }

    .sponsor-item {
        width: 100%;
        height: 70px;
        padding: 8px;
    }

    .sponsor-item img {
        max-width: 90%;
        max-height: 80%;
    }

    .sponsors-section {
        padding: 100px 0 200px;
    }

    /* Mobile Background Optimization (No parallax) */
    .hero .parallax-bg {
        transform: none !important;
        height: 100% !important;
        top: 0 !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
        background-position: center 20% !important;
        background-size: cover;
    }

    .info-section .parallax-bg, 
    .sponsors-section .parallax-bg {
        transform: none !important;
        height: 100% !important;
        top: 0 !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    /* Keep parallax on registration section as requested */
    .registration-section .parallax-bg {
        height: 130%; /* Re-enable enough height for movement */
        top: -15%;
    }

    .info-section .parallax-bg {
        background-image: linear-gradient(rgba(8, 8, 8, 0.4), rgba(8, 8, 8, 0.4)), url('assets/images/bgs/bg_objetivos.webp');
        background-position: center center;
    }

    .sponsors-section .parallax-bg {
        background-image: linear-gradient(rgba(8, 8, 8, 0.5), rgba(8, 8, 8, 0.5)), url('assets/images/bgs/bg_patrocinadores.webp');
        background-position: center center;
    }

    /* Disable reveal animations on mobile */
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Fixed Ribbon (One word, centered) */
    .cinta-track {
        width: 100% !important;
        justify-content: center !important;
        transform: none !important;
    }

    .m-hide { display: none !important; }
    .m-show { display: block !important; }

    /* Fix Title Clipping & Restore Dark Card Background */
    .section-title {
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 15px !important;
        overflow-wrap: break-word;
    }

    .info-card {
        background: #000000 !important; /* Pure solid black */
        border: 1px solid #1a1a1a !important;
        opacity: 1 !important;
        position: relative;
        z-index: 10 !important; /* Ensure it's above section overlays */
    }

    .info-card-content {
        padding: 30px 20px !important;
    }

    /* Fix Player Cards Visibility on Mobile */
    .p-card {
        background: #0d0d0d !important;
        border: 1px solid #222 !important;
        opacity: 1 !important;
        position: relative;
        z-index: 10 !important;
        padding: 20px !important;
    }

    .p-card input {
        color: #ffffff !important;
        opacity: 1 !important;
        position: relative;
        z-index: 11 !important;
    }

    /* Fix Date Input on Mobile */
    input[type="date"] {
        min-height: 45px;
        padding: 5px 10px !important;
        background: #1a1a1a !important; 
        border-radius: 4px;
        margin-bottom: 20px !important;
        color: white !important;
    }
}

.m-show { display: none; }

@media (max-width: 480px) {
    .sponsor-item {
        width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .ambassador-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem !important;
    }
}

/* TABLET OPTIMIZATION (iPad/Tablet Specific) */
@media (min-width: 769px) and (max-width: 1100px) {
    .navbar.scrolled {
        backdrop-filter: blur(8px); /* Reduced from 15px for performance */
        -webkit-backdrop-filter: blur(8px);
        background: rgba(8, 8, 8, 0.9);
    }

    .info-card, .p-card, .reg-main-grid {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: #0d0d0d !important;
    }

    .parallax-bg {
        will-change: auto !important; /* Save memory on tablets */
    }

    .animate-on-scroll {
        transition: opacity 0.5s ease-out, transform 0.5s ease-out !important; /* Simpler transition */
    }

    /* Disable hover transform on items that might stick on touch */
    .sponsor-item:hover, .info-card:hover, .faq-item:hover {
        transform: none !important;
    }
}

/* HIGH PRIORITY DATE FIX */
.p-card input[type="date"],
.p-card input[type="date"]::-webkit-datetime-edit,
.p-card input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.p-card input[type="date"]::-webkit-datetime-edit-text,
.p-card input[type="date"]::-webkit-datetime-edit-month-field,
.p-card input[type="date"]::-webkit-datetime-edit-day-field,
.p-card input[type="date"]::-webkit-datetime-edit-year-field,
.p-card input[type="date"]::-webkit-date-and-time-value {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    opacity: 1 !important;
}

.field-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--primary);
    padding: 20px 30px;
    z-index: 9999;
    display: none; /* Hidden by default, shown via JS */
    animation: cookieSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 0, 122, 0.1);
}

@keyframes cookieSlideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.4;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 8px 20px;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
}

.cookie-btn.primary {
    background: var(--primary);
    color: #000;
}

.cookie-btn.primary:hover {
    background: var(--white);
    box-shadow: 0 0 15px var(--primary);
}

.cookie-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        padding: 15px 20px;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 12px;
    }
}
