        :root {
            --primary: #ffcc00;
            --secondary: #ff9933;
            --accent: #00cc66;
            --dark: #0f1a2e;
            --dark-light: #1c2a3a;
            --text: #e0e0e0;
            --text-light: #bbb;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        img {
            max-width: 100%;
            height: auto;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1c2a3a, #0f1a2e);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }
        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .logo:hover {
            color: #ff66cc;
            text-shadow: 0 0 12px rgba(255, 102, 204, 0.7);
        }
        .hamburger {
            display: none;
            font-size: 24px;
            color: #ddd;
            cursor: pointer;
            z-index: 1001;
            position: fixed;
            right: 20px;
            top: 20px;
            background: rgba(28, 42, 58, 0.9);
            padding: 5px;
            border-radius: 4px;
        }
        nav {
            display: flex;
            align-items: center;
        }
        nav a {
            margin: 0 12px;
            color: #ddd;
            font-size: 14px;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        nav a:hover {
            color: var(--primary);
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .provider-dropdown-container {
            position: relative;
            margin: 0 10px;
        }
        .provider-button {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            padding: 8px 15px;
            color: #1c2a3a;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .provider-button:hover {
            background: linear-gradient(45deg, #ffdd33, #ffaa66);
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(255, 204, 0, 0.5);
        }
        .provider-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(28, 42, 58, 0.95);
            border-radius: 6px;
            padding: 10px;
            min-width: 250px;
            max-height: 400px;
            overflow-y: auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            z-index: 1001;
        }
        .provider-dropdown.active {
            display: block;
        }
        .provider-item {
            display: flex;
            align-items: center;
            padding: 8px 12px;
            color: #bbb;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        .provider-item:hover {
            background: rgba(255, 204, 0, 0.1);
            color: var(--primary);
        }
        .show-all {
            display: block;
            text-align: center;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: #1c2a3a;
            padding: 8px;
            border-radius: 6px;
            font-weight: 700;
            margin-top: 10px;
            transition: all 0.3s ease;
        }
        .show-all:hover {
            background: linear-gradient(45deg, #ffdd33, #ffaa66);
        }
        .telegram-button {
            background: linear-gradient(45deg, #0088cc, #00cc88);
            border: 2px solid #33ccff;
            padding: 6px 12px;
            color: var(--dark-light);
            border-radius: 6px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            margin: 0 12px;
            box-shadow: 0 3px 8px rgba(0, 136, 204, 0.4);
            transition: all 0.3s ease;
        }
        .telegram-button:hover {
            background: linear-gradient(45deg, #33ccff, #00aa66);
            border-color: #66ddff;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0, 136, 204, 0.5);
        }

        /* SEO Section Improvements */
        .seo-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 25px 0;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: rgba(255, 204, 0, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 204, 0, 0.1);
        }
        .feature-icon {
            font-size: 32px;
            flex-shrink: 0;
        }
        .feature-content h3 {
            color: var(--primary);
            margin: 0 0 10px 0;
            font-size: 20px;
        }
        .advantages-table {
            margin: 30px 0;
            overflow-x: auto;
        }
        .advantages-table table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(29, 53, 87, 0.8);
            border-radius: 8px;
            overflow: hidden;
        }
        .advantages-table th {
            background: rgba(255, 204, 0, 0.15);
            padding: 15px;
            text-align: left;
            color: var(--primary);
            font-weight: 700;
        }
        .advantages-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .strategy-block {
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(29, 53, 87, 0.8));
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            border: 1px solid rgba(42, 157, 143, 0.2);
        }
        .strategy-block h3 {
            color: #2a9d8f;
            margin-bottom: 15px;
        }
        .strategy-content ul {
            list-style: none;
            padding-left: 0;
        }
        .strategy-content li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
        }
        .strategy-content li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #2a9d8f;
            font-weight: bold;
        }
        .device-compatibility {
            background: rgba(168, 218, 220, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 4px solid #a8dadc;
        }

        /* Main Content Styles */
        .content-wrapper {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
        }
        .main-content {
            flex: 2;
        }
        .sidebar {
            flex: 1;
            min-width: 300px;
        }

        /* Slot Header Styles */
        .slot-header {
            background: linear-gradient(135deg, var(--dark-light), var(--dark));
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border: 2px solid rgba(255, 204, 0, 0.3);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .slot-image {
            border: 3px solid rgba(255, 204, 0, 0.4);
            border-radius: 8px;
            overflow: hidden;
            width: 220px;
            height: 120px;
        }
        .slot-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .slot-image img:hover {
            transform: scale(1.1);
        }
        .slot-title {
            flex: 1;
        }
        .slot-title h1 {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
        }
        .slot-rating {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 204, 0, 0.1);
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 700;
            color: #ffcc00;
            font-size: 16px;
            border: 1px solid rgba(255, 204, 0, 0.3);
        }
        .slot-rating::before {
            content: '★';
            color: #ffcc00;
        }
        .slot-info {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        .info-label {
            color: var(--primary);
            font-weight: 600;
        }
        .info-value {
            color: var(--text);
        }

        /* Demo Section Styles */
        .demo-section {
            background: var(--dark-light);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 204, 0, 0.2);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .demo-section h2 {
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 800;
        }
        .demo-container {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .demo-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 26, 46, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }
        .demo-overlay img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            border-radius: 0;
            margin-bottom: 0;
            box-shadow: none;
        }
        .play-demo-btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border: none;
            padding: 15px 30px;
            color: #1c2a3a;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .play-demo-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
        }
        .demo-iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: none;
        }
        .fullscreen-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            z-index: 11;
            display: none;
        }
        

        /* Content Section Styles */
        .content-section {
            background: var(--dark-light);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 204, 0, 0.2);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .content-section h2 {
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            padding-bottom: 10px;
        }
        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 3px;
        }
        .content-section p {
            color: var(--text);
            margin-bottom: 15px;
            line-height: 1.7;
        }
        .content-section ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        .content-section li {
            margin-bottom: 10px;
            color: var(--text);
            position: relative;
            padding-left: 25px;
        }
        .content-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 20px;
            line-height: 1;
        }

        /* Symbols Grid Styles */
        .symbols-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        .symbol-item {
            text-align: center;
            background: rgba(255, 204, 0, 0.05);
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 204, 0, 0.1);
        }
        .symbol-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 204, 0, 0.1);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
        }
        .symbol-item img {
            width: 100%;
            height: auto;
            max-width: 120px;
            margin: 0 auto 10px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .symbol-item:hover img {
            transform: scale(1.05);
        }
        .symbol-name {
            color: #fff;
            font-weight: 600;
            margin-top: 10px;
            font-size: 15px;
        }
        .symbol-desc {
            color: var(--text-light);
            font-size: 13px;
            margin-top: 5px;
        }

        /* Gallery Styles */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .gallery-item {
            text-align: center;
            background: rgba(255, 204, 0, 0.05);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid rgba(255, 204, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 204, 0, 0.1);
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: transform 0.3s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .gallery-desc {
            color: var(--text-light);
            font-size: 14px;
            font-style: italic;
        }

        /* Modal Gallery Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
        }
        .modal-content {
            position: relative;
            margin: auto;
            padding: 20px;
            width: 90%;
            max-width: 800px;
            top: 50%;
            transform: translateY(-50%);
            text-align: center;
        }
        .modal-img {
            width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }
        .modal-desc {
            color: white;
            font-size: 18px;
            margin-top: 15px;
            font-style: italic;
        }
        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .close:hover {
            color: var(--primary);
        }
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 30px;
            padding: 15px;
            cursor: pointer;
            border-radius: 50%;
            transition: background 0.3s ease;
        }
        .prev:hover, .next:hover {
            background: rgba(255, 204, 0, 0.7);
        }
        .prev {
            left: 20px;
        }
        .next {
            right: 20px;
        }

        /* Comparison Table Styles */
        .comparison-table {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: 10px;
            background: rgba(255, 204, 0, 0.05);
            border: 1px solid rgba(255, 204, 0, 0.1);
            padding: 5px;
        }
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }
        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 204, 0, 0.2);
            color: var(--text);
        }
        .comparison-table th {
            background: rgba(255, 204, 0, 0.15);
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
        .comparison-table tr:hover td {
            background: rgba(255, 204, 0, 0.05);
        }
        .comparison-table td:first-child {
            font-weight: 600;
            color: var(--text-light);
            text-align: left;
        }

        /* FAQ Styles */
        .faq-item {
            margin-bottom: 15px;
            background: rgba(255, 204, 0, 0.05);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 204, 0, 0.1);
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            background: rgba(255, 204, 0, 0.1);
        }
        .faq-question {
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }
        .faq-answer {
            color: var(--text-light);
            margin-top: 10px;
            padding-left: 25px;
            display: none;
            animation: fadeIn 0.3s ease;
        }
        .faq-question::before {
            content: '❓';
            font-size: 18px;
        }
        .faq-item.active .faq-question::before {
            content: '🔽';
        }

        /* Pros & Cons Styles */
        .pros-cons {
            display: flex;
            gap: 20px;
            margin: 25px 0;
        }
        .pros, .cons {
            flex: 1;
            padding: 25px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }
        .pros {
            background: rgba(0, 204, 102, 0.05);
            border: 1px solid rgba(0, 204, 102, 0.2);
        }
        .cons {
            background: rgba(255, 102, 102, 0.05);
            border: 1px solid rgba(255, 102, 102, 0.2);
        }
        .pros h3, .cons h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .pros h3 {
            color: var(--accent);
        }
        .pros h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        .cons h3 {
            color: #ff6666;
        }
        .cons h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #ff6666;
            border-radius: 3px;
        }
        .pros ul, .cons ul {
            list-style-type: none;
            padding-left: 0;
        }
        .pros li {
            color: var(--text);
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
            font-size: 15px;
        }
        .pros li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
        .cons li {
            color: var(--text);
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
            font-size: 15px;
        }
        .cons li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #ff6666;
            font-weight: 700;
        }

        /* Sidebar Styles */
        .sidebar-block {
            background: var(--dark-light);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 204, 0, 0.2);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .sidebar-block h3 {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            padding-bottom: 10px;
        }
        .sidebar-block h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), transparent);
            border-radius: 3px;
        }
        
        .similar-slots {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .similar-slot {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 10px;
            border-radius: 8px;
            background: rgba(0, 0, 0, 0.2);
        }
        .similar-slot:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: translateX(5px);
        }
        .similar-slot img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            object-fit: contain;
            border: 2px solid rgba(255, 204, 0, 0.3);
            background: #1c2a3a;
            padding: 5px;
        }
        .similar-slot span {
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .similar-slot:hover span {
            color: var(--primary);
        }

        /* Footer Styles */
        .modern-footer {
            background: linear-gradient(135deg, #1c2a3a, #0f1a2e);
            padding: 40px 20px;
            margin-top: 50px;
            border-top: 3px solid rgba(255, 204, 0, 0.3);
        }
        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section {
            padding: 20px;
            background: rgba(28, 42, 58, 0.9);
            border-radius: 10px;
            border: 2px solid rgba(255, 204, 0, 0.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .footer-section h4 {
            color: var(--primary);
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 800;
        }
        .footer-links a, .footer-links p {
            display: block;
            color: #bbb;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 204, 0, 0.2);
            color: var(--text-light);
            font-size: 14px;
        }

        /* SEO Improvements */
        .seo-section {
            background: var(--dark-light);
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid rgba(255, 204, 0, 0.2);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }
        .seo-section h2 {
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 800;
        }
        .seo-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .keyword {
            background: rgba(255, 204, 0, 0.1);
            color: var(--primary);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .keyword:hover {
            background: rgba(255, 204, 0, 0.2);
            transform: translateY(-2px);
        }
        .seo-hidden {
            display: none;
        }

        /* Bonus Features Styles */
        .bonus-features-section {
            margin: 40px 0;
        }
        .bonus-feature {
            background: rgba(29, 53, 87, 0.8);
            padding: 25px;
            border-radius: 12px;
            margin: 20px 0;
            border: 1px solid rgba(42, 157, 143, 0.2);
        }
        .feature-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .feature-icon {
            font-size: 32px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
        }
        .bonus-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        .bonus-option {
            background: rgba(255, 204, 0, 0.1);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 204, 0, 0.2);
        }
        .option-badge {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 12px;
            margin-bottom: 10px;
            display: inline-block;
        }

        .close-demo-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 0, 0, 0.7);
            border: none;
            color: white;
            padding: 8px 12px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 11;
            display: none;
            font-size: 18px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .content-wrapper {
                flex-direction: column;
            }
            .sidebar {
                margin-top: 30px;
            }
            .pros-cons {
                flex-direction: column;
            }
        }
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                padding: 15px;
            }
            .logo {
                margin-bottom: 15px;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                background: rgba(28, 42, 58, 0.95);
                padding: 15px;
                border-radius: 8px;
                margin-top: 15px;
            }
            nav.active {
                display: flex;
            }
            nav a {
                margin: 8px 0;
                padding: 8px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .hamburger {
                display: block;
                position: fixed;
                right: 20px;
                top: 20px;
                background: rgba(28, 42, 58, 0.9);
                padding: 5px;
                border-radius: 4px;
            }
            .provider-dropdown-container {
                margin: 8px 0;
            }
            .provider-dropdown {
                position: static;
                width: 100%;
                margin-top: 10px;
            }
            .slot-header {
                flex-direction: column;
                text-align: center;
            }
            .slot-image {
                margin-bottom: 15px;
            }
            .symbols-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .demo-container {
                height: 300px;
            }
            .bonus-options {
                grid-template-columns: 1fr;
            }
            .feature-header {
                flex-direction: column;
                text-align: center;
            }
            .feature-icon {
                width: 40px;
                height: 40px;
                font-size: 24px;
            }
            .close-demo-btn {
                display: block;
            }
            .fullscreen-btn {
                top: 15px;
                right: 15px;
                left: auto;
            }
        }
        @media (max-width: 480px) {
            .slot-title h1 {
                font-size: 24px;
            }
            .demo-container {
                height: 250px;
            }
            .stat-item {
                flex: 1 1 100%;
            }
            .play-demo-btn {
                padding: 12px 25px;
                font-size: 16px;
            }
        }

        /* Scrollbar Styles */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }
        .demo-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.demo-overlay-content {
    position: absolute;
    z-index: 11;
    text-align: center;
}

