
:root {
            --primary: #ff4655; /* Gaming red */
            --secondary: #0f1923; /* Dark blue */
            --accent: #00f0ff; /* Neon cyan */
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --success: #2ecc71;
            --warning: #f39c12;
            --danger: #e74c3c;
            --card-bg: rgba(15, 25, 35, 0.8);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ==== HEADER & NAVBAR ==== */
        header {
            background-color: rgba(15, 25, 35, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 70, 85, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        .logo i {
            font-size: 32px;
            color: var(--accent);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            position: relative;
        }

        .mob-link{
            display: none;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .user-actions {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 16px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 70, 85, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* ==== HERO SECTION ==== */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: 
                linear-gradient(rgba(15, 25, 35, 0.8), rgba(15, 25, 35, 0.8)),
                url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center;
            background-size: cover;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 20px;
            color: #aaa;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
        }

        /* ==== FEATURED GAMES ==== */
        .featured-games {
            padding: 80px 0;
            background: var(--secondary);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #aaa;
            max-width: 700px;
            margin: 0 auto;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .game-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 70, 85, 0.2);
        }

        .game-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .game-content {
            padding: 20px;
        }

        .game-content h3 {
            margin-bottom: 10px;
            color: var(--light);
        }

        .game-meta {
            display: flex;
            justify-content: space-between;
            color: #aaa;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .game-price {
            font-weight: bold;
            color: var(--primary);
        }

        /* ==== LIVE STREAMS ==== */
        .live-streams {
            padding: 80px 0;
            background: var(--dark);
        }

        .streams-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .stream-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .stream-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 240, 255, 0.2);
        }

        .stream-thumbnail {
            position: relative;
            height: 180px;
            overflow: hidden;
        }

        .stream-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .live-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--danger);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
        }

        .stream-info {
            padding: 15px;
            display: flex;
            gap: 15px;
        }

        .streamer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }

        .streamer-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .stream-details h4 {
            margin-bottom: 5px;
        }

        .stream-details p {
            color: #aaa;
            font-size: 14px;
        }

        /* ==== NEWS SECTION ==== */
        .news {
            padding: 80px 0;
            background: var(--secondary);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 70, 85, 0.2);
        }

        .news-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .news-content {
            padding: 20px;
        }

        .news-content h3 {
            margin-bottom: 10px;
        }

        .news-content p {
            color: #aaa;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 12px;
        }

        /* ==== FOOTER ==== */
        footer {
            background: var(--secondary);
            padding: 60px 0 20px;
            border-top: 1px solid rgba(255, 70, 85, 0.2);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #666;
        }

        /* ==== RESPONSIVE DESIGN ==== */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            nav ul {
                gap: 15px;
            }
        }

        @media (max-width: 860px) {
    nav {
        display: none; 
        position: absolute;
        top: -300px;
        right: -300px;
        background-color: var(--dark);
        width: 280px;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: .8s;
    }
    
    nav ul {
        display: block;
    }

    nav ul li {
        margin: 1rem auto;
    }

    .mob-link {
        display: block;
    }

    .mob-link:hover{
        cursor: pointer;
    }

    .checkbox:checked ~ nav {
        display: block;
        top: 4rem;
        right: 0;
    }

    .user-actions{
        display: none;
    }
}

        @media (max-width: 768px) {
            
            

            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
        }

         @media (max-width: 700px) {
            .games-grid {
                grid-template-columns:1fr 1fr;
            }

            .streams-grid{
                grid-template-columns:1fr 1fr;
            }

            .news-grid{
                grid-template-columns: 1fr 1fr;
            }
        }

         @media (max-width: 550px) {
            .game-content h3{
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 30px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
        }

         @media (max-width: 550px) {
            .games-grid {
                grid-template-columns: 1fr;
            }
            .game-content h3{
                font-size: 1.5rem;
            }

            .streams-grid{
                grid-template-columns:1fr;
            }

            .news-grid{
                grid-template-columns: 1fr;
            }
        }