.elementor-9 .elementor-element.elementor-element-7a6c06d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a420b8a */<style>
    /* ================= ULTRA-PREMIUM WHITE & RED THEME ================= */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background: #f8fafc;
        color: #1e293b;
        font-family: 'Poppins', 'Hind', sans-serif;
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 20px;
    }

    /* Hero Section Styling */
    .hero {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        align-items: center;
        padding: 60px 0;
    }

    @media (max-width: 968px) {
        .hero {
            grid-template-columns: 1fr;
            text-align: center;
            padding: 30px 0;
        }
    }

    .logo-area {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    @media (max-width: 968px) {
        .logo-area {
            justify-content: center;
        }
    }

    .logo-img {
        width: 90px;
        height: 90px;
        object-fit: contain;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(214, 28, 34, 0.15);
        border: 2px solid #ffffff;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .brand-name {
        font-size: 2.6rem;
        font-weight: 700;
        color: #d61c22;
        letter-spacing: 1.5px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .hero-title {
        font-size: 3.8rem;
        font-weight: 800;
        color: #d61c22;
        text-transform: uppercase;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-family: 'Hind', sans-serif;
        font-size: 1.9rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 25px;
        line-height: 1.5;
        letter-spacing: 0.2px;
    }

    .hero-desc {
        font-size: 1.15rem;
        color: #475569;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .hero-desc span {
        color: #d61c22;
        font-weight: 700;
        background: #fff5f5;
        padding: 2px 8px;
        border-radius: 6px;
    }

    /* Premium Action Buttons */
    .btn-group {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 30px;
    }

    @media (max-width: 968px) {
        .btn-group {
            justify-content: center;
        }
    }

    .btn {
        padding: 16px 40px;
        border-radius: 16px;
        font-size: 1.15rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        cursor: pointer;
        border: none;
    }

    .btn-download {
        background: linear-gradient(135deg, #e52d27, #b31217);
        color: #fff;
        box-shadow: 0 6px 20px rgba(214, 28, 34, 0.3);
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(214, 28, 34, 0.4);
        filter: brightness(1.1);
    }

    .center-action {
        display: flex;
        justify-content: center;
        margin: 50px 0;
    }

    .sticky-bar {
        background: linear-gradient(135deg, #e52d27, #b31217);
        padding: 16px 36px;
        border-radius: 50px;
        color: white;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        box-shadow: 0 6px 25px rgba(214, 28, 34, 0.25);
        transition: all 0.3s ease;
    }

    .sticky-bar:hover {
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 10px 30px rgba(214, 28, 34, 0.35);
    }

    /* Premium Sidebar Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    @media (max-width: 576px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
    }

    .feature-card {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.03);
        padding: 30px 25px;
        border-radius: 24px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.015);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        border-color: rgba(214, 28, 34, 0.1);
    }

    .feature-icon {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .icon-red {
        color: #d61c22;
        background: #fff5f5;
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(214, 28, 34, 0.05);
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        font-weight: 700;
        color: #0f172a;
    }

    .feature-card p {
        font-size: 0.95rem;
        color: #64748b;
        line-height: 1.6;
    }

    /* Section Global Headers */
    .section-header {
        text-align: center;
        margin: 80px 0 45px;
        position: relative;
    }

    .section-header h2 {
        font-size: 2.6rem;
        color: #0f172a;
        text-transform: uppercase;
        font-weight: 800;
        letter-spacing: 0.5px;
    }

    .section-header p {
        color: #64748b;
        margin-top: 8px;
        font-size: 1.05rem;
    }

    .section-header::after {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        background: #d61c22;
        margin: 15px auto 0;
        border-radius: 10px;
    }

    /* Premium Rates Section Panels */
    .rates-panel {
        background: #ffffff;
        border-radius: 36px;
        padding: 45px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.02);
        border: 1px solid rgba(0,0,0,0.03);
    }

    .rates-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }

    .rate-card {
        background: #f8fafc;
        border-radius: 24px;
        padding: 30px 20px;
        text-align: center;
        border: 1px solid rgba(0, 0, 0, 0.02);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .rate-card:hover {
        transform: scale(1.04);
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        border-color: rgba(214, 28, 34, 0.1);
    }

    .rate-card.highlighted {
        grid-column: span 2;
        background: linear-gradient(135deg, #fffafa, #fff5f5);
        border: 2px solid #d61c22;
    }

    @media (max-width: 768px) {
        .rate-card.highlighted {
            grid-column: span 1;
        }
    }

    .badge-premium {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #d61c22;
        color: #fff;
        padding: 5px 12px;
        font-size: 11px;
        font-weight: 700;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .rate-card i.dice-icon {
        font-size: 48px;
        color: #d61c22;
        margin-bottom: 20px;
        display: block;
    }

    .rate-card h4 {
        font-size: 1.15rem;
        margin-bottom: 12px;
        color: #1e293b;
        font-weight: 700;
    }

    .rate-value {
        font-size: 1.25rem;
        font-weight: 700;
        color: #64748b;
    }

    .rate-value span {
        color: #10b981;
        font-size: 1.35rem;
    }

    .rate-card.highlighted h4 {
        font-size: 1.75rem;
        margin-top: 10px;
    }
    
    .rate-card.highlighted .rate-value {
        font-size: 1.6rem;
    }

    /* How to Play Premium Steps */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
        text-align: center;
    }

    .step-item {
        position: relative;
        background: #fff;
        padding: 40px 25px;
        border-radius: 28px;
        box-shadow: 0 4px 25px rgba(0,0,0,0.015);
        border: 1px solid rgba(0,0,0,0.02);
        transition: transform 0.3s ease;
    }

    .step-item:hover {
        transform: translateY(-4px);
    }

    .step-number {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(135deg, #e52d27, #b31217);
        box-shadow: 0 6px 15px rgba(214, 28, 34, 0.25);
    }

    .step-item i {
        font-size: 30px;
        color: #0f172a;
        margin-bottom: 15px;
        display: inline-block;
    }

    .step-item h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #0f172a;
        font-weight: 700;
    }

    .step-item p {
        font-size: 0.95rem;
        color: #64748b;
        line-height: 1.6;
    }

    .spacer-bottom {
        margin-bottom: 80px;
    }
</style>/* End custom CSS */