:root{
            --nav-height:64px;
            --accent:#1f2937;
            --accent-contrast:#fff;
            --bg:#f7f7fb;
            --btn-bg:#ef4444;
            --btn-bg-hover:#dc2626;
        }
        *{box-sizing:border-box}
        body{
            margin:0;
            font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            background:var(--bg);
            color:var(--accent);
        }

        /* Navbar */
        header.nav{
            height: var(--nav-height);
            background: linear-gradient(180deg, #111827 0%, #0b1220 100%) !important;
            /* Ensure brand text and logo are white */
            .brand,
            .brand .name { color: #fff !important; }
            .brand svg,
            .brand svg * { fill: #fff !important; stroke: #fff !important; }
            color: var(--accent-contrast);

            /* Make logo (SVG) and brand text white */
            .brand,
            .brand .name { color: var(--accent-contrast) !important; }

            .brand svg,
            .brand svg * { fill: var(--accent-contrast) !important; stroke: var(--accent-contrast) !important; }
            display:flex;
            align-items:center;
            justify-content:space-between;
            padding:0 1rem;
            background:linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
            box-shadow:0 1px 3px rgba(0,0,0,0.06);
            position:sticky;
            top:0;
            z-index:10;
        }
        .brand{
            display:flex;
        }
        html, body { height:100%; }
        main { height: calc(100vh - var(--nav-height)); max-width: none; margin:0; padding:0; }
        .embed {
            position:fixed;
            top:var(--nav-height);
            left:0;
            right:0;
            bottom:0;
            width:100vw;
            height:calc(100vh - var(--nav-height));
            border-radius:0;
            margin:0;
            max-width:none;
            overflow:hidden;
        }
        .embed iframe {
            width:100% !important;
            height:100% !important;
            min-height:0 !important;
            border:0;
            display:block;
        }
        .embed iframe { height:100%; min-height:0; }
        .brand{
            gap:0.75rem;
            align-items:center;
            text-decoration:none;
            color:var(--accent);
        }
        .brand svg{width:36px;height:36px;display:block}
        .brand .name{
            font-weight:600;
            font-size:1.05rem;
            letter-spacing:0.2px;
        }

        .nav-actions{
            display:flex;
            align-items:center;
            gap:0.75rem;
        }
        .btn{
            display:inline-block;
            padding:0.5rem 0.9rem;
            background:var(--btn-bg);
            color:var(--accent-contrast);
            border-radius:8px;
            text-decoration:none;
            font-weight:600;
            box-shadow:0 2px 6px rgba(0,0,0,0.12);
            transition:background .12s ease, transform .08s ease;
        }
        .btn:focus{outline:3px solid rgba(59,130,246,.25); outline-offset:2px;}
        .btn:hover{background:var(--btn-bg-hover); transform:translateY(-1px);}

        /* Page content */
        main{
            max-width:1100px;
            margin:1.25rem auto;
            padding:0 1rem 3rem;
        }

        .embed{
            width:100%;
            border:1px solid #e6e7eb;
            border-radius:10px;
            overflow:hidden;
            background:white;
        }
        .embed iframe{
            width:100%;
            height:72vh;
            min-height:420px;
            border:0;
            display:block;
        }
        .container {
            max-width: auto;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .movies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .movie-card {
            background: #222;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
            cursor: pointer;
            position: relative;
        }
        .movie-card:hover {
            transform: scale(1.05);
        }
        .movie-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        .movie-info {
            padding: 15px;
        }
        .movie-title {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .movie-date {
            font-size: 14px;
            color: #888;
            margin-bottom: 5px;
        }
        .movie-platform {
            font-size: 12px;
            color: #e50914;
            font-weight: bold;
            background: rgba(229, 9, 20, 0.2);
            padding: 4px 8px;
            border-radius: 4px;
            display: inline-block;
        }
        .error {
            text-align: center;
            font-size: 18px;
            color: #e50914;
            background: rgba(229, 9, 20, 0.1);
            padding: 20px;
            border-radius: 8px;
            margin: 50px auto;
            max-width: 600px;
        }
        .loading {
            text-align: center;
            font-size: 20px;
            margin: 50px 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            padding: 20px 0;
        }

        .game-card {
            background: #1a1a1a;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.2s;
        }

        .game-card:hover {
            transform: translateY(-5px);
        }

        .game-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .game-info {
            padding: 20px;
        }

        .game-title {
            font-size: 1.5em;
            color: white;
            margin-bottom: 10px;
        }

        .game-date {
            color: #667eea;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .game-platform {
            color: #666;
            font-size: 0.9em;
            margin-bottom: 10px;
        }

        .game-description {
            color: #555;
            line-height: 1.6;
        }