.play-demo-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    padding: 15px 30px;
    color: #1c2a3a;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Скрываем клон в ПК версии */
.mobile-game-info-clone {
    display: none;
}

/* Показываем клон только в мобильной версии */
@media (max-width: 768px) {
    .mobile-game-info-clone {
        display: block !important;
        margin-bottom: 30px;
    }
    
    /* Скрываем оригинальный блок в sidebar в мобильной версии */
    .sidebar .sidebar-block:first-child {
        display: none;
    }
}

/* Новый герой-секция */
.hero-section {
    margin-bottom: 40px;
}

/* Демо-секция с заголовком */
.demo-section {
    margin-bottom: 25px;
}

.demo-overlay-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    text-align: center;
}

/* Компактная информация */
.game-info-compact {
    background: rgba(26, 32, 44, 0.9);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 204, 0, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 204, 0, 0.15);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ffcc00, #ff6b00);
    border-radius: 10px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-value {
    color: #ffcc00;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.info-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating-item {
    background: linear-gradient(45deg, rgba(255, 204, 0, 0.2), rgba(255, 107, 0, 0.2));
    border: 2px solid rgba(255, 204, 0, 0.4);
}

.rating-item .info-icon {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
}

/* Мобильная версия */
@media (max-width: 768px) {
    .demo-overlay-content h1 {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .info-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .info-content {
        gap: 2px;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    .info-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: row;
        text-align: left;
    }
}
/* Выравнивание демо-секции с сайдбаром */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 0px;
}

