
        :root {
            --primary-color: #FF6B35;
            --secondary-color: #004E89;
            --accent-color: #FFD23F;
            --dark-bg: #1a1a2e;
            --light-bg: #f5f5f5;
            --text-dark: #2d2d2d;
            --text-light: #ffffff;
            --success-green: #4CAF50;
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow-x: hidden;
        }

        /* Sticky Navigation */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 0.5rem 0;
            background: rgba(26, 26, 46, 1);
        }

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

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            font-size: 2.5rem;
        }

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

        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--accent-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: var(--transition);
        }

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

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-light);
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(0, 78, 137, 0.9), rgba(255, 107, 53, 0.8)), url('hero-bg.jpg');
            background-size: cover;
            background-position: center;
            padding: 8rem 2rem 6rem;
            text-align: center;
            color: var(--text-light);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            animation: fadeInDown 1s ease;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .bonus-highlight {
            background: rgba(255, 210, 63, 0.2);
            border: 3px solid var(--accent-color);
            border-radius: var(--border-radius);
            padding: 2rem;
            margin: 2rem auto;
            max-width: 600px;
            animation: pulse 2s infinite;
        }

        .bonus-highlight h2 {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        /* CTA Buttons */
        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, var(--primary-color), #ff8c61);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }

        .cta-button:hover::before {
            left: 100%;
        }

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

        .cta-secondary {
            background: transparent;
            border: 3px solid var(--accent-color);
            color: var(--accent-color);
            margin-left: 1rem;
        }

        .cta-secondary:hover {
            background: var(--accent-color);
            color: var(--dark-bg);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            background: white;
        }

        /* Advantages Section */
        .advantages {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .advantages h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--secondary-color);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .advantage-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: var(--transition);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .advantage-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .advantage-card h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* Slots Section */
        .slots-section {
            padding: 4rem 2rem;
            background: var(--dark-bg);
            color: var(--text-light);
        }

        .slots-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--accent-color);
        }

        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .slot-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
        }

        .slot-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 40px rgba(255, 210, 63, 0.3);
        }

        .slot-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        .slot-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slot-image::after {
            content: 'SLOT';
            position: absolute;
            font-size: 1rem;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 10px;
            border-radius: 5px;
        }

        .slot-info {
            padding: 1.5rem;
        }

        .slot-info h3 {
            margin-bottom: 0.5rem;
            color: var(--accent-color);
        }

        .slot-info p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1rem;
        }

        .play-button {
            width: 100%;
            padding: 0.8rem;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }

        .play-button:hover {
            background: #ff8c61;
        }

        /* Reviews Section */
        .reviews {
            padding: 4rem 2rem;
            background: white;
        }

        .reviews h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--secondary-color);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .review-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark-bg);
        }

        .reviewer-info h4 {
            color: var(--secondary-color);
            margin-bottom: 0.25rem;
        }

        .stars {
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .review-text {
            font-style: italic;
            color: var(--text-dark);
            line-height: 1.8;
        }

        /* Tables */
        .table-section {
            padding: 4rem 2rem;
            background: var(--light-bg);
        }

        .table-section h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--secondary-color);
        }

        .responsive-table {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 3rem;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        th {
            background: var(--secondary-color);
            color: white;
            padding: 1.5rem;
            text-align: left;
            font-weight: 600;
        }

        td {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid #e0e0e0;
        }

        tr:hover {
            background: #f5f5f5;
        }

        .comparison-table th:first-child,
        .comparison-table td:first-child {
            font-weight: bold;
            background: #f9f9f9;
        }

        .check-mark {
            color: var(--success-green);
            font-size: 1.5rem;
            text-align: center;
        }

        .cross-mark {
            color: #f44336;
            font-size: 1.5rem;
            text-align: center;
        }

        /* SEO Text Block */
        .seo-content {
            padding: 4rem 2rem;
            background: white;
            max-width: 1200px;
            margin: 0 auto;
        }

        .seo-content h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 2rem;
            text-align: center;
        }

        .seo-content h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .seo-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .seo-content ul, .seo-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        .seo-content li {
            margin-bottom: 0.75rem;
            line-height: 1.8;
        }

        .keyword-highlight {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.02);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--dark-bg);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1.2rem;
            }

            .bonus-highlight h2 {
                font-size: 1.8rem;
            }

            .cta-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .cta-secondary {
                margin-left: 0;
                margin-top: 1rem;
            }

            .advantages-grid,
            .slots-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            animation: pulse 2s infinite;
        }

        @media (max-width: 768px) {
            .floating-cta {
                bottom: 10px;
                right: 10px;
            }

            .floating-cta .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }
 