        :root {
            --primary: #161E54;
            --secondary: #213C51;
            --accent: #FA6868;
            --white: #FFFFFF;
            --margin-global: 60px;
        }

        body {
            background-color: #3143ab;
            color: var(--white);
            font-family: 'Rajdhani', sans-serif;
            margin: 0;
            overflow-x: hidden;
            scroll-behavior: smooth;
            padding: var(--margin-global);
            padding-top: calc(90px + var(--margin-global));
        }

        h1, h2, h3, .heading-font {
            font-family: 'Princess Sofia', cursive;
        }

        p {
            letter-spacing: 1px;
            font-weight: 300;
        }

        /* Responsive margin adjustment */
        @media (max-width: 1024px) {
            :root { --margin-global: 30px; }
            body { padding: calc(90px + 30px) 30px 30px 30px; }
        }
        
        @media (max-width: 640px) {
            :root { --margin-global: 15px; }
            body { padding: calc(90px + 15px) 15px 15px 15px; }
        }

        /* --- IMMERSIVE BACKGROUND SYSTEM --- */
        .parallax-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-radius: 40px;
            margin-bottom: var(--margin-global);
        }

        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(22, 30, 84, 0.85);
            z-index: 1;
        }

        .section-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 100px 5%;
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            background: rgba(186, 181, 181, 0.6);
            backdrop-filter: blur(10px);
            position: fixed;
            top: var(--margin-global);
            left: var(--margin-global);
            right: var(--margin-global);
            z-index: 1000;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            border-bottom: 1px solid rgba(203, 16, 16, 0.3);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .header-scrolled {
            top: 15px;
            background:rgba(186, 181, 181, 0.6);
            backdrop-filter: blur(20px);
        }

        .nav-item { position: relative; cursor: pointer; padding: 30px 0; }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--primary);
            min-width: 220px;
            visibility: hidden;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 15px 35px rgba(0,0,0,0.8);
            border-top: 3px solid var(--accent);
            padding: 15px 0;
            border-radius: 20px;
        }

        .nav-item:hover .dropdown {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .mega-menu {
            position: fixed;
            left: var(--margin-global);
            right: var(--margin-global);
            width: auto;
            background: var(--secondary) !important;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            padding: 40px 5%;
            gap: 40px;
            border-radius: 30px;
        }

        .dropdown a {
            display: block;
            padding: 12px 25px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: 0.4s;
            border-left: 0px solid var(--accent);
        }

        .dropdown a:hover {
            color: var(--accent);
            background: rgba(255,255,255,0.05);
            border-left: 4px solid var(--accent);
            padding-left: 35px;
        }

        .mega-col-title {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(250, 104, 104, 0.3);
            padding-bottom: 10px;
            letter-spacing: 2px;
        }

        /* --- AUTH SYSTEM --- */
        #auth-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(5, 8, 26, 0.95);
            backdrop-filter: blur(20px);
            justify-content: center;
            align-items: center;
            padding: var(--margin-global);
        }

        .auth-card {
            background: var(--primary);
            width: 450px;
            max-width: 100%;
            padding: 50px;
            border: 2px solid var(--accent);
            box-shadow: 0 0 50px rgba(250, 104, 104, 0.2);
            text-align: center;
            border-radius: 40px;
        }

        .input-group input {
            width: 100%;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 14px;
            color: white;
            margin-bottom: 15px;
            border-radius: 30px;
            outline: none;
            transition: 0.3s;
        }

        .input-group input:focus {
            border-color: var(--accent);
            background: rgba(255,255,255,0.1);
        }

        /* --- ANIMATIONS --- */
        .reveal { opacity: 0; transition: all 1s cubic-bezier(0.19, 1, 0.22, 1); }
        .slide-left { transform: translateX(-150px); }
        .slide-right { transform: translateX(150px); }
        .slide-up { transform: translateY(150px); }
        .slide-down { transform: translateY(-150px); }
        .zoom-in { transform: scale(0.7); }
        .rotate-in { transform: rotate(-5deg) scale(0.9); }
        .active-reveal { opacity: 1; transform: translate(0) scale(1) rotate(0); }

        /* --- GAME CARDS --- */
        .game-card {
            background: var(--secondary);
            border: 1px solid rgba(250, 104, 104, 0.15);
            transition: 0.5s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: 40px;
        }

        .game-card:hover {
            border-color: var(--accent);
            box-shadow: 0 0 30px rgba(250, 104, 104, 0.4);
            transform: translateY(-10px) scale(1.02);
        }

        .game-card img { 
            transition: 0.8s; 
            filter: brightness(0.8);
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .game-card:hover img { filter: brightness(1.2); }

        .btn-accent {
            background: var(--accent);
            color: white;
            padding: 14px 35px;
            font-weight: 700;
            text-transform: uppercase;
            transition: 0.4s;
            border: none;
            display: inline-block;
            letter-spacing: 2px;
            cursor: pointer;
            border-radius: 40px;
        }

        .btn-accent:hover {
            box-shadow: 0 0 25px var(--accent);
            transform: scale(1.05);
        }

        /* --- QUICK VIEW --- */
        #quick-view {
            display: none;
            position: fixed;
            inset: var(--margin-global);
            background: #05081a;
            z-index: 3000;
            padding: 80px 5%;
            overflow-y: auto;
            border-radius: 60px;
            border: 1px solid var(--accent);
            box-shadow: 0 0 50px rgba(250, 104, 104, 0.3);
        }

        /* --- BLOG CARDS --- */
        .blog-card {
            position: relative;
            height: 400px;
            overflow: hidden;
            cursor: pointer;
            border-radius: 40px;
        }
        .blog-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(22, 30, 84, 0.95), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            transition: 0.4s;
        }
        .blog-card:hover .blog-overlay { background: rgba(22, 30, 84, 0.8); }
        .blog-btn {
            opacity: 0;
            transform: translateY(20px);
            transition: 0.4s;
        }
        .blog-card:hover .blog-btn { opacity: 1; transform: translateY(0); }

        /* --- FOOTER --- */
        footer {
            background: #161E54;
            border-top: 2px solid var(--accent);
            padding: 80px 5%;
            border-radius: 60px;
            margin-top: var(--margin-global);
        }

        /* --- CONTAINER STYLES --- */
        .container-custom {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Responsive text adjustments */
        @media (max-width: 768px) {
            h1, .text-9xl { font-size: 3rem !important; }
            h2, .text-8xl { font-size: 2.5rem !important; }
            h3, .text-7xl { font-size: 2rem !important; }
            .section-content { padding: 50px 5%; }
        }
   