
        /* CSS Variables для Анлим казино */
        :root {
            --anlim-primary: #ff6b35;
            --anlim-secondary: #f7931e;
            --anlim-dark: #0f0e17;
            --anlim-card: #1a1825;
            --anlim-text: #fffffe;
            --anlim-text-secondary: #a7a9be;
            --anlim-accent: #ff6b35;
            --anlim-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            --anlim-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Reset и базовые стили */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--anlim-dark);
            color: var(--anlim-text);
            line-height: 1.6;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Промо баннер Анлим */
        .promo-banner {
            background: var(--anlim-gradient);
            padding: 12px 20px;
            text-align: center;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            box-shadow: var(--anlim-shadow);
        }

        .promo-banner a {
            color: white;
            text-decoration: underline;
            font-weight: 700;
            transition: var(--transition);
        }

        .promo-banner a:hover {
            text-decoration: none;
        }

        /* Header Анлим казино */
        .header {
            background: rgba(15, 14, 23, 0.98);
            backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 48px;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            background: var(--anlim-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        /* Navigation */
        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            color: var(--anlim-text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--anlim-accent);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--anlim-gradient);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* CTA Buttons */
        .cta-button {
            background: var(--anlim-gradient);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--anlim-shadow);
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
        }

        .cta-button-large {
            background: var(--anlim-gradient);
            color: white;
            padding: 18px 40px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: var(--transition);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4); }
            50% { box-shadow: 0 8px 40px rgba(255, 107, 53, 0.6); }
            100% { box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4); }
        }

        .cta-button-large:hover {
            transform: scale(1.05);
            animation: none;
        }

        /* Hero Section */
        .hero {
            margin-top: 120px;
            padding: 60px 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 48px;
            line-height: 1.1;
            margin-bottom: 20px;
            font-weight: 900;
            background: var(--anlim-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-text p {
            font-size: 20px;
            color: var(--anlim-text-secondary);
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .secondary-button {
            background: transparent;
            color: var(--anlim-accent);
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--anlim-accent);
            transition: var(--transition);
            display: inline-block;
        }

        .secondary-button:hover {
            background: var(--anlim-accent);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Card */
        .hero-card {
            background: var(--anlim-card);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 107, 53, 0.2);
            transition: var(--transition);
        }

        .hero-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border-color: var(--anlim-accent);
        }

        .hero-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .bonus-value {
            font-size: 36px;
            font-weight: 900;
            background: var(--anlim-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .bonus-features {
            list-style: none;
            margin: 20px 0;
        }

        .bonus-features li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: var(--anlim-text-secondary);
        }

        .bonus-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--anlim-accent);
            font-weight: bold;
            font-size: 18px;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: rgba(26, 24, 37, 0.5);
        }

        .section-title {
            font-size: 42px;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 900;
        }

        .section-subtitle {
            text-align: center;
            color: var(--anlim-text-secondary);
            font-size: 20px;
            margin-bottom: 50px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--anlim-card);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--anlim-gradient);
            transform: translateX(-100%);
            transition: var(--transition);
        }

        .feature-card:hover::before {
            transform: translateX(0);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--anlim-accent);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--anlim-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--anlim-text-secondary);
            line-height: 1.6;
        }

        /* Games Section */
        .games {
            padding: 80px 0;
        }

        .games-carousel {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 30px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--anlim-accent) var(--anlim-card);
        }

        .games-carousel::-webkit-scrollbar {
            height: 8px;
        }

        .games-carousel::-webkit-scrollbar-track {
            background: var(--anlim-card);
            border-radius: 4px;
        }

        .games-carousel::-webkit-scrollbar-thumb {
            background: var(--anlim-gradient);
            border-radius: 4px;
        }

        .game-card {
            flex: 0 0 220px;
            background: var(--anlim-card);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }

        .game-card:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: var(--anlim-accent);
        }

        .game-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .game-info {
            padding: 20px;
        }

        .game-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .game-provider {
            color: var(--anlim-text-secondary);
            font-size: 14px;
        }

        /* Bonuses Section */
        .bonuses {
            padding: 80px 0;
            background: rgba(26, 24, 37, 0.5);
        }

        .bonus-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .bonus-card {
            background: var(--anlim-card);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }

        .bonus-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--anlim-gradient);
        }

        .bonus-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border-color: var(--anlim-accent);
        }

        .bonus-header {
            padding: 25px;
            background: rgba(255, 107, 53, 0.1);
        }

        .bonus-title {
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .bonus-content {
            padding: 25px;
        }

        .bonus-content p {
            margin-bottom: 20px;
            color: var(--anlim-text-secondary);
        }

        /* Content Section */
        .content-section {
            padding: 80px 0;
        }

        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .content-section h2 {
            font-size: 36px;
            margin: 40px 0 20px;
            font-weight: 900;
            line-height: 1.2;
        }

        .content-section h3 {
            font-size: 28px;
            margin: 30px 0 15px;
            color: var(--anlim-accent);
            font-weight: 700;
        }

        .content-section p {
            margin-bottom: 20px;
            color: var(--anlim-text-secondary);
            line-height: 1.8;
            font-size: 17px;
        }

        .content-section ul {
            margin: 20px 0;
            padding-left: 30px;
        }

        .content-section li {
            margin-bottom: 10px;
            color: var(--anlim-text-secondary);
            line-height: 1.8;
        }

        /* Table */
        .info-table {
            width: 100%;
            margin: 30px 0;
            border-collapse: collapse;
            background: var(--anlim-card);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .info-table th,
        .info-table td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .info-table th {
            background: var(--anlim-gradient);
            color: white;
            font-weight: 700;
            font-size: 16px;
        }

        .info-table tr:hover {
            background: rgba(255, 107, 53, 0.05);
        }

        .info-table tr:last-child td {
            border-bottom: none;
        }

        /* Footer */
        .footer {
            background: var(--anlim-card);
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top: 1px solid rgba(255, 107, 53, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            margin-bottom: 20px;
            color: var(--anlim-accent);
            font-size: 20px;
            font-weight: 700;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--anlim-text-secondary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 16px;
        }

        .footer-links a:hover {
            color: var(--anlim-accent);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--anlim-text-secondary);
        }

        /* Floating Button */
        .floating-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--anlim-gradient);
            color: white;
            padding: 16px 28px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
            font-size: 16px;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-button:hover {
            transform: scale(1.1);
            animation: none;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-text p {
                font-size: 18px;
            }

            .section-title {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .bonus-cards {
                grid-template-columns: 1fr;
            }

            .games-carousel {
                padding: 20px 0;
            }

            .floating-button {
                bottom: 20px;
                right: 20px;
                padding: 14px 24px;
            }
        }
