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

        body {
            font-family: 'Josefin Sans' !important;
            background-color: #f5f1e8;
        }

        .header {
            background: linear-gradient(90deg, #6b2d8f 0%, #8b3fa8 100%);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 2px;
        }

        .btn-signup-header {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 8px 25px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .btn-signup-header:hover {
            background-color: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .hero-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-left {
            flex: 1;
        }

        .hero-right {
            flex: 1;
            text-align: center;
        }

        .hero-image {
            max-width: 70%;
            height: auto;
            border-radius: 15px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 25px;
        }

        .hero-text {
            color: #555;
            line-height: 1.8;
            margin-bottom: 35px;
            font-size: 1.05rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 400px;
        }

        .btn-play-now, .btn-sign-up {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            border: 3px solid #333;
            background-color: white;
            color: #333;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-play-now:hover, .btn-sign-up:hover {
            background-color: #333;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        .casino-table {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px 60px;
        }

        .table {
            --bs-table-color-type: initial;
            --bs-table-bg-type: initial;
            --bs-table-color-state: initial;
            --bs-table-bg-state: initial;
            --bs-table-color: white;
            --bs-table-bg: linear-gradient(90deg, #6b2d8f 0%, #8b3fa8 100%);
            --bs-table-border-color: var(--bs-border-color);
            --bs-table-accent-bg: transparent;
            --bs-table-striped-color: var(--bs-body-color);
            --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
            --bs-table-active-color: var(--bs-body-color);
            --bs-table-active-bg: rgba(0, 0, 0, 0.1);
            --bs-table-hover-color: var(--bs-body-color);
            --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
            width: 100%;
            margin-bottom: 1rem;
            vertical-align: top;
            border-color: var(--bs-table-border-color);
        }

        .table-container {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .table-header {
            background: linear-gradient(90deg, #6b2d8f 0%, #8b3fa8 100%);
            color: white;
        }

        .table-header th {
            padding: 20px;
            font-weight: 600;
            text-align: center;
            border: none;
        }

        .casino-row {
            background: linear-gradient(90deg, #6b2d8f 0%, #8b3fa8 100%);
            color: white;
        }

        .casino-row td {
            padding: 25px 15px;
            vertical-align: middle;
            border-bottom: 2px solid #8b3fa8;
        }

        .rank-cell {
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
        }

        .casino-logo {
            text-align: center;
        }

        .casino-logo img {
            max-width: 150px;
            height: auto;
        }

        .offer-cell {
            font-size: 1.3rem;
            font-weight: bold;
            text-align: center;
        }

        .feature-list {
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .feature-list div {
            margin-bottom: 8px;
        }

        .btn-play-table {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 8px;
            transition: all 0.3s;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .btn-play-table:hover {
            background-color: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(76, 175, 80, 0.4);
        }

        .disclosure {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
            font-size: 0.85rem;
            color: #666;
            line-height: 1.6;
        }

        .disclosure strong {
            color: #333;
        }

        .footer {
            text-align: center;
            padding: 30px 20px;
            background-color: #f5f1e8;
            border-top: 1px solid #ddd;
        }

        .footer a {
            color: #6b2d8f;
            text-decoration: none;
            margin: 0 15px;
            font-size: 0.9rem;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        .badge-info {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 4px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-left: 10px;
        }

        @media (max-width: 768px) {
            .hero-content {
                flex-direction: column;
            }

            .hero-right {
                display: none;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .hero-text {
                font-size: 0.9rem;
            }

            .hero-section {
                padding: 40px 20px;
            }

            .table-container {
                display: none;
            }

            .cta-buttons {
                max-width: 100%;
            }

            .mobile-cards {
                display: block !important;
            }
        }

        .mobile-cards {
            display: none;
        }

        .casino-card {
            background: linear-gradient(180deg, #6b2d8f 0%, #8b3fa8 100%);
            color: white;
            border-radius: 15px;
            padding: 30px 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .card-rank {
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }

        .card-logo {
            text-align: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .card-offer {
            text-align: center;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 25px;
            line-height: 1.4;
        }

        .card-features {
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .card-features div {
            margin-bottom: 8px;
        }

        .card-button {
            text-align: center;
        }

        .card-button .btn-play-table {
            width: 100%;
            max-width: 200px;
        }