
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Oswald', sans-serif;
            background: rgba(9, 9, 9, 1);
            color: white;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100vw;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            color: white;
        }

        .logo img {
          width: 30px;
          height: 30px;
          object-fit: cover;
        }

    

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #FFB623;
            transform: translateY(-2px);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFB623;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            padding: 6rem 2rem 40px;
            position: relative;
            overflow: hidden;
        }

        .policy {
           padding: 6rem 2rem 40px;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 278px;
            gap: 30px;
            align-items: center;
            width: 100%;
        }

        .policy-container {
          max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content {
            position: relative;
        }

        .hero-arrows {

        }

        .arrow {
            width: 60px;
            height: 20px;
            background: white;
            clip-path: polygon(0 50%, 80% 0, 80% 35%, 100% 35%, 100% 65%, 80% 65%, 80% 100%);
            animation: float 2s ease-in-out infinite;
        }

        .arrow:nth-child(2) {
            animation-delay: 0.3s;
        }

        .arrow:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 0.9;
            margin-bottom: 2rem;
            text-transform: uppercase;
            text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
        }

        .hero-text {
            font-size: 14px;
            line-height: 1.1;
            margin-bottom: 30px;

        }

        .cta-button {
            background: linear-gradient(45deg, #FF6B35, #F7931E);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
            text-decoration: none;
            display: flex;
            width: max-content;
            justify-content: center;
            align-items: center;
            max-width: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            max-width: 100%;
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: heroImageFloat 3s ease-in-out infinite;
        }

        @keyframes heroImageFloat {
            0%, 100% { transform: translateY(0) rotate(1deg); }
            50% { transform: translateY(-20px) rotate(-1deg); }
        }

        /* Features Section */
        .features {
            padding: 40px 2rem;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.8fr 1fr;
            gap: 20px;
            align-items: center;
        }

        .features-image {
            position: relative;
        }

        .features-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .features-content {
            padding-left: 2rem;
        }

        .features-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }

        .features-text {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        /* Gateway Section */
        .gateway {
            padding: 6rem 2rem 40px;
            text-align: center;
        }

        .gateway-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gateway-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .gateway-title {
            font-size: clamp(4rem, 6vw, 8rem);
            font-weight: 700;
            line-height: 1.1;
            text-align: left;
            flex: 1;
        }

        .gateway-arrows {
            display: flex;
            gap: 1rem;
            margin-left: 2rem;
        }

        .gateway-character {
            display: grid;
            align-items: flex-end;
            gap: 20px;
            grid-template-columns: 220px 1fr 220px;
            margin-bottom: 4rem;
            margin-top: -40px;
        }

        .gateway-character img {
            max-width: 418px;
            height: auto;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            animation: characterBounce 2s ease-in-out infinite;
        }

        @keyframes characterBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-15px) scale(1.05); }
        }

        .gateway-text {
            margin: 2rem auto;
            font-size: 0.9rem;
            line-height: 1.1;
            text-align: left;
        }

        /* Mini Games Section */
        .mini-games {
            padding: 40px 2rem;
        }

        .mini-games-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 394px;
            gap: 4rem;
            align-items: flex-end;
        }

        .mini-games-block {
           display: grid;
           grid-template-columns: 1fr 305px;
           gap: 20px;
        }

        .mini-games-content {

        }

        .mini-games-col {
          align-self: stretch;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
        }

        .mini-games-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .mini-games-text {
            font-size: 0.9rem;
            line-height: 1.1;
            margin-bottom: 3rem;
            max-width: 285px;
            width: 100%;
        }

        .features-list {
          display: flex;
          flex-direction: column;
          gap: 15px;
          list-style: none;
        }

        .features-list li {
          display: flex;
          flex-direction: column;
          gap: 16px;
          border: 1px solid rgba(255, 255, 255, 1);
          padding: 20px;
          border-radius: 26px;
        }

        .feature-title {
            font-weight: 600;
            font-size: 20px;
            background: linear-gradient(90deg, #DA1E11 0%, #FFB623 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent; /* Fallback для браузеров без поддержки */
            
        }

        .feature-desc {
            font-size: 0.9rem;
            line-height: 1.1;
        }

        .mini-games-character {
            text-align: center;
            position: relative;
        }

        .mini-games-character img {
            max-width: 100%;
            height: auto;
            animation: characterSpin 4s ease-in-out infinite;
        }

        @keyframes characterSpin {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }

        /* Trending Games */
        .trending {
          position: relative;
            padding: 6rem 2rem;
        }

        .trending-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .trending-block {
          display: flex;
          flex-direction: column;
          max-width: 90%;
          width: 100%;
          gap: 30px;
        }

        .trending-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .trending-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            flex: 1;
            text-transform: uppercase;
        }

        .trending-character {
          position: absolute;
          right: -40px;
          bottom: 0;
          
        }

        .trending-character img {
            max-width: 285px;
            width: 100%;
            
            height: auto;
            animation: trendingFloat 3s ease-in-out infinite;
        }

        @keyframes trendingFloat {
            0%, 100% { transform: translateX(0) rotate(2deg); }
            50% { transform: translateX(-10px) rotate(-2deg); }
        }

        .trending-text {
            font-size: 14px;
            line-height: 1.1;
 
        }

        .games-block {
          display: flex;
          gap: 20px;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            width: 100%;
    
        }

        .game-card span {
          display: none;
          text-align: center;
          font-weight: 700;
          font-size: 20px;
          letter-spacing: 0%;
          text-align: center;
          color: #fff;
          padding: 20px;
          
        }

        .game-card--max {
          max-width: 380px;
          width: 100%;
          aspect-ratio: 1/1;
          height: auto;
        }

        .game-card {
          text-decoration: none;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
            height: auto;
            aspect-ratio: 1/1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .game-card:hover {
          
          background: linear-gradient(90deg, #DA1E11 0%, #FFB623 100%);
transform: translateY(-10px);
        }

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

        .game-card:hover img {
          display: none;
            
           
        }

        .game-card:hover span {
          display: flex;
        }

       

        /* Stats Section */
        .stats {
            padding: 40px 2rem;
            background: rgba(0, 0, 0, 0.3);
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .stats-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 30px;
        }

        .stats-text {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            border: 1px solid rgba(255, 255, 255, 1);
            padding: 60px 20px;
            border-radius: 26px;
  
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
             background: linear-gradient(90deg, #DA1E11 0%, #FFB623 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent; /* Fallback для браузеров без поддержки */
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.8;
        }

        /* Final CTA Section */
        .final-cta {
            padding: 6rem 2rem;
        }

        .final-cta-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 35px;
            align-items: center;
        }

        .final-cta-content {
            padding-right: 2rem;
        }

        .final-cta-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .final-cta-text {
            font-size: 14px;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .final-cta-character {
            text-align: center;
            position: relative;
        }

        .final-cta-character img {
            max-width: 100%;
            height: auto;
            animation: finalFloat 2.5s ease-in-out infinite;
        }

        @keyframes finalFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-15px) scale(1.02); }
        }

        /* Footer */
        .footer {

            padding: 3rem 2rem 1rem;
          
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top,
        .footer-bottom {
          display: flex;
          gap: 20px;
          justify-content: space-between;
          align-items: center;
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white;
            text-decoration: none;
        }

        .footer-logo img {
          width: 30px;
          height: 30px;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: #FFB623;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-link {
     
            transition: all 0.3s ease;
        }

        .social-link:hover {
      
            transform: translateY(-3px);
        }

        .footer-copyright {
            font-size: 0.8rem;
            opacity: 0.7;
     
        }

        /* Game Page Styles */
        .game-page {
            min-height: 100vh;
            padding-top: 6rem;
        }

        .game-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }

        .game-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
        }

        .game-frame {
            width: 100%;
            max-width: 800px;
            height: 600px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            margin: 0 auto 2rem;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .back-button {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Oswald', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 2rem;
        }

        .back-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .hero-container,
            .features-container,
            .mini-games-container,
            .final-cta-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .trending-header{
                flex-direction: column;
                gap: 2rem;
            }

            .gateway-header {
              flex-direction: column-reverse;
            }

            .features-content,
            .mini-games-content,
            .final-cta-content {
                padding: 0;
            }

            .gateway-arrows {
                margin-left: 0;
            }

            .trending-character {
                margin-left: 0;
            }

            .final-cta-character,
            .mini-games-character {
              max-width: 500px;
              margin-left: auto;
              margin-right: auto;
            }

            .gateway-character {
              margin-top: 0;
              grid-template-columns: 1fr;
            }

            .mini-games-block {
              grid-template-columns: 1fr;
              gap: 30px;
            }

            .trending-block {
              max-width: 100%;
            }

            .trending-character {
              position: relative;
              right: -60px;
            }

            .trending-character img {
margin-left: auto;
display: block;
            }

            .gateway-text {
              order: 1;
            }

            .gateway-character img {
              order: 3;
            }

            .gateway-character .cta-button {
              order: 2;
            }

            .games-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .footer-nav {
                flex-direction: column;
                gap: 1rem;
            }

            .game-frame {
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .mini-games-text {
              max-width: 100%;
            }

            .games-block {
              flex-direction: column;
            }

            .stat-card {
              padding: 30px 20px;
            }

            .footer-top {
              flex-direction: column;
              align-items: flex-start;
            }

            .hero,
            .features,
            .gateway,
            .mini-games,
            .trending,
            .stats,
            .final-cta {
                padding: 3rem 1rem;
            }

            .games-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
