        :root {
            --deep-blue: #0a1f38;
            --electric-blue: #0066ff;
            --vibrant-orange: #ff6b00;
            --soft-orange: #ffb76b;
            --pure-white: #ffffff;
            --glass-white: rgba(255, 255, 255, 0.85);
            --dark-text: #1a1a1a;
            --light-text: #f5f5f7;
            --section-gray: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            font-weight: 500; /* Gotham Pro Medium */
            background-color: var(--pure-white);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Enhanced text effect for hero date */
        .gradient-text {
            color: var(--electric-blue);
            text-shadow: 0 0 10px rgba(0, 102, 255, 0.7), 0 0 20px rgba(255, 107, 0, 0.5);
            display: inline-block;
            position: relative;
            animation: glowShift 4s ease-in-out infinite;
            font-family: 'Bebas Neue', sans-serif;
            font-weight: 400; /* Bebas Neue Pro Bold */
            letter-spacing: 1px;
        }

        @keyframes glowShift {
            0% {
                color: var(--electric-blue);
                text-shadow: 0 0 10px rgba(0, 102, 255, 0.7), 0 0 20px rgba(255, 107, 0, 0.5);
            }
            50% {
                color: var(--vibrant-orange);
                text-shadow: 0 0 10px rgba(255, 107, 0, 0.7), 0 0 20px rgba(0, 102, 255, 0.5);
            }
            100% {
                color: var(--electric-blue);
                text-shadow: 0 0 10px rgba(0, 102, 255, 0.7), 0 0 20px rgba(255, 107, 0, 0.5);
            }
        }

        /* Typing animation for hero text */
        .typing-text {
            display: inline-block;
            border-right: 2px solid var(--vibrant-orange);
            animation: blink 0.7s step-end infinite;
            white-space: nowrap;
            overflow: hidden;
            max-width: fit-content;
            font-family: 'Roboto', sans-serif;
            font-weight: 500; /* Gotham Pro Medium */
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(90deg, var(--deep-blue) 0%, #122b4d 100%);
            color: var(--light-text);
            padding: 0.6rem 0;
            font-size: 0.9rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 500; /* Gotham Pro Medium */
            position: relative;
            z-index: 100;
        }

        .top-bar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-info {
            display: flex;
            gap: 1.5rem;
        }

        .top-bar-info span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Bebas Neue', sans-serif;
            font-style: italic; /* Bebas Neue Pro Italic */
        }

        .top-bar-social {
            display: flex;
            gap: 1rem;
        }

        .top-bar-social a {
            color: var(--light-text);
            transition: all 0.3s ease;
        }

        .top-bar-social a:hover {
            color: var(--vibrant-orange);
            transform: translateY(-2px);
        }

        /* Header principal */
        header {
            background-color: rgba(10, 31, 56, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 99;
            transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            padding: 0;
        }

        .header-inner {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 0.8rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 1.5rem;
            font-family: 'Bebas Neue', sans-serif;
            font-weight: 400; /* Bebas Neue Pro Bold */
            color: var(--pure-white);
            position: absolute;
            top: 2.5rem;
            left: 2rem;
            z-index: 100;
        }

        .logo img {
            height: auto;
            max-height: 5rem;
            width: auto;
            max-width: 200px;
            margin-right: 0;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--pure-white);
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-menu li {
            margin-left: 2rem;
            position: relative;
        }

        .nav-menu li a {
            color: var(--pure-white);
            text-decoration: none;
            font-family: 'Roboto', sans-serif;
            font-weight: 700; /* Gotham Pro Bold */
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
            display: inline-block;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--electric-blue) 0%, var(--vibrant-orange) 100%);
            transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .btn-nav {
            background: linear-gradient(135deg, var(--vibrant-orange) 0%, var(--soft-orange) 100%);
            color: var(--pure-white);
            padding: 0.7rem 1.5rem;
            border-radius: 2rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 700; /* Gotham Pro Bold */
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
        }

        /* Hero Section */
        #hero {
            background: linear-gradient(rgba(10, 31, 56, 0.85), rgba(10, 31, 56, 0.9)), 
                        url('../img/chiapas.jpeg') no-repeat center center/cover;
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--pure-white);
            position: relative;
            overflow: hidden;
            margin-top: 0;
            padding-top: 6rem;
            animation: changeBackground 6s infinite;
            transition: background 0.5s ease-in-out;
        }

        @keyframes changeBackground {
            0% {
                background: linear-gradient(rgba(10, 31, 56, 0.85), rgba(10, 31, 56, 0.9)), 
                            url('../img/chiapas.jpeg') no-repeat center center/cover;
            }
            33.33% {
                background: linear-gradient(rgba(10, 31, 56, 0.85), rgba(10, 31, 56, 0.9)), 
                            url('../img/convoca.jpg') no-repeat center center/cover;
            }
            66.66% {
                background: linear-gradient(rgba(10, 31, 56, 0.85), rgba(10, 31, 56, 0.9)), 
                            url('../img/runers.webp') no-repeat center center/cover;
            }
            100% {
                background: linear-gradient(rgba(10, 31, 56, 0.85), rgba(10, 31, 56, 0.9)), 
                            url('../img/chiapas.jpeg') no-repeat center center/cover;
            }
        }

        #hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0) 70%);
            animation: pulse 12s infinite alternate;
            z-index: 0;
        }

        @keyframes pulse {
            0% { transform: translate(0, 0) scale(1); opacity: 0.1; }
            50% { transform: translate(25%, 25%) scale(1.2); opacity: 0.15; }
            100% { transform: translate(-25%, -25%) scale(1); opacity: 0.1; }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
            margin-top: -5rem;
        }

        .title-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: -12rem;
        }

        .title-image {
            width: 80%;
            max-width: 800px;
            height: auto;
            margin-bottom: 1rem;
            z-index: 2;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
        }

        #hero h1 {
            font-size: 3.5rem;
            font-family: 'Bebas Neue', sans-serif;
            font-weight: 400; /* Bebas Neue Pro Bold */
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 3;
        }

        #hero p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 500; /* Gotham Pro Medium */
            position: relative;
            z-index: 3;
        }

        .btn-hero {
            display: inline-block;
            background: linear-gradient(135deg, var(--vibrant-orange) 0%, var(--soft-orange) 100%);
            color: var(--pure-white);
            padding: 1.1rem 2.5rem;
            border-radius: 2.5rem;
            text-decoration: none;
            font-family: 'Roboto', sans-serif;
            font-weight: 700; /* Gotham Pro Bold */
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
            position: relative;
            overflow: hidden;
            border: none;
            z-index: 3;
        }

        .btn-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .btn-hero:hover::after {
            left: 100%;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
        }

        /* Sección de Registro - Mejorada */
        #registration {
            background: linear-gradient(135deg, var(--deep-blue) 0%, #122b4d 100%);
            color: var(--pure-white);
            padding: 6rem 0;
            position: relative;
        }

        .section-title {
            font-size: 2.8rem;
            font-family: 'Bebas Neue', sans-serif;
            font-weight: 400; /* Bebas Neue Pro Bold */
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
            color: var(--pure-white);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--vibrant-orange);
        }

        .texto-centrado {
            text-align: center;
            margin: 0 auto 2rem;
            max-width: 800px;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-family: 'Roboto', sans-serif;
            font-weight: 500; /* Gotham Pro Medium */
        }

        .registration-options {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }

        .registration-card {
            background: var(--pure-white);
            border-radius: 15px;
            overflow: hidden;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            color: var(--dark-text);
        }

        .registration-card.featured {
            border: 2px solid var(--vibrant-orange);
            transform: translateY(-10px);
        }

        .location-header {
            background: linear-gradient(135deg, var(--electric-blue) 0%, var(--vibrant-orange) 100%);
            color: var(--pure-white);
            padding: 1.5rem;
            text-align: center;
        }

        .location-title {
            font-size: 1.3rem;
            font-family: 'Bebas Neue', sans-serif;
            font-weight: 400; /* Bebas Neue Pro Bold */
            margin-bottom: 0.5rem;
        }

        .location-name {
            font-size: 1.1rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 700; /* Gotham Pro Bold */
        }

        .location-body {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .location-address {
            display: block;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            line-height: 1.5;
            font-family: 'Bebas Neue', sans-serif;
            font-style: italic; /* Bebas Neue Pro Italic */
        }

        .location-hours {
            color: var(--vibrant-orange);
            font-weight: 600;
            font-size: 0.9rem;
            font-family: 'Bebas Neue', sans-serif;
            font-style: italic; /* Bebas Neue Pro Italic */
        }

        .registration-notes {
            margin-top: 3rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .registration-notes p {
            font-family: 'Bebas Neue', sans-serif;
            font-style: italic; /* Bebas Neue Pro Italic */
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--deep-blue) 0%, #122b4d 100%);
            color: var(--pure-white);
            padding: 5rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 700; /* Gotham Pro Bold */
            margin-bottom: 1.5rem;
            position: relative;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--vibrant-orange);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Bebas Neue', sans-serif;
            font-style: italic; /* Bebas Neue Pro Italic */
        }

        .footer-links a:hover {
            color: var(--vibrant-orange);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--pure-white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--vibrant-orange);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 500; /* Gotham Pro Medium */
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .section-title {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 0.8rem;
            }
            
            .top-bar-info {
                flex-direction: column;
                gap: 0.5rem;
                align-items: center;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 106px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 106px);
                background: rgba(10, 31, 56, 0.98);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 3rem 0;
                transition: all 0.5s ease;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 1.2rem 0;
                margin-left: 0;
            }
            
            .nav-menu li a {
                font-size: 1.2rem;
            }
            
            .btn-nav {
                padding: 0.9rem 2rem;
                font-size: 1.1rem;
            }
            
            #hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .registration-options {
                flex-direction: column;
                align-items: center;
            }
            
            .registration-card {
                max-width: 100%;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .logo img {
                max-height: 7rem;
                max-width: 200px;
            }

            .logo {
                top: 2.5rem;
            }

            #hero {
                padding-top: 4.5rem;
            }

            .header-inner {
                min-height: 90px;
            }

            .title-image {
                width: 90%;
            }
        }

        @media (max-width: 576px) {
            #hero h1 {
                font-size: 2.2rem;
            }

            #hero p {
                font-size: 1.1rem;
            }

            .btn-hero {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .title-image {
                width: 95%;
            }

            .logo img {
                max-height: 5rem;
                max-width: 150px;
            }

            .logo {
                top: 1.5rem;
            }

            #hero {
                padding-top: 3rem;
            }

            .header-inner {
                min-height: 70px;
            }
        }
        #registration {
    background-image: url('../img/MOCKUP PLAYERA FARRERA 02.2.png');
    background-size: cover; /* Scales the image to cover the section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating the image */
    background-attachment: fixed; /* Optional: keeps the background fixed during scroll */
    padding: 4rem 0; /* Adjust padding for content spacing */
    position: relative; /* Ensures content is positioned relative to this section */
}

/* Optional: Add a semi-transparent overlay to improve text readability */
#registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay with 40% opacity */
    z-index: 1; /* Places overlay behind content */
}

/* Ensure content is above the overlay */
#registration .container {
    position: relative;
    z-index: 2; /* Places content above the overlay */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #registration {
        background-attachment: scroll; /* Fixed background can be problematic on mobile */
        padding: 2rem 0; /* Reduce padding for smaller screens */
    }
}