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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f5f5f5;
        }

        /* Sticky Navigation */
        .sticky-nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 15px 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .nav-menu a:hover {
            opacity: 0.8;
        }

        .cta-btn-nav {
            background: #ffd700;
            color: #333;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s;
        }

        .cta-btn-nav:hover {
            transform: scale(1.05);
        }

        /* Hero Section */
        .hero {
            margin-top: 70px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .hero-feature {
            background: rgba(255,255,255,0.1);
            padding: 15px 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .cta-btn-hero {
            display: inline-block;
            background: #ffd700;
            color: #333;
            padding: 20px 50px;
            font-size: 20px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            margin-top: 20px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .cta-btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .section {
            background: white;
            margin: 30px 0;
            padding: 50px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 30px;
            color: #667eea;
            text-align: center;
        }

        /* Slots Grid */
        .slots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .slot-card {
            background: #f9f9f9;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .slot-card:hover {
            transform: translateY(-5px);
        }

        .slot-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: bold;
        }

        .slot-info {
            padding: 20px;
        }

        .slot-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }

        .slot-provider {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .play-btn {
            display: block;
            background: #667eea;
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }

        .play-btn:hover {
            background: #764ba2;
        }

        /* Advantages */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .advantage-card {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .advantage-card:hover {
            transform: scale(1.05);
        }

        .advantage-icon {
            font-size: 50px;
            margin-bottom: 15px;
        }

        .advantage-title {
            font-size: 22px;
            margin-bottom: 10px;
            color: #667eea;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            gap: 25px;
            margin-top: 30px;
        }

        .review-card {
            background: #f9f9f9;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #667eea;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .reviewer-name {
            font-weight: bold;
            font-size: 18px;
        }

        .review-rating {
            color: #ffd700;
            font-size: 20px;
        }

        .review-text {
            color: #555;
            line-height: 1.8;
        }

        .review-date {
            color: #999;
            font-size: 14px;
            margin-top: 10px;
        }

        /* Tables */
        .table-responsive {
            overflow-x: auto;
            margin-top: 30px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: bold;
        }

        td {
            padding: 15px;
            border-bottom: 1px solid #ddd;
        }

        tr:hover {
            background: #f5f5f5;
        }

        .table-highlight {
            background: #fffacd !important;
            font-weight: bold;
        }

        /* Comparison Table */
        .comparison-table {
            margin-top: 30px;
        }

        .comparison-table th {
            text-align: center;
        }

        .comparison-table td {
            text-align: center;
        }

        .check {
            color: #4caf50;
            font-size: 24px;
        }

        .cross {
            color: #f44336;
            font-size: 24px;
        }

        /* SEO Text Block */
        .seo-text {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            line-height: 1.9;
            color: #444;
            margin-top: 30px;
        }

        .seo-text h2 {
            color: #667eea;
            font-size: 32px;
            margin-bottom: 20px;
            margin-top: 30px;
        }

        .seo-text h3 {
            color: #764ba2;
            font-size: 24px;
            margin-bottom: 15px;
            margin-top: 25px;
        }

        .seo-text h4 {
            color: #555;
            font-size: 20px;
            margin-bottom: 12px;
            margin-top: 20px;
        }

        .seo-text p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .seo-text ul, .seo-text ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }

        .seo-text li {
            margin-bottom: 10px;
        }

        .seo-text strong {
            color: #667eea;
            font-weight: 600;
        }

        .seo-text a {
            color: #667eea;
            text-decoration: none;
            border-bottom: 1px dotted #667eea;
        }

        .seo-text a:hover {
            border-bottom: 1px solid #667eea;
        }

        .seo-keyword {
            background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: 500;
        }

        /* CTA Sections */
        .cta-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 30px;
            text-align: center;
            border-radius: 15px;
            margin: 40px 0;
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 20px;
            text-align: center;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
        }

        .responsible-gaming {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .nav-menu {
                display: none;
            }

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

            .slots-grid {
                grid-template-columns: 1fr;
            }
        }
.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
