 /* Полностью встроенный CSS – красивые блоки и заголовки */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Arial, sans-serif; background: #0a0f1e; color: #e0e0e0; line-height: 1.6; min-height: 100vh; position: relative; padding-bottom: 110px; }
        a { color: #bb86fc; text-decoration: none; }
        a:hover { text-decoration: underline; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
        header { background: rgba(10, 15, 30, 0.95); position: sticky; top: 0; z-index: 1000; padding: 0.5rem 0; backdrop-filter: blur(10px); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; padding: 0 1rem; }
        .logo { font-size: 2.2rem; font-weight: bold; color: #fff; letter-spacing: 1px; }
        nav ul { list-style: none; display: flex; gap: 1.8rem; }
        nav ul li a { color: #fff; font-weight: 600; font-size: 1rem; transition: color 0.3s; }
        nav ul li a:hover { color: #bb86fc; }
        .nav-buttons { display: flex; gap: 0.8rem; }
        .btn { padding: 0.7rem 1.4rem; border-radius: 12px; font-weight: bold; font-size: 1rem; transition: all 0.3s; }
        .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
        .login-btn { background: #303f9f; }
        .register-btn { background: linear-gradient(135deg, #6a1b9a, #9c27b0); }
        .hamburger { display: none; cursor: pointer; flex-direction: column; }
        .hamburger input { display: none; }
        .hamburger span { display: block; width: 28px; height: 3px; background: #fff; margin: 5px 0; transition: all 0.3s ease; border-radius: 2px; }

        /* Hero */
        .hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('https://thumbs.dreamstime.com/b/fantastical-landscape-features-castle-bathed-ethereal-blue-purple-light-set-amidst-towering-mountain-peaks-sky-357268568.jpg') center/cover no-repeat; padding: 6rem 1rem; text-align: center; border-bottom: 1px solid rgba(187,134,252,0.2); }
        .hero h1 { font-size: 3.2rem; margin-bottom: 1.2rem; background: linear-gradient(90deg, #bb86fc, #34e7ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .hero p { font-size: 1.6rem; margin-bottom: 2.5rem; max-width: 800px; margin-left: auto; margin-right: auto; }

        /* Games Grid */
        .games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin: 3rem 0; }
        .game-card { background: linear-gradient(145deg, rgba(106,27,154,0.8), rgba(48,63,159,0.6)); border-radius: 20px; padding: 1.5rem; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.5); transition: transform 0.4s; }
        .game-card:hover { transform: translateY(-10px); }
        .game-card img { width: 100%; border-radius: 12px; margin-bottom: 1rem; }
        .game-card h3 { font-size: 1.4rem; margin: 0.8rem 0; color: #34e7ff; }
        .game-card p { font-size: 1.2rem; margin: 0.5rem 0; }
        .game-card span { display: block; font-size: 0.9rem; color: #aab6d6; }

        /* Красивые блоки для текста */
        .section-block { background: linear-gradient(145deg, #0f1629, #0a102a); border-radius: 20px; padding: 2.5rem; margin: 3rem auto; max-width: 1000px; box-shadow: 0 15px 40px rgba(0,0,0,0.6); border: 1px solid rgba(187,134,252,0.15); }
        .section-block h2, .section-block h3 { font-size: 2.2rem; margin-bottom: 1.5rem; background: linear-gradient(90deg, #bb86fc, #34e7ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-align: center; }
        .section-block h3 { font-size: 1.8rem; }
        .section-block p { margin-bottom: 1.2rem; font-size: 1.05rem; }
        .section-block ul { margin: 1.5rem 0; padding-left: 2rem; }
        .section-block li { margin-bottom: 0.8rem; font-size: 1.05rem; }
        .section-block table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
        .section-block th, .section-block td { padding: 1.2rem; border: 1px solid rgba(187,134,252,0.3); text-align: left; }
        .section-block th { background: #6a1b9a; color: #fff; }
        .section-block details { margin: 1.5rem 0; }
        .section-block summary { cursor: pointer; font-weight: bold; font-size: 1.1rem; padding: 1rem; background: rgba(106,27,154,0.3); border-radius: 12px; }
        .section-block summary:hover { background: rgba(106,27,154,0.5); }

        /* CTA Button */
        .cta-btn { display: inline-block; background: linear-gradient(135deg, #6a1b9a, #9c27b0); padding: 1.2rem 2.5rem; border-radius: 16px; font-size: 1.6rem; font-weight: bold; box-shadow: 0 10px 30px rgba(106,27,154,0.5); transition: all 0.3s; margin: 3rem auto; text-align: center; }
        .cta-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(106,27,154,0.7); }

        footer { background: #060a18; padding: 2rem; font-size: 0.9rem; text-align: center; }

        /* Bottom Nav */
        .bottom-nav { display: none; position: fixed; left: 0; right: 0; bottom: 0; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(7, 11, 25, 0.74); backdrop-filter: blur(16px); border-top: 1px solid rgba(255, 255, 255, 0.09); z-index: 1000; }
        .bar { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .nav { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 10px 8px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.09); background: rgba(255, 255, 255, 0.03); font-size: 12px; color: #aab6d6; transition: all 0.3s ease; }
        .nav b { color: #eaf0ff; font-weight: 850; font-size: 12px; }
        .ico { width: 18px; height: 18px; border-radius: 6px; background: linear-gradient(135deg, #7b5cff, #34e7ff); box-shadow: 0 14px 30px rgba(94, 67, 255, 0.22); }
        .nav.active { background: rgba(123, 92, 255, 0.10); border-color: rgba(123, 92, 255, 0.28); color: #eaf0ff; }

        @media (max-width: 768px) {
            .hamburger { display: flex; }
            nav ul { position: fixed; top: 60px; left: -100%; width: 100%; height: calc(100vh - 60px); background: #0a0f1e; flex-direction: column; align-items: center; transition: left 0.3s ease; padding-top: 2rem; }
            nav ul.active { left: 0; }
            .nav-buttons { flex-direction: column; gap: 1rem; width: 80%; margin: 1rem 0; }
            .hero h1 { font-size: 2.4rem; }
            .hero p { font-size: 1.3rem; }
            .section-block { padding: 2rem 1.5rem; }
            .section-block h2 { font-size: 2rem; }
            .container { padding-bottom: 130px; }
            .bottom-nav { display: block; }
        }

        .hamburger input:checked ~ span:nth-child(2) { opacity: 0; }
        .hamburger input:checked ~ span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
        .hamburger input:checked ~ span:nth-child(4) { transform: rotate(-45deg) translate(-5px, 6px); }