/* === BASE STYLES & BORDER GLOW === */
        :root {
            --bg-color: #060913;
            --card-bg: #0d1323;
            --text-main: #e2e8f0;
            --text-muted: #94a3b8;
            --accent-cyan: #00d2ff;
            --accent-orange: #ff7300;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Open Sans', sans-serif;
            overflow-x: hidden;
            position: relative;
        }

        /* Ambient Site Border Glow */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            border: 2px solid rgba(0, 210, 255, 0.25);
            box-shadow: inset 0 0 30px rgba(0, 210, 255, 0.1), 0 0 30px rgba(0, 210, 255, 0.15);
            pointer-events: none;
            z-index: 9999;
        }

        /* Glowing Typography */
        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
        }

        /* === NAVBAR === */
        .navbar {
            background-color: rgba(6, 9, 19, 0.95) !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 2rem;
            z-index: 10000;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            letter-spacing: 1px;
            text-shadow: 0 0 12px rgba(0, 210, 255, 0.6);
        }

        .navbar-brand span {
            color: var(--accent-cyan);
        }

        .nav-link {
            color: var(--text-main) !important;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0 10px;
            transition: color 0.3s, text-shadow 0.3s;
        }

        .nav-link:hover {
            color: var(--accent-cyan) !important;
            text-shadow: 0 0 8px rgba(0, 210, 255, 0.8);
        }

        .btn-play-now {
            background: linear-gradient(45deg, #00d2ff, #3a7bd5);
            border: none;
            color: white;
            font-weight: 700;
            padding: 8px 24px;
            border-radius: 30px;
            text-transform: uppercase;
            font-size: 0.85rem;
            box-shadow: 0 0 12px rgba(0, 210, 255, 0.4);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .btn-play-now:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(0, 210, 255, 0.8);
            color: white;
        }

        /* === HERO SECTION WITH VIDEO === */
        .hero-section {
            position: relative;
            height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: 1;
            object-fit: cover;
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(6, 9, 19, 0.3), rgba(6, 9, 19, 0.9));
            z-index: 2;
        }

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

        .hero-title {
            font-size: 4.5rem;
            text-shadow: 0 0 25px rgba(0, 210, 255, 0.8), 0 0 10px rgba(0, 210, 255, 0.5);
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 2.5rem;
            color: var(--text-muted);
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, #ff7300, #ff4000);
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            margin-right: 15px;
            box-shadow: 0 0 10px rgba(255, 115, 0, 0.4);
            transition: box-shadow 0.3s, transform 0.2s;
        }

        .btn-primary-custom:hover {
            box-shadow: 0 0 20px rgba(255, 115, 0, 0.8);
            transform: scale(1.05);
            color: white;
        }

        .btn-outline-custom {
            background: transparent;
            border: 2px solid var(--text-muted);
            color: white;
            padding: 10px 30px;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .btn-outline-custom:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
        }

        /* === SECTION HEADERS === */
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--accent-cyan);
            padding-left: 15px;
            text-shadow: 0 0 12px rgba(0, 210, 255, 0.5);
        }

        /* === CARDS (OUR WORLDS) === */
        .game-card {
            background-color: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            height: 100%;
        }

        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 210, 255, 0.2);
            border-color: rgba(0, 210, 255, 0.5);
        }

        .game-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .game-card-body {
            padding: 1.5rem;
        }

        .game-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 8px rgba(0, 210, 255, 0.4);
        }

        .game-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .btn-learn {
            background: transparent;
            border: 1px solid var(--text-muted);
            color: var(--text-main);
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-learn:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
        }

        /* === NEWS SECTION === */
        .news-item {
            display: flex;
            background-color: var(--card-bg);
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 1rem;
            border: 1px solid transparent;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        
        .news-item:hover {
            border-color: rgba(0, 210, 255, 0.3);
            box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
        }

        .news-img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
            margin-right: 15px;
        }

        .news-date {
            font-size: 0.75rem;
            color: var(--accent-cyan);
            font-weight: 600;
            text-shadow: 0 0 6px rgba(0, 210, 255, 0.4);
        }

        .news-title {
            font-size: 0.95rem;
            margin: 5px 0;
            font-weight: 700;
            text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
        }

        /* === CTA BANNER === */
        .cta-banner {
            background: linear-gradient(rgba(13, 19, 35, 0.85), rgba(13, 19, 35, 0.85)), 
                        url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop') center/cover;
            border-radius: 15px;
            padding: 4rem 2rem;
            text-align: center;
            border: 1px solid rgba(0, 210, 255, 0.2);
            box-shadow: 0 0 25px rgba(0, 210, 255, 0.1);
        }

        /* === FOOTER === */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2rem 0;
            margin-top: 4rem;
            font-size: 0.85rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            margin-right: 15px;
            transition: color 0.3s, text-shadow 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
            text-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
        }

        .social-icons a {
            color: var(--text-main);
            font-size: 1.2rem;
            margin-left: 15px;
            transition: color 0.3s, text-shadow 0.3s;
        }

        .social-icons a:hover {
            color: var(--accent-cyan);
            text-shadow: 0 0 10px rgba(0, 210, 255, 0.8);
        }