        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --background: hsl(240, 10%, 4%);
            --foreground: hsl(0, 0%, 98%);
            --card: hsl(240, 10%, 6%);
            --card-foreground: hsl(0, 0%, 98%);
            --primary: hsl(45, 93%, 47%);
            --primary-foreground: hsl(240, 10%, 3.9%);
            --muted: hsl(240, 4%, 16%);
            --muted-foreground: hsl(240, 5%, 65%);
            --border: hsl(240, 4%, 16%);
            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Outfit', sans-serif;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        ::selection {
            background: rgba(230, 184, 0, 0.3);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: -0.025em;
            color: white;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--background);
        }

        ::-webkit-scrollbar-thumb {
            background: #3f3f46;
            border-radius: 9999px;
            border: 2px solid var(--background);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #52525b;
        }

        .gold-glow {
            text-shadow: 0 0 20px rgba(230, 184, 0, 0.5);
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            z-index: 50;
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(9, 9, 11, 0.8);
            backdrop-filter: blur(24px);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .logo-icon img {
            height: 40px;
            width: auto;
            display: block;
        }

        .logo-text img {
            height: 30px;
            width: auto;
            display: block;
        }

        .logo {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo:hover .logo-icon {
            transform: scale(1.05);
        }

        .logo:hover .logo-text {
            color: var(--primary);
        }

        .search-box {
            display: none;
            flex: 1;
            max-width: 28rem;
            position: relative;
            cursor: pointer;
        }

        @media (max-width: 768px) {
        .hero {
        min-height: 250px;
        }
        }

        @media (max-width: 480px) {
    .logo-text img {
        height: 18px;
    }
    .logo-icon img {
        height: 30px;
    }
    .header-container {
        height: 60px;
    }
        }


        @media (min-width: 768px) {
            .search-box {
                display: flex;
            }
        }
        .hero {
        min-height: 250px; /
        }

        .search-box:hover .search-icon {
            color: var(--primary);
        }

        .search-box:hover .search-input {
            border-color: rgba(230, 184, 0, 0.5);
            background: rgba(255, 255, 255, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            color: var(--muted-foreground);
            transition: color 0.3s ease;
        }

        .search-input {
            width: 100%;
            height: 40px;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0 1rem 0 2.5rem;
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            color: var(--muted-foreground);
            transition: all 0.3s ease;
        }
        

        .header-buttons {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: var(--font-body);
        }

        .btn-ghost {
            background: transparent;
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        .btn-ghost:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .btn-primary {
            background: linear-gradient(to right, var(--primary), #f97316);
            color: black;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .btn-primary:hover {
            box-shadow: 0 0 20px rgba(230, 184, 0, 0.4);
            transform: scale(1.05);
        }

        .btn-lg {
            height: 64px;
            padding: 0 2.5rem;
            font-size: 1.25rem;
            border-radius: 0.75rem;
        }

        .btn-outline-lg {
            height: 64px;
            padding: 0 2.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            border-radius: 0.75rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .btn-outline-lg:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(230, 184, 0, 0.5);
        }

        /* SVG Icons */
        .icon {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .icon-lg {
            width: 24px;
            height: 24px;
        }

        .icon-xl {
            width: 32px;
            height: 32px;
        }

        /* Sidebar */
        .sidebar {
            display: none;
            flex-direction: column;
            position: fixed;
            left: 0;
            top: 80px;
            bottom: 0;
            background: rgba(9, 9, 11, 0.5);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            overflow: visible; /* Разрешаем кнопке выходить за пределы */
            z-index: 40;
            transition: width 0.3s ease;
            width: 80px;
        }

        .sidebar.open {
            width: 256px;
        }

        @media (min-width: 1024px) {
            .sidebar {
                display: flex;
            }
        }

        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 1rem;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: left;
            width: 100%;
            background: transparent;
            border: none;
            font-family: var(--font-body);
        }

        .sidebar:not(.open) .nav-item {
            justify-content: center;
        }

        .nav-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: scale(1.02);
        }

        .nav-item .nav-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            transition: filter 0.2s ease;
        }

        .nav-item:hover .nav-icon {
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
        }

        .nav-item .nav-label {
            font-weight: 600;
            color: var(--muted-foreground);
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .sidebar:not(.open) .nav-label {
            display: none;
        }

        .nav-item:hover .nav-label {
            color: white;
        }

        .sidebar-toggle {
            position: absolute;
            right: -12px;
            top: 24px;
            background: var(--card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            padding: 6px;
            cursor: pointer;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .sidebar-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .sidebar-toggle svg {
            width: 16px;
            height: 16px;
            color: var(--muted-foreground);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: flex;
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background: var(--primary);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            z-index: 50;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(230, 184, 0, 0.2);
        }

        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
            color: black;
        }

        @media (min-width: 1024px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        /* Mobile Sidebar Overlay */
        .sidebar-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 45;
        }

        .sidebar-overlay.active {
            display: block;
        }

        .mobile-sidebar {
            display: none;
            position: fixed;
            left: 0;
            top: 0;
            bottom: 0;
            width: 300px;
            background: var(--background);
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 50;
            padding-top: 40px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-sidebar.active {
            transform: translateX(0);
        }

        @media (max-width: 1023px) {
            .mobile-sidebar {
                display: block;
            }
        }

        /* Main Content */
        .main-content {
            flex: 1;
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Картинка заполняет блок */
    object-position: center; /* Центрируем важное содержимое */
    opacity: 1;
        }       

        .hero-content {
            position: relative;
            z-index: 20;
            text-align: center;
            padding: 0 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            margin-bottom: 1rem;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 0.1em;
            font-size: 0.875rem;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: clamp(3rem, 10vw, 9rem);
            font-weight: 900;
            font-family: var(--font-display);
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -0.05em;
            line-height: 1;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }

        .hero-title-gold {
            background: linear-gradient(to bottom, var(--primary), #ea580c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 30px rgba(230, 184, 0, 0.5));
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #d1d5db;
            max-width: 42rem;
            margin: 0 auto 2.5rem;
            font-weight: 300;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.5rem;
            }
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        .btn-hero-primary {
            height: 64px;
            padding: 0 2.5rem;
            font-size: 1.25rem;
            font-weight: 700;
            border-radius: 0.75rem;
            background: var(--primary);
            color: black;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 30px rgba(230, 184, 0, 0.4);
        }

        .btn-hero-primary:hover {
            background: rgba(230, 184, 0, 0.9);
            transform: scale(1.05);
        }

        /* Payment Methods */
        .payment-section {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            padding: 2rem 0;
        }

        .payment-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .payment-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem 4rem;
            opacity: 0.6;
            filter: grayscale(100%);
            transition: all 0.5s ease;
        }

        .payment-logos:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .payment-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .payment-item svg {
            width: 32px;
            height: 32px;
        }

        .payment-item span {
            font-size: 1.25rem;
            font-weight: 700;
        }

        /* Winners Section */
        .winners-section {
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .winners-header {
            max-width: 1400px;
            margin: 0 auto 2rem;
            padding: 0 1rem;
            text-align: center;
        }

        .winners-title {
            font-size: 1.875rem;
            font-weight: 700;
            font-family: var(--font-display);
            margin-bottom: 0.5rem;
        }

        .winners-title .gold {
            color: var(--primary);
        }

        .winners-subtitle {
            color: var(--muted-foreground);
        }

        .winners-track {
            display: flex;
            overflow: hidden;
            position: relative;
        }

        .winners-track::before,
        .winners-track::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 10;
            pointer-events: none;
        }

        .winners-track::before {
            left: 0;
            background: linear-gradient(to right, var(--background), transparent);
        }

        .winners-track::after {
            right: 0;
            background: linear-gradient(to left, var(--background), transparent);
        }

        .winners-scroll {
            display: flex;
            gap: 1rem;
            padding: 0 1rem;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .winner-card {
            flex-shrink: 0;
            width: 256px;
            background: var(--card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 0.75rem;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            transition: all 0.3s ease;
        }

        .winner-card:hover {
            border-color: rgba(230, 184, 0, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        .winner-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .winner-game {
            font-size: 0.875rem;
            font-weight: 700;
            color: #9ca3af;
        }

        .winner-multiplier {
            font-size: 0.75rem;
            background: rgba(34, 197, 94, 0.2);
            color: #4ade80;
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            font-family: monospace;
        }

        .winner-card-body {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .winner-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(234, 179, 8, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .winner-icon svg {
            width: 20px;
            height: 20px;
            color: #eab308;
        }

        .winner-info .amount {
            font-size: 1.125rem;
            font-weight: 700;
            color: white;
            transition: color 0.3s ease;
        }

        .winner-card:hover .winner-info .amount {
            color: var(--primary);
        }

        .winner-info .user {
            font-size: 0.75rem;
            color: var(--muted-foreground);
        }

        /* Categories Section */
        .categories-section {
            padding: 2rem 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .categories-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .category-row {
            margin-bottom: 2rem;
        }

        .category-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .category-title {
            font-size: 1rem;
            font-weight: 600;
            font-family: var(--font-body);
            color: white;
        }

        .category-view-all {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .category-view-all:hover {
            color: var(--primary);
        }

        .category-view-all svg {
            width: 16px;
            height: 16px;
        }

        .games-scroll-container {
            position: relative;
        }

        .games-scroll {
            display: flex;
            gap: 0.75rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 0.5rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .games-scroll::-webkit-scrollbar {
            display: none;
        }

        .game-card {
            flex-shrink: 0;
            width: 140px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .game-card:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .game-card-image {
            width: 100%;
            aspect-ratio: 3/4;
            border-radius: 0.75rem;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .game-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .game-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
            display: flex;
            align-items: flex-end;
            padding: 0.75rem;
        }

        .game-card-name {
            font-size: 0.75rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .game-card {
                width: 160px;
            }
        }

        @media (min-width: 1024px) {
            .game-card {
                width: 150px;
            }
        }

        /* SEO Content */
        .content-section {
            padding: 4rem 0;
        }

        .content-container {
            max-width: 56rem;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .content-section h2 {
            font-size: 1.5rem;
            color: var(--primary);
            font-family: var(--font-display);
            margin-bottom: 1rem;
        }

        .content-section h3 {
            font-size: 1.25rem;
            margin: 2rem 0 1rem;
        }

        .content-section p {
            color: #9ca3af;
            margin-bottom: 1rem;
            font-size: 1.125rem;
            line-height: 1.75;
        }

        .content-section ul {
            color: #9ca3af;
            margin: 1rem 0 1rem 1.5rem;
            font-size: 1.125rem;
        }

        .content-section li {
            margin-bottom: 0.5rem;
        }

        .content-quote {
            background: linear-gradient(to right, rgba(230, 184, 0, 0.2), transparent);
            padding: 1.5rem;
            border-radius: 0.75rem;
            border-left: 4px solid var(--primary);
            margin: 2rem 0;
        }

        .content-quote p {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin: 0;
        }

        .content-quote .author {
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 400;
            margin-top: 0.5rem;
            display: block;
        }

        /* Bonus Banner */
        .bonus-section {
            padding: 3rem 0;
        }

        .bonus-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .bonus-card {
            position: relative;
            border-radius: 1.5rem;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            min-height: 300px; /* Укажите примерную высоту вашего баннера */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bonus-card:hover {
            transform: scale(1.02);
        }

        .bonus-card:hover .bonus-bg-img {
            transform: scale(1.05);
        }

        .bonus-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, #581c87, #1e3a8a);
        }

        .bonus-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Картинка заполнит весь блок без искажений */
            opacity: 1; /* Полная яркость */
            transition: transform 0.7s ease;
        }

        .bonus-content {
            position: relative;
            z-index: 10;
            padding: 3rem 2.5rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .bonus-content {
                padding: 5rem 2.5rem;
            }
        }

        .bonus-title {
            font-size: clamp(1.5rem, 5vw, 3rem);
            font-weight: 900;
            font-family: var(--font-display);
            color: white;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        .bonus-amount {
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 900;
            font-family: var(--font-display);
            background: linear-gradient(to right, #facc15, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .bonus-btn {
            background: white;
            color: black;
            font-weight: 700;
            font-size: 1.125rem;
            height: 56px;
            padding: 0 2rem;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .bonus-btn:hover {
            background: #f3f4f6;
            transform: scale(1.05);
        }

        /* FAQ & Reviews */
        .faq-reviews-section {
            padding: 4rem 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .faq-reviews-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .faq-reviews-grid {
            display: grid;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .faq-reviews-grid {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
            }
        }

        .section-title {
            font-size: 1.875rem;
            font-weight: 700;
            font-family: var(--font-display);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-title svg {
            width: 32px;
            height: 32px;
            color: var(--primary);
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            background: rgba(24, 24, 27, 0.5);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            padding: 1rem 1.25rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            font-family: var(--font-body);
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--muted-foreground);
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-question svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 1.25rem 1rem;
            color: #9ca3af;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Reviews */
        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-height: 400px;
            overflow-y: auto;
            padding-right: 0.5rem;
            margin-bottom: 2rem;
        }

        .review-card {
            background: var(--card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 0.75rem;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }

        .review-name {
            font-weight: 700;
            color: white;
        }

        .review-date {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .review-date svg {
            width: 12px;
            height: 12px;
        }

        .review-text {
            color: #9ca3af;
            font-size: 0.875rem;
            line-height: 1.6;
        }

        /* Review Form */
        .review-form-card {
            background: rgba(24, 24, 27, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 1rem;
            padding: 1.5rem 2rem;
            backdrop-filter: blur(8px);
        }

        .review-form-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .review-form-icon {
            padding: 0.75rem;
            border-radius: 0.5rem;
            background: rgba(230, 184, 0, 0.1);
        }

        .review-form-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
        }

        .review-form-title {
            font-size: 1.25rem;
            font-weight: 700;
            font-family: var(--font-display);
            color: white;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #d1d5db;
            font-weight: 500;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 0.75rem;
            color: white;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #4b5563;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: rgba(230, 184, 0, 0.5);
        }

        .form-input {
            height: 48px;
        }

        .form-textarea {
            min-height: 120px;
            resize: none;
        }

        .form-submit {
            width: 100%;
            height: 48px;
            background: var(--primary);
            color: black;
            font-weight: 700;
            font-size: 1.125rem;
            border: none;
            border-radius: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: rgba(230, 184, 0, 0.9);
            box-shadow: 0 0 20px rgba(230, 184, 0, 0.3);
        }

        /* Social Share */
        .share-section {
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .share-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        .share-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--muted-foreground);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .share-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .share-btn svg {
            width: 24px;
            height: 24px;
        }

        .share-btn.facebook { background: #1877F2; }
        .share-btn.twitter { background: #1DA1F2; }
        .share-btn.telegram { background: #229ED9; }

        /* Footer */
        .footer {
            background: black;
            padding: 3rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-top {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .footer-top {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8; 
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo .logo-icon img, 
.footer-logo .logo-text img {
    display: block;
}

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            font-size: 0.875rem;
            color: #9ca3af;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-disclaimer {
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
            font-size: 0.75rem;
            color: #4b5563;
            line-height: 1.8;
        }

        .footer-badges {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem 0;
            filter: grayscale(100%);
            opacity: 0.3;
        }

        .footer-badge {
            padding: 0.25rem 0.5rem;
            border: 1px solid #4b5563;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            color: #4b5563;
        }

        .footer-copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.75rem;
            color: #4b5563;
        }

        /* Dynamic Popup Styles */
.js-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none; /* Чтобы не мешал кликам пока скрыт */
    transition: all 0.4s ease;
}

.js-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.js-popup-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(234, 179, 8, 0.15);
}

.js-popup-overlay.active .js-popup-card {
    transform: translateY(0) scale(1);
}

.js-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: color 0.2s;
    padding: 5px;
}

.js-popup-close:hover {
    color: white;
}

.js-popup-icon {
    width: 64px;
    height: 64px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.js-popup-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
    font-family: var(--font-display);
}

.js-popup-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.js-popup-bonus {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    background: linear-gradient(to right, var(--primary), #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.js-popup-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    background: var(--primary);
    color: black;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.js-popup-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(230, 184, 0, 0.4);
}