        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #FFD700;
            --dark-bg: #0A0E27;
            --card-bg: rgba(255, 255, 255, 0.05);
            --text-light: #E8E8E8;
            --text-dark: #1A1A1A;
            --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
            --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0066B3 100%);
            --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            --gradient-hero: linear-gradient(135deg, rgba(0, 78, 137, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
            --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.4);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-light);
            background: var(--dark-bg);
            overflow-x: hidden;
        }
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
            border-bottom: 2px solid rgba(255, 107, 53, 0.3);
        }
        .header-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            gap: 20px;
        }
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        
        .logo img {
            max-height: 50px;
            width: auto;
        }
        
        .accordion-body {
            padding: 0 !important;
        }
        .nav {
            display: flex;
            align-items: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 32px;
            margin: 0;
            padding: 0;
            padding-left: 0 !important;
            margin-bottom: 0 !important;
            flex: none !important;
        }
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
        .nav-link:hover {
            color: var(--accent-color);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        
        .hamburger-line {
            width: 28px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .cta-button {
            padding: 14px 32px;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
            border: none;
            white-space: nowrap;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
            color: white;
        }

        .hero {
            background: var(--gradient-hero);
            padding: 120px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #FFD700 0%, #FF6B35 50%, #FFFFFF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            text-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
        }

        .hero-description {
            font-size: 20px;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
        }

        .btn {
            padding: 16px 48px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            min-height: 44px;
            min-width: 44px;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 40px rgba(255, 107, 53, 0.7);
            color: white;
        }

        .btn-secondary {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: 0 0 20px rgba(0, 78, 137, 0.4);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(0, 78, 137, 0.6);
            color: white;
        }

        .btn-large {
            font-size: 20px;
            padding: 20px 60px;
        }

        section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 30px;
            text-align: center;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .section-intro {
            font-size: 20px;
            line-height: 1.8;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px;
            color: rgba(255, 255, 255, 0.85);
        }

        .overview-section {
            background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 78, 137, 0.1) 100%);
        }

        .table-wrapper {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
        }

        .info-table,
        .payment-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
        }

        .info-table th,
        .info-table td,
        .payment-table th,
        .payment-table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
        }

        .info-table th,
        .payment-table th {
            font-weight: 700;
            background: rgba(255, 107, 53, 0.1);
            color: var(--accent-color);
        }

        .info-table tbody tr:hover,
        .payment-table tbody tr:hover {
            background: rgba(255, 107, 53, 0.05);
        }

        .overview-text {
            font-size: 18px;
            line-height: 1.8;
            max-width: 1000px;
            margin: 40px auto 0;
            text-align: center;
            color: rgba(255, 255, 255, 0.85);
        }

        .login-section {
            background: var(--dark-bg);
        }

        .login-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .method-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
        }

        .method-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
            border-color: var(--primary-color);
        }

        .method-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .method-description {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        .troubleshooting-list {
            list-style: none;
            padding: 0;
            margin-top: 20px;
        }

        .troubleshooting-list li {
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
        }

        .troubleshooting-list li:last-child {
            border-bottom: none;
        }

        .troubleshooting-list strong {
            color: var(--accent-color);
            font-weight: 700;
        }

        .security-note {
            font-size: 18px;
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin: 40px auto;
            padding: 30px;
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--accent-color);
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.9);
        }

        .mobile-app-section {
            background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 78, 137, 0.15) 100%);
        }

        .app-features {
            display: grid;
            gap: 60px;
            margin: 60px 0;
        }

        .feature-block {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 50px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .feature-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--accent-color);
        }

        .feature-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 16px;
            margin: 30px 0;
            box-shadow: var(--shadow-md);
            display: block;
        }

        .feature-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.85);
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .features-list li {
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .features-list strong {
            color: var(--accent-color);
            font-weight: 700;
        }

        .games-section {
            background: var(--dark-bg);
        }

        .games-categories {
            display: grid;
            gap: 60px;
            margin: 60px 0;
        }

        .category-block {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 50px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .category-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--accent-color);
        }

        .category-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
        }

        .category-image {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 30px 0;
            box-shadow: var(--shadow-md);
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .game-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
            border-color: var(--primary-color);
        }

        .game-icon {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
        }

        .game-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--accent-color);
        }

        .game-description {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.75);
        }

        .category-note {
            font-size: 16px;
            line-height: 1.7;
            margin-top: 30px;
            padding: 20px;
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--accent-color);
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.85);
        }

        .bonuses-section {
            background: linear-gradient(180deg, rgba(0, 78, 137, 0.1) 0%, var(--dark-bg) 100%);
        }

        .bonus-blocks {
            display: grid;
            gap: 40px;
            margin: 60px 0;
        }

        .bonus-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 50px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .highlight-card {
            border: 2px solid var(--primary-color);
            box-shadow: 0 8px 40px rgba(255, 107, 53, 0.25);
        }

        .bonus-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--accent-color);
        }

        .bonus-image {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 30px 0;
            box-shadow: var(--shadow-md);
        }

        .bonus-intro {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.85);
        }

        .bonus-tiers,
        .promotions-list,
        .rg-tools-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .bonus-tiers li,
        .promotions-list li,
        .rg-tools-list li {
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
        }

        .bonus-tiers li:last-child,
        .promotions-list li:last-child,
        .rg-tools-list li:last-child {
            border-bottom: none;
        }

        .tier-item strong,
        .promotions-list strong {
            color: var(--accent-color);
            font-weight: 700;
        }

        .bonus-details,
        .bonus-description {
            font-size: 17px;
            line-height: 1.8;
            margin-top: 25px;
            color: rgba(255, 255, 255, 0.85);
        }

        .btn-bonus {
            margin-top: 30px;
        }

        .payment-section {
            background: var(--dark-bg);
        }

        .payment-info {
            font-size: 18px;
            line-height: 1.8;
            margin: 40px 0;
            text-align: center;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.85);
        }

        .crypto-section {
            margin: 60px 0;
            padding: 40px;
            background: rgba(255, 215, 0, 0.05);
            border-radius: 16px;
            border-left: 4px solid var(--accent-color);
        }

        .subsection-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .crypto-description {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        .security-section {
            background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 78, 137, 0.1) 100%);
        }

        .security-blocks {
            display: grid;
            gap: 40px;
            margin: 60px 0;
        }

        .security-block {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 50px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .security-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--accent-color);
        }

        .security-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.85);
        }

        .security-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .security-list li {
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
        }

        .security-list li:last-child {
            border-bottom: none;
        }

        .security-list strong {
            color: var(--accent-color);
            font-weight: 700;
        }

        .rg-note {
            font-size: 17px;
            line-height: 1.8;
            margin-top: 25px;
            padding: 25px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 12px;
            border-left: 4px solid var(--accent-color);
            color: rgba(255, 255, 255, 0.85);
        }

        .faq-section {
            background: var(--dark-bg);
        }

        .faq-list {
            max-width: 1000px;
            margin: 60px auto 40px;
        }

        .faq-item {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 25px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(255, 107, 53, 0.25);
            border-color: var(--primary-color);
        }

        .faq-question {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--accent-color);
            line-height: 1.4;
        }

        .faq-answer {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        .footer {
            background: rgba(10, 14, 39, 0.98);
            padding: 60px 0 30px;
            border-top: 2px solid rgba(255, 107, 53, 0.3);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .footer-nav-list {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-color);
        }

        .footer-disclaimer {
            text-align: center;
            max-width: 800px;
        }

        .disclaimer-text {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 15px;
        }

        .copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .header-wrapper {
                flex-wrap: wrap;
            }
            .nav {
                order: 3;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            .nav.nav-open {
                max-height: 500px;
            }
            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding-top: 20px;
            }
            .nav-item {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .nav-link {
                display: block;
                padding: 15px 0;
            }
            .cta-button {
                order: 2;
                width: 100%;
                text-align: center;
            }

            .hero {
                padding: 80px 0 60px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-description {
                font-size: 17px;
            }

            section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 36px;
            }

            .section-intro {
                font-size: 17px;
            }

            .login-methods,
            .games-grid {
                grid-template-columns: 1fr;
            }

            .method-card,
            .feature-block,
            .category-block,
            .bonus-card,
            .security-block {
                padding: 30px 20px;
            }

            .method-title,
            .feature-title,
            .category-title,
            .bonus-title,
            .security-title {
                font-size: 28px;
            }

            .btn-large {
                font-size: 18px;
                padding: 16px 40px;
            }

            .faq-question {
                font-size: 20px;
            }

            .footer-nav-list {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .table-wrapper {
                font-size: 14px;
            }

            .info-table th,
            .info-table td,
            .payment-table th,
            .payment-table td {
                padding: 12px 10px;
            }
        }

        @media (min-width: 769px) {
            .hamburger {
                display: none;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-title {
                font-size: 52px;
            }

            .section-title {
                font-size: 48px;
            }

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

        @media (min-width: 1441px) {
            .container {
                max-width: 1600px;
            }

            .hero-title {
                font-size: 72px;
            }

            .section-title {
                font-size: 64px;
            }
        }


@media (max-width: 768px) {
            .header-wrapper {
                flex-wrap: wrap;
            }

            .nav {
                order: 3;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nav.nav-open {
                max-height: 500px;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding-top: 20px;
            }

            .nav-item {
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-link {
                display: block;
                padding: 15px 0;
            }

            .hamburger {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }

            .cta-button {
                order: 2;
                width: 100%;
                text-align: center;
            }

            .hero {
                padding: 80px 0 60px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-description {
                font-size: 17px;
            }

            section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 36px;
            }

            .section-intro {
                font-size: 17px;
            }

            .login-methods,
            .games-grid {
                grid-template-columns: 1fr;
            }

            .method-card,
            .feature-block,
            .category-block,
            .bonus-card,
            .security-block {
                padding: 30px 20px;
            }

            .method-title,
            .feature-title,
            .category-title,
            .bonus-title,
            .security-title {
                font-size: 28px;
            }

            .btn-large {
                font-size: 18px;
                padding: 16px 40px;
            }

            .faq-question {
                font-size: 20px;
            }

            .footer-nav-list {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .table-wrapper {
                font-size: 14px;
            }

            .info-table th,
            .info-table td,
            .payment-table th,
            .payment-table td {
                padding: 12px 10px;
            }
        }