:root {
            --primary: #00D4F0;
            --accent: #00FFE0;
            --secondary: #0077B6;
            --arena: #00CC99;
            --team: #FF7E33;
            --league: #c44b4b;
            --event: #8A2BE2;
            --dark: #0A1126;
            --darker: #070D1D;
            --light: #FFFFFF;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(0, 212, 240, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.15) 0%, transparent 25%);
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2.5rem 0;
        }
        
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            letter-spacing: 1.5px;
            position: relative;
            padding: 0 0.5rem;
        }
        
        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease;
        }
        
        .logo:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .hero {
            text-align: center;
            padding: 8rem 0 6rem;
            position: relative;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle at center, rgba(0, 212, 240, 0.1) 0%, transparent 50%);
            z-index: -1;
        }
        
        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 5rem;
            margin-bottom: 2.5rem;
            letter-spacing: -1.5px;
            line-height: 1.05;
            text-transform: uppercase;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            background-size: 200% 200%;
            animation: gradientFlow 8s ease infinite;
        }
        
        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .subtitle {
            font-size: 1.6rem;
            margin-bottom: 4rem;
            opacity: 0.9;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            font-weight: 300;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin: 5rem 0;
        }
        
        .countdown-item {
            text-align: center;
            perspective: 1000px;
        }
        
        .countdown-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--light);
            background: linear-gradient(145deg, rgba(0, 212, 240, 0.2), rgba(0, 119, 182, 0.2));
            padding: 2rem 2.5rem;
            border-radius: 16px;
            width: 200px;
            max-width: 200px;
            min-width: 200px;
            display: inline-block;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(0, 212, 240, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .countdown-number:hover {
            transform: translateY(-10px) rotateX(10deg);
            box-shadow: 0 20px 40px rgba(0, 212, 240, 0.4);
        }
        
        .countdown-label {
            margin-top: 1.5rem;
            font-size: 1.2rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--darker);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.4rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-top: 2rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(0, 212, 240, 0.4);
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 255, 224, 0.5);
        }
        
        .cta-button:hover::before {
            opacity: 1;
        }
        
        .features {
            display: grid;
            gap: 4rem;
            margin: 8rem 0;
        }
        
        .feature-card {
            background: linear-gradient(145deg, rgba(10, 17, 38, 0.8), rgba(7, 13, 29, 0.9));
            border-radius: 25px;
            padding: 4rem 3rem;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            min-height: 500px;
            display: flex;
            flex-direction: column;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, var(--card-color), transparent 70%);
        }

        
        .feature-card:nth-child(even):before {
            background: linear-gradient(90deg, transparent 70%, var(--card-color));
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 80%, rgba(var(--card-rgb), 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .feature-card:nth-child(odd)::after {
            background: radial-gradient(circle at 80% 20%, rgba(var(--card-rgb), 0.1) 0%, transparent 50%);
        }
        .feature-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(var(--card-rgb), 0.3);
            cursor: default;
        }
        
        .feature-icon {
            font-size: 4.5rem;
            margin-bottom: 3rem;
            filter: drop-shadow(0 5px 15px rgba(var(--card-rgb), 0.4));
        }
        
        .arena-card { 
            --card-color: var(--arena);
            --card-rgb: 0, 204, 153;
        }
        .team-card { 
            --card-color: var(--team);
            --card-rgb: 255, 126, 51;
        }
        .league-card { 
            --card-color: var(--league);
            --card-rgb: 196, 75, 75;
        }
        .event-card { 
            --card-color: var(--event);
            --card-rgb: 138, 43, 226;
        }
        
        .feature-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--card-color);
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .feature-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--card-color), transparent);
            border-radius: 3px;
        }
        
        
        .feature-desc {
            opacity: 0.9;
            line-height: 1.9;
            font-size: 1.2rem;
            flex-grow: 1;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }
        
        .feature-link {
            margin-top: auto;
            color: var(--light);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.4s;
            background: linear-gradient(90deg, var(--card-color), rgba(var(--card-rgb), 0.5));
            padding: 1rem 2rem;
            border-radius: 50px;
            width: fit-content;
            box-shadow: 0 5px 15px rgba(var(--card-rgb), 0.3);
        }
        
        .feature-link:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(var(--card-rgb), 0.5);
        }
        
        .feature-link::after {
            content: '→';
            margin-left: 10px;
            transition: all 0.3s;
        }
        
        .feature-link:hover::after {
            margin-left: 15px;
        }
        
        .newsletter {
            background: linear-gradient(135deg, rgba(0, 212, 240, 0.15), rgba(0, 119, 182, 0.15));
            padding: 5rem;
            border-radius: 25px;
            text-align: center;
            margin: 8rem 0;
            border: 1px solid rgba(0, 212, 240, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .newsletter::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(0, 212, 240, 0.05) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .newsletter h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            margin-bottom: 2.5rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        
        .newsletter p {
            max-width: 750px;
            margin: 0 auto 4rem auto;
            opacity: 0.9;
            font-size: 1.3rem;
            line-height: 1.8;
            font-weight: 300;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 700px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .newsletter-form:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 212, 240, 0.4);
            transform: translateY(-5px);
        }
        
        .newsletter-input {
            flex: 1;
            padding: 1.5rem 2.5rem;
            border: none;
            background: transparent;
            font-size: 1.2rem;
            color: white;
        }
        
        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }
        
        .newsletter-input:focus {
            outline: none;
        }
        
        .newsletter-button {
            padding: 0 4rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--darker);
            border: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }
        
        .newsletter-button:hover {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            padding: 0 4.5rem;
        }
        
        footer {
            text-align: center;
            padding: 4rem 0;
            opacity: 0.7;
            font-size: 1.1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 4rem;
            position: relative;
        }
        
        footer::before {
            content: 'TAGUNITE';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Orbitron', sans-serif;
            font-size: 10rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.02);
            z-index: -1;
            letter-spacing: 5px;
        }


        a {
            text-decoration: none;
            color: var(--primary);
        }
        
        @media (max-width: 1200px) {
            h1 {
                font-size: 4rem;
            }
            
            .countdown-number {
                font-size: 3.5rem;
                min-width: 120px;
                padding: 1.5rem 2rem;
            }
            
            .feature-card {
                min-height: 450px;
                padding: 3rem 2.5rem;
            }
            
            .feature-icon {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 992px) {
            .logo {
                font-size: 2.2rem;
            }
            
            h1 {
                font-size: 3.2rem;
            }
            
            .subtitle {
                font-size: 1.3rem;
            }
            
            .countdown {
                gap: 1.5rem;
            }
            
            .countdown-number {
                font-size: 3rem;
                min-width: 100px;
                padding: 1.2rem 1.8rem;
            }
            
            .features {
                grid-template-columns: 1fr 1fr;
            }
            
            .newsletter {
                padding: 4rem 2rem;
            }
        }
        
        @media (max-width: 768px) {
            header {
                padding: 1.5rem 0;
            }
            
            .hero {
                padding: 5rem 0 3rem;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .subtitle {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }
            
            .countdown {
                gap: 1rem;
                flex-wrap: wrap;
                margin: 3rem 0;
            }
            
            .countdown-number {
                font-size: 2.5rem;
                min-width: 80px;
                padding: 1rem 1.5rem;
            }
            
            .cta-button {
                padding: 1.2rem 3rem;
                font-size: 1.2rem;
            }
            
            .features {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                margin: 5rem 0;
            }
            
            .feature-card {
                min-height: auto;
                padding: 3rem 2rem;
            }
            
            .feature-title {
                font-size: 2rem;
            }
            
            .feature-desc {
                font-size: 1.1rem;
            }
            
            .newsletter h2 {
                font-size: 2.2rem;
            }
            
            .newsletter p {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }
            
            .newsletter-form {
                flex-direction: column;
                border-radius: 25px;
            }
            
            .newsletter-input {
                border-radius: 25px 25px 0 0;
                margin-bottom: 1px;
                text-align: center;
                padding: 1.2rem 2rem;
            }
            
            .newsletter-button {
                border-radius: 0 0 25px 25px;
                padding: 1.2rem;
            }
            
            .newsletter-button:hover {
                padding: 1.2rem;
            }
            
            footer::before {
                font-size: 5rem;
            }
        }