        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0D0D0D;
            color: #E0E0E0;
            line-height: 1.6;
        }

        /* Header — static, scrolls with page */
        header {
            position: static;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(13, 13, 13, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #4CAF50;
            text-decoration: none;
        }

        nav {
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: #E0E0E0;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #4CAF50;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #4CAF50;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem 5%;
            background: linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7)),
                        url('/placeholder.svg?height=1080&width=1920') center/cover;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #FFFFFF;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #B0B0B0;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: #4CAF50;
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        }

        .cta-button:hover {
            background-color: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
        }

        /* Casino Cards Section */
        .casinos-section {
            padding: 3rem 5%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 3rem;
            color: #FFFFFF;
        }

        .casino-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .casino-card {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            display: grid;
            grid-template-columns: auto 140px 1fr auto;
            align-items: center;
            gap: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            border: 1px solid rgba(255, 255, 255, 0.051);
            position: relative;
            overflow: hidden;
        }

        .casino-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .casino-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .casino-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
            border-color: rgba(76, 175, 80, 0.3);
        }

        .casino-card.top-1 {
            border: 1px solid rgba(255, 215, 0, 0.3);
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 42, 26, 0.6) 100%);
            box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
        }

        .casino-card.top-2 {
            border: 1px solid rgba(192, 192, 192, 0.3);
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(37, 37, 37, 0.6) 100%);
            box-shadow: 0 10px 36px rgba(192, 192, 192, 0.15);
        }

        .casino-card.top-3 {
            border: 1px solid rgba(205, 127, 50, 0.3);
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(42, 31, 26, 0.6) 100%);
            box-shadow: 0 10px 36px rgba(205, 127, 50, 0.15);
        }

        .ranking-badge {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 300;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .casino-card:hover .ranking-badge {
            transform: scale(1.05);
        }

        .ranking-badge.gold {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.3));
            color: #FFD700;
            border: 2px solid rgba(255, 215, 0, 0.4);
        }

        .ranking-badge.silver {
            background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(168, 168, 168, 0.3));
            color: #C0C0C0;
            border: 2px solid rgba(192, 192, 192, 0.4);
        }

        .ranking-badge.bronze {
            background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(184, 134, 11, 0.3));
            color: #CD7F32;
            border: 2px solid rgba(205, 127, 50, 0.4);
        }

        .ranking-badge.regular {
            background: linear-gradient(135deg, rgba(42, 42, 42, 0.4), rgba(26, 26, 26, 0.6));
            color: #4CAF50;
            border: 2px solid rgba(76, 175, 80, 0.3);
        }

        .casino-logo {
            width: 140px;
            height: 140px;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(42, 42, 42, 0.4), rgba(26, 26, 26, 0.6));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 400;
            color: #4CAF50;
            border: 1px solid rgba(76, 175, 80, 0.2);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .casino-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1rem;
        }

        .casino-card:hover .casino-logo {
            border-color: rgba(76, 175, 80, 0.4);
            box-shadow: 0 4px 20px rgba(76, 175, 80, 0.1);
        }

        .casino-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .casino-name {
            font-size: 1.5rem;
            font-weight: 400;
            color: #FFFFFF;
            margin: 0;
            letter-spacing: -0.02em;
        }

        .casino-rating {
            font-size: 0.95rem;
            color: #FFD700;
            margin: 0;
            font-weight: 300;
        }

        .bonus-amount {
            font-size: 2.75rem;
            font-weight: 300;
            color: #4CAF50;
            line-height: 1;
            margin: 0.75rem 0 0.25rem 0;
            letter-spacing: -0.03em;
        }

        .bonus-label {
            font-size: 1rem;
            color: #888;
            font-weight: 300;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .casino-details {
            display: flex;
            gap: 2rem;
            margin-top: 0.75rem;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #888;
            font-weight: 300;
        }

        .detail-icon {
            font-size: 1.1rem;
            opacity: 0.7;
        }

        .detail-value {
            font-weight: 400;
            color: #E0E0E0;
        }

        .casino-bonus {
            font-size: 0.85rem;
            color: #666;
            margin: 0;
            line-height: 1.5;
            font-weight: 300;
        }

        .casino-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: flex-end;
        }

        .visit-button {
            display: inline-block;
            padding: 1.1rem 3rem;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: #FFFFFF;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.05rem;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(76, 175, 80, 0.25);
            white-space: nowrap;
            letter-spacing: 0.02em;
        }

        .visit-button:hover {
            background: linear-gradient(135deg, #45a049, #3d8b40);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(76, 175, 80, 0.35);
        }

        .review-link {
            color: #4CAF50;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 300;
            transition: all 0.3s ease;
            white-space: nowrap;
            opacity: 0.8;
        }

        .review-link:hover {
            color: #45a049;
            opacity: 1;
            text-decoration: underline;
        }

        /* SEO Text Section */
        .seo-section {
            padding: 5rem 5%;
            max-width: 1000px;
            margin: 0 auto;
            background-color: #1A1A1A;
            border-radius: 15px;
        }

        .seo-section h2 {
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 2rem;
            color: #4CAF50;
        }

        .seo-section h3 {
            font-size: 1.5rem;
            font-weight: 400;
            margin: 2rem 0 1rem;
            color: #FFFFFF;
        }

        .seo-section p {
            margin-bottom: 1.5rem;
            color: #B0B0B0;
            font-weight: 300;
            line-height: 1.7;
        }

        .seo-section ul {
            margin: 1rem 0 1.5rem 2rem;
            color: #B0B0B0;
        }

        .seo-section li {
            margin-bottom: 0.5rem;
            font-weight: 300;
            line-height: 1.6;
        }

        .seo-section table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            font-size: 0.9rem;
            color: #B0B0B0;
        }

        .seo-section th {
            background-color: #2A2A2A;
            color: #4CAF50;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 500;
        }

        .seo-section td {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #2A2A2A;
            font-weight: 300;
        }

        /* Footer */
        footer {
            background-color: #0A0A0A;
            padding: 3rem 5%;
            margin-top: 5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h4 {
            color: #4CAF50;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .footer-column a {
            display: block;
            color: #808080;
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
            font-weight: 300;
        }

        .footer-column a:hover {
            color: #4CAF50;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2A2A2A;
            color: #808080;
            font-weight: 300;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: rgba(13, 13, 13, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: left 0.3s ease;
                z-index: 999;
            }

            nav.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .casino-card {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 2rem 1.5rem;
                text-align: center;
            }

            .ranking-badge {
                margin: 0 auto;
            }

            .casino-logo {
                margin: 0 auto;
            }

            .casino-info {
                align-items: center;
            }

            .casino-details {
                flex-direction: column;
                gap: 0.75rem;
                align-items: center;
            }

            .casino-actions {
                align-items: center;
                width: 100%;
            }

            .visit-button {
                width: 100%;
                text-align: center;
            }

            .bonus-amount {
                font-size: 2rem;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .hero { min-height: 50vh; }
        }

        @media (min-width: 1025px) {
            .hero { min-height: 55vh; }
        }

@media (max-width: 768px) {
    .seo-section table {
        display: block;
        overflow-x: auto;
        width: 100%;
        white-space: nowrap;
    }
}

.image-style {
    display: block;
    margin: 40px auto;
    width: 800px;
    max-width: 100%;
    height: auto;

    padding: 1px;
    background: #ffffff0d;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .image-style {
        width: 100%;
        padding: 1px;
        margin: 24px auto;
    }
}