.demo-section {
    margin-bottom: 0;
}

@media (min-width: 1025px) {
    .content-wrapper {
        align-items: flex-start;
    }
    
    .main-content {
        display: flex;
        flex-direction: column;
    }
    
    .hero-section {
        order: -1; /* Перемещаем в самый верх */
    }
}
.game-info-compact {
    margin: 30px 0; /* 30px сверху и снизу, 0 по бокам */
    background: rgba(26, 32, 44, 0.9);
    border-radius: 20px;
    padding: 25px;
    border: 2px solid rgba(255, 204, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}



/* Исправление для метки "Провайдер" */
.info-content .info-label {
    font-size: 0.7rem;
    word-break: break-word;
    line-height: 1.2;
}

/* Уменьшаем отступы для компактности */
.info-item {
    padding: 8px 10px;
    gap: 6px;
}

/* Уменьшаем размер иконок в компактном блоке */
.game-info-compact .info-icon {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
}

/* Стили для вынесенных подсказок */
.tooltip-helper {
    position: fixed;
    z-index: 10001;
    background: linear-gradient(135deg, var(--dark-light), #2a3441);
    color: var(--text);
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary);
    font-size: 13px;
    line-height: 1.4;
    pointer-events: none;
    max-width: 200px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
}

.casino-list-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.casino-item-compact {
    display: block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 204, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.casino-item-compact:hover {
    background: rgba(255, 204, 0, 0.08);
    border-color: var(--primary);
    transform: translateX(3px);
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.casino-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.casino-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.casino-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.casino-details {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.casino-rating {
    font-size: 12px;
    color: #ffcc00;
    font-weight: 600;
}

.casino-bonus {
    font-size: 11px;
    color: #00cc66;
    font-weight: 700;
    background: rgba(0, 204, 102, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .casino-item-compact {
        padding: 10px;
    }
    
    .casino-logo {
        width: 35px;
        height: 35px;
    }
    
    .casino-name {
        font-size: 13px;
    }
    
    .casino-rating {
        font-size: 11px;
    }
    
    .casino-bonus {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .casino-details {
        gap: 8px;
    }
}
.casino-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    /* Убираем белый фон */
    background: transparent;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

/* Скрываем дублирующий блок похожих слотов в мобильной версии */
@media (max-width: 768px) {
    .mobile-game-info-clone {
        display: none !important;
    }
    
    /* Показываем блок казино вместо него */
    .mobile-casino-block {
        display: block !important;
        margin: 20px 0;
    }
    
    /* Скрываем оригинальный блок казино в сайдбаре */
    .sidebar .sidebar-block:nth-child(2) {
        display: none;
    }
}

/* Подсказки для казино (только PC) */
@media (min-width: 769px) {
    .casino-item-compact {
        position: relative;
    }
    
    .casino-item-compact::before {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: linear-gradient(135deg, #1c2a3a, #2a3441);
        color: var(--text);
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 13px;
        line-height: 1.4;
        width: 250px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border: 1px solid var(--primary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }
    
    .casino-item-compact:hover::before {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* Скрываем подсказки на мобильных */
@media (max-width: 768px) {
    .casino-item-compact::before {
        display: none !important;
    }
}

/* Подсказки для похожих слотов (только PC) */
@media (min-width: 769px) {
    .similar-slot {
        position: relative;
    }
    
    .similar-slot::before {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: linear-gradient(135deg, #1c2a3a, #2a3441);
        color: var(--text);
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 13px;
        line-height: 1.4;
        width: 250px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border: 1px solid var(--primary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }
    
    .similar-slot:hover::before {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* Скрываем подсказки на мобильных */
@media (max-width: 768px) {
    .similar-slot::before {
        display: none !important;
    }
}

/* Центрирование заголовка демо-секции */
.demo-section h2.demo-title-center {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    padding: 0 20px;
    position: relative;
}

.demo-section h2.demo-title-center::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .demo-section h2.demo-title-center {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .demo-section h2.demo-title-center {
        font-size: 22px;
        padding: 0 15px;
    }
    
    .demo-section h2.demo-title-center::after {
        width: 60px;
        height: 3px;
    }
}

/* Стиль для предупреждения над плеером */
.demo-warning-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.15), rgba(255, 102, 0, 0.1));
    border: 2px solid rgba(255, 153, 0, 0.4);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 0 auto 20px;
    max-width: 600px;
    text-align: center;
}

.warning-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.warning-text {
    font-size: 14px;
    color: #ff9900;
    font-weight: 500;
    line-height: 1.4;
}

.warning-text strong {
    color: #ff6600;
    font-weight: 700;
}

/* Адаптивность */
@media (max-width: 768px) {
    .demo-warning-box {
        flex-direction: column;
        gap: 8px;
        padding: 12px 15px;
        margin: 0 auto 15px;
    }
    
    .warning-icon {
        font-size: 20px;
    }
    
    .warning-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .demo-warning-box {
        padding: 10px 12px;
        margin: 0 auto 12px;
    }
    
    .warning-text {
        font-size: 11px;
    }
}
/* Контейнер заголовка с предупреждением */
.demo-title-with-warning {
    text-align: center;
    margin-bottom: 25px;
}

.demo-title-with-warning h2 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

/* Предупреждение в заголовке */
.title-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ff9900;
    background: rgba(255, 153, 0, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 153, 0, 0.3);
    font-weight: 500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .demo-title-with-warning h2 {
        font-size: 26px;
    }
    
    .title-warning {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .demo-title-with-warning h2 {
        font-size: 22px;
    }
    
    .title-warning {
        font-size: 11px;
        padding: 4px 8px;
        border-radius: 15px;
    }
}

/* Для твоего текущего варианта */
.demo-section {
    text-align: center;
}

.title-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ff9900;
    background: rgba(255, 153, 0, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 153, 0, 0.3);
    font-weight: 500;
    margin-top: 15px;
    /* Центрирование */
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

/* Стили для таблицы выплат */
.comparison-table {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.comparison-table th {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #1a1a2e;
    padding: 12px 15px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #ddd;
}

.comparison-table td {
    padding: 10px 15px;
    text-align: center;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-table tr:hover td {
    background-color: #fff8e1;
}

.comparison-table td:first-child {
    font-weight: 600;
    text-align: left;
    background-color: #feffff;
}

/* Адаптивность для таблицы */
@media (max-width: 768px) {
    .comparison-table {
        margin: 15px -15px;
        border-radius: 0;
    }
    
    .comparison-table table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }
}

