/**
 * Custom Styles
 * Complete styles for all blocks
 */

/* ========================================
   Hero Pattern Container (Reference Style)
   Golden/yellow gradient with pattern overlay
   ======================================== */

/* Pattern color variables - golden gradient like reference */
:root {
    --main-visual-gradient-start: #8a5a1a;
    --main-visual-gradient-end: #d48a2a;
    --main-visual-pattern-color: rgba(0, 0, 0, 0.12);
    --pattern-bg: #d48a2a;
}

.main-visual-section {
    position: relative;
    overflow: visible;
    background: var(--primary-dark);
    padding: 100px 0 30px;
}

/* Hero inner container with rounded corners - compact height */
.main-visual-inner {
    position: relative;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    background: var(--primary-teal);
}

.main-visual-inner-plain {
    background: none;
}

/* Pattern container with GOLDEN gradient like reference */
.main-visual-pattern-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    overflow: hidden;
    /* Gradient from main-visual-gradient-start to main-visual-gradient-end */
    background: linear-gradient(95deg, var(--main-visual-gradient-start) 0%, var(--pattern-bg) 50%, var(--main-visual-gradient-end) 100%);
    z-index: 0;
}

/* Pattern overlay layer - casino icons more visible on golden background */
.main-visual-pattern-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero_pattern.svg');
    background-size: 1400px 715px;
    background-repeat: repeat;
    background-position: top left;
    mix-blend-mode: multiply;
    opacity: 0.4;
}

/* Content wrapper inside hero - SMALLER padding */
.main-visual-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 50px;
    min-height: 420px;
}

.main-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Legacy main-visual-pattern for backward compatibility */
.main-visual-pattern {
    display: none;
}

.main-visual-section > .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.main-visual-section .container {
    display: block;
}

/* Hero responsive */
@media (max-width: 992px) {
    .main-visual-content-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        min-height: auto;
    }

    .main-visual-inner {
        min-height: auto;
    }

    .main-visual-side {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .main-visual-section {
        padding: 80px 0 30px;
    }

    .main-visual-content-wrapper {
        padding: 30px 20px;
    }
}

/* ========================================
   Bonus Icon in Hero
   ======================================== */
.main-visual-bonus {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-strong) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.deal-extra-icon-wrapper {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    color: var(--accent-gold);
}

.deal-extra-icon {
    width: 100%;
    height: 100%;
}

.deal-extra-content {
    flex: 1;
}

/* ========================================
   Floating Casino Elements
   ======================================== */
.suite-float {
    position: absolute;
    color: var(--accent-gold);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.suite-float svg {
    width: 100%;
    height: 100%;
}

.suite-float-1 {
    width: 32px;
    height: 32px;
    top: -10px;
    left: 15%;
    animation: float1 4s ease-in-out infinite;
}

.suite-float-2 {
    width: 22px;
    height: 22px;
    top: 20%;
    right: -8px;
    animation: float2 5s ease-in-out infinite;
    color: #ff6b6b;
}

.suite-float-3 {
    width: 26px;
    height: 26px;
    bottom: 15%;
    left: -10px;
    animation: float3 4.5s ease-in-out infinite;
}

.suite-float-4 {
    width: 24px;
    height: 24px;
    bottom: -8px;
    right: 20%;
    animation: float4 3.5s ease-in-out infinite;
    color: #4ade80;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-8px) rotate(10deg); opacity: 0.8; }
}

@keyframes float2 {
    0%, 100% { transform: translateX(0) scale(1); opacity: 0.4; }
    50% { transform: translateX(-5px) scale(1.1); opacity: 0.7; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(6px) rotate(-15deg); opacity: 0.8; }
}

@keyframes float4 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.15) rotate(20deg); opacity: 0.8; }
}

/* ========================================
   HOT Badge with Fire Icon
   ======================================== */
.deal-extra-badge {
    position: absolute;
    top: -14px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ff3333 0%, #ff6644 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(255, 51, 51, 0.5);
    animation: badgePulse 1.5s ease-in-out infinite;
    z-index: 10;
}

.badge-burn {
    animation: fireWiggle 0.3s ease-in-out infinite alternate;
}

@keyframes fireWiggle {
    0% { transform: rotate(-5deg) scale(1); }
    100% { transform: rotate(5deg) scale(1.1); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(255, 51, 51, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(255, 51, 51, 0.7); }
}

/* ========================================
   Inner Content Wrapper
   ======================================== */
.deal-extra-box-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 30px 20px 30px;
}

/* ========================================
   Animated Gift Box with Coins
   ======================================== */
.deal-extra-icon-area {
    flex-shrink: 0;
    width: 90px;
    height: 100px;
    position: relative;
}

.prize-box {
    position: relative;
    width: 75px;
    height: 75px;
    margin: 20px auto 0;
}

/* Gift lid */
.prize-lid {
    position: absolute;
    top: 0;
    left: -5px;
    width: 85px;
    height: 24px;
    background: linear-gradient(180deg, #ff4444 0%, #cc2222 100%);
    border-radius: 5px 5px 0 0;
    z-index: 3;
    animation: lidBounce 2s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes lidBounce {
    0%, 70%, 100% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-4deg); }
    80% { transform: translateY(-15px) rotate(-6deg); }
    85% { transform: translateY(-10px) rotate(-4deg); }
    90% { transform: translateY(0) rotate(0deg); }
}

/* Bow parts */
.prize-bow-left,
.prize-bow-right {
    position: absolute;
    top: -14px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50% 50% 50% 0;
}

.prize-bow-left {
    left: 22px;
    transform: rotate(-45deg);
}

.prize-bow-right {
    right: 22px;
    transform: rotate(45deg);
    border-radius: 50% 50% 0 50%;
}

.prize-bow-knot {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ffdd00 0%, #ffaa00 100%);
    border-radius: 50%;
    z-index: 2;
}

/* Gift body */
.prize-body {
    position: absolute;
    top: 24px;
    left: 0;
    width: 75px;
    height: 55px;
    background: linear-gradient(180deg, #ff5555 0%, #cc3333 100%);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.prize-stripe {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold) 0%, #cc9900 100%);
}

/* Animated coins */
.piece {
    position: absolute;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-dark) 50%, var(--btn-bg) 100%);
    border-radius: 50%;
    border: 2px solid var(--btn-bg-dark);
    z-index: 5;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.piece::after {
    content: '$';
    font-size: 11px;
    font-weight: bold;
    color: #996600;
}

.piece-1 {
    top: 5px;
    left: 12px;
    animation: coinPop1 2s ease-in-out infinite;
}

.piece-2 {
    top: 0;
    left: 38px;
    animation: coinPop2 2s ease-in-out infinite;
    animation-delay: 0.15s;
}

.piece-3 {
    top: 8px;
    right: 8px;
    animation: coinPop3 2s ease-in-out infinite;
    animation-delay: 0.08s;
}

@keyframes coinPop1 {
    0%, 70%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
    75% { opacity: 1; transform: translateY(-22px) rotate(-20deg); }
    85% { opacity: 1; transform: translateY(-38px) rotate(-40deg); }
    95% { opacity: 0; transform: translateY(-50px) rotate(-60deg); }
}

@keyframes coinPop2 {
    0%, 70%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
    75% { opacity: 1; transform: translateY(-28px) rotate(15deg); }
    85% { opacity: 1; transform: translateY(-45px) rotate(30deg); }
    95% { opacity: 0; transform: translateY(-58px) rotate(45deg); }
}

@keyframes coinPop3 {
    0%, 70%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
    75% { opacity: 1; transform: translateY(-20px) rotate(25deg); }
    85% { opacity: 1; transform: translateY(-35px) rotate(50deg); }
    95% { opacity: 0; transform: translateY(-48px) rotate(75deg); }
}

/* ========================================
   Bonus Content Text - Clean & Readable
   ======================================== */
.deal-extra-box-content {
    flex: 1;
}

.deal-extra-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 4px;
}

.deal-extra-headline-sub {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Only values in gold - clean and readable */
.deal-extra-value {
    color: var(--accent-gold);
    font-weight: 800;
}

.deal-extra-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0 0 14px 0;
}

/* ========================================
   Social Proof - High Contrast
   ======================================== */
.deal-extra-channel-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ping-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #22c55e;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px #22c55e; }
    50% { transform: scale(1.4); opacity: 0.7; box-shadow: 0 0 20px #22c55e; }
}

.channel-proof-text {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.channel-proof-text strong {
    color: #4ade80;
    font-weight: 700;
}

/* ========================================
   Premium CTA Button
   ======================================== */
.btn-redeem-deal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-dark) 50%, var(--btn-bg) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--btn-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(var(--btn-bg-rgb), 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: btnGradient 2s ease infinite;
    text-decoration: none;
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-redeem-deal:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(var(--btn-bg-rgb), 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    color: var(--btn-text);
}

.btn-redeem-deal:active {
    transform: translateY(-1px) scale(1.01);
}

/* Shimmer effect on button */
.btn-glitter {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-msg {
    position: relative;
    z-index: 1;
}

.btn-marker {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ========================================
   Mobile Responsive for Bonus Box
   ======================================== */
@media (max-width: 768px) {
    .deal-extra-box-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px 15px 20px;
    }

    .deal-extra-icon-area {
        margin: 0 auto;
    }

    .deal-extra-headline {
        font-size: 1.3rem;
    }

    .deal-extra-headline-sub {
        font-size: 1.15rem;
    }

    .btn-redeem-deal {
        font-size: 1rem;
        padding: 16px 25px;
    }

    .deal-extra-channel-proof {
        justify-content: center;
    }

    .suite-float {
        display: none;
    }

    .deal-extra-badge {
        right: 15px;
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* ========================================
   Bonus Cards Section
   ======================================== */
.deals-all-section {
    padding: 40px 0 50px;
    background-color: var(--primary-dark);
}

.deals-all-grid {
    display: grid;
    gap: 20px;
}

/* Dynamic grid based on card count */
.deals-all-grid-1 {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
}

.deals-all-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

.deals-all-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.deals-all-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.deals-all-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.deals-all-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

.deal-extra-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 20px 20px 18px;
    text-align: center;
    border: 1px solid rgba(var(--btn-bg-rgb), 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.deal-extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.deal-extra-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--accent-gold);
    background-color: var(--primary-dark);
    border-radius: 50%;
    padding: 14px;
}

.deal-extra-card-icon svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.deal-extra-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.deal-extra-card-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.2;
    margin-bottom: 2px;
}

.deal-extra-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 4px 0;
}

.deal-extra-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    flex: 1;
}

/* Animated Claim Now Button for Bonus Cards */
.deal-extra-card .btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-dark) 25%, var(--btn-bg-light) 50%, var(--btn-bg-dark) 75%, var(--btn-bg) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--btn-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(var(--btn-bg-rgb), 0.4),
        0 6px 20px rgba(var(--btn-bg-rgb), 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: btnGradient 2s ease infinite;
    text-decoration: none;
}

.deal-extra-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 2.5s infinite;
}

.deal-extra-card .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 8px 25px rgba(var(--btn-bg-rgb), 0.5),
        0 12px 35px rgba(var(--btn-bg-rgb), 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    color: var(--btn-text);
}

.deal-extra-card .btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Mobile bonus icon size */
@media (max-width: 768px) {
    .deal-extra-card-icon {
        width: 60px !important;
        height: 60px !important;
        padding: 12px;
    }
}

/* ========================================
   Reviews Slider
   ======================================== */
.experiences-section {
    padding: 40px 0 50px;
    background-color: var(--primary-dark);
}

.experiences-ticker-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.experiences-slider {
    flex: 1;
    overflow: hidden;
}

.experiences-track {
    display: flex;
    gap: 20px;
}

.experience-card {
    flex: 0 0 calc(25% - 15px);
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.experience-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background-color: var(--primary-teal);
    border-radius: 50%;
    padding: 10px;
    color: var(--accent-gold);
}

.experience-avatar svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.experience-author {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.experience-rating {
    margin-bottom: 15px;
}

.experience-rating .star {
    color: var(--border-color);
    font-size: 1.2rem;
}

.experience-rating .star.filled {
    color: var(--accent-gold);
}

.experience-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Slider Arrows */
.ticker-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ticker-arrow:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.ticker-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Slider Dots */
.ticker-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ticker-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ticker-dot.active,
.ticker-dot:hover {
    background-color: var(--accent-gold);
}

/* ========================================
   Author Block
   ======================================== */
.specialist-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.specialist-section .specialist-block {
    margin-top: 0;
}

.specialist-block {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.specialist-image {
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

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

.specialist-image svg {
    width: 80px;
    height: 80px;
    fill: currentColor;
}

.specialist-info {
    flex: 1;
}

.specialist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.specialist-title {
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.specialist-bio {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.specialist-meta {
    font-size: 0.9rem;
    color: var(--accent-orange);
}

/* ========================================
   Pros/Cons Block
   ======================================== */
.upsides-downsides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.upsides-area,
.downsides-area {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.upsides-area {
    border-top: 3px solid #4CAF50;
}

.downsides-area {
    border-top: 3px solid #f44336;
}

.upsides-header,
.downsides-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.upsides-icon,
.downsides-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upsides-icon {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.downsides-icon {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.upsides-icon svg,
.downsides-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.upsides-title,
.downsides-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.upsides-list,
.downsides-list {
    list-style: none;
}

.upsides-list li,
.downsides-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.upsides-list li:last-child,
.downsides-list li:last-child {
    border-bottom: none;
}

.upsides-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.downsides-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

/* ========================================
   Content Section
   ======================================== */
.copy-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.copy-section h2 {
    margin-bottom: 20px;
}

.copy-section h3 {
    margin-top: 40px;
    margin-bottom: 15px;
}

.copy-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.copy-cta {
    display: inline-block;
    margin: 20px 0;
}

/* ========================================
   Footer Styles
   ======================================== */
.site-end-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 15px;
}

.site-end-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-end-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-complete {
    display: block;
    width: 100%;
    text-align: center;
}

/* Payment Icons */
.funding-icons {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.funding-icons-label {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.funding-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.funding-icon {
    width: 85px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    padding: 8px;
    box-sizing: border-box;
}

.funding-icon svg,
.funding-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer payment icon backgrounds */
.funding-icon[title="Visa"] {
    background: #1A1F71;
}
.funding-icon[title="Mastercard"] {
    background: #000000;
}
.funding-icon[title="Apple Pay"] {
    background: #ffffff;
}
.funding-icon[title="Google Pay"] {
    background: #ffffff;
}
.funding-icon[title="PayPal"] {
    background: #ffffff;
}
.funding-icon[title="Bitcoin"] {
    background: #F7931A;
}
.funding-icon[title="Ethereum"] {
    background: #627EEA;
}
.funding-icon[title="Tether"] {
    background: #50AF95;
}

/* Copyright */
.rights-notice {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.license-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========================================
   Typography Styles (ol, ul, h1-h6, table)
   ======================================== */
.copy-section ol,
.copy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.copy-section ol {
    list-style: decimal;
}

.copy-section ul {
    list-style: disc;
}

.copy-section ol li,
.copy-section ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.copy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.copy-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.copy-section h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-light);
}

.copy-section h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.copy-section h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.copy-section h6 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Table styles */
.copy-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.copy-section table th,
.copy-section table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.copy-section table th {
    background-color: var(--primary-teal);
    color: var(--text-light);
    font-weight: 600;
}

.copy-section table tr:last-child td {
    border-bottom: none;
}

.copy-section table tr:hover {
    background-color: rgba(255, 216, 0, 0.05);
}

/* Image inside content */
.copy-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.copy-section figure {
    margin: 20px 0;
}

.copy-section figcaption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ========================================
   Mobile Menu
   ======================================== */
.sidebar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.sidebar-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .sidebar-toggle {
        display: flex;
    }

    .master-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        padding: 20px;
        flex-direction: column;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .master-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-list {
        flex-direction: column;
        gap: 15px;
    }

    .header-controls {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
}

/* ========================================
   Animations
   ======================================== */
@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.05); }
}

.main-visual-bonus {
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
    /* 5 cards -> 3 columns, 4 cards -> 2 columns, 3 cards stays 3 */
    .deals-all-grid-5,
    .deals-all-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .deals-all-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-visual-section .container {
        grid-template-columns: 1fr;
    }

    .main-visual-side {
        justify-content: flex-start;
    }

    /* All grids go to 2 columns on tablet */
    .deals-all-grid-2,
    .deals-all-grid-3,
    .deals-all-grid-4,
    .deals-all-grid-5,
    .deals-all-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }

    .deals-all-grid-1 {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .experience-card {
        flex: 0 0 calc(50% - 10px);
    }

    .specialist-block {
        flex-direction: column;
        text-align: center;
    }

    .specialist-image {
        margin: 0 auto;
    }

    .upsides-downsides {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* All grids go to 1 column on mobile */
    .deals-all-grid-1,
    .deals-all-grid-2,
    .deals-all-grid-3,
    .deals-all-grid-4,
    .deals-all-grid-5,
    .deals-all-grid-6 {
        grid-template-columns: 1fr;
        max-width: none;
    }

    /* === REVIEWS SECTION MOBILE === */
    .experiences-section {
        padding: 40px 0 50px;
        overflow: hidden;
    }

    .experiences-ticker-wrapper {
        flex-direction: column;
        gap: 0;
        margin: 0;
    }

    .ticker-arrow {
        display: none;
    }

    .experiences-slider {
        width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .experiences-track {
        gap: 0;
        transition: transform 0.4s ease;
    }

    .experience-card {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        padding: 25px 20px;
        margin: 0;
        box-sizing: border-box;
        border-radius: 12px;
    }

    .experience-avatar {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 14px;
    }

    .experience-avatar svg {
        width: 28px;
        height: 28px;
    }

    .experience-author {
        font-size: 1.05rem;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .experience-rating {
        margin-bottom: 14px;
    }

    .experience-rating .star {
        font-size: 1.2rem;
        margin: 0 1px;
    }

    .experience-text {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
        max-width: 100%;
    }

    .ticker-dots {
        margin-top: 25px;
        gap: 10px;
    }

    .ticker-dot {
        width: 10px;
        height: 10px;
    }

    .ticker-dot.active {
        transform: scale(1.2);
    }

    /* Footer mobile */
    .site-end-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-end-column ul {
        margin-bottom: 20px;
    }

    .site-end-buttons {
        max-width: 200px;
        margin: 0 auto;
    }

    /* Hero section mobile */
    .main-visual-title {
        font-size: 2rem;
    }

    .main-visual-bonus {
        flex-direction: column;
        text-align: center;
    }

    /* Info table mobile */
    .record-table td {
        display: block;
        padding: 10px 15px;
    }

    .record-table td:first-child {
        width: 100%;
        padding-bottom: 5px;
    }

    /* Payment section mobile */
    .funding-grid {
        grid-template-columns: 1fr;
    }

    /* Section titles mobile */
    .part-heading h2 {
        font-size: 1.5rem;
    }

    /* Content section mobile */
    .copy-section h2 {
        font-size: 1.5rem;
    }

    .copy-section h3 {
        font-size: 1.25rem;
    }

    /* Tables: horizontal scroll on mobile */
    .copy-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .masthead,
    .site-base,
    .btn,
    .ticker-arrow,
    .ticker-dots {
        display: none !important;
    }
}

/* ========================================
   Hero Section - Reference Style (Golden Background)
   ======================================== */

/* Hero title - white on golden background */
.main-visual-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Hero subtitle - white text on golden background */
.main-visual-subtitle {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 550px;
}

/* Inline Bonus Display (like reference) */
/* ========================================
   Premium Bonus Box - Luxury Casino Design
   ======================================== */
.main-visual-deal-extra-box {
    position: relative;
    background: linear-gradient(135deg,
        var(--deal-extra-bg-dark) 0%,
        var(--deal-extra-bg) 30%,
        var(--deal-extra-bg-light) 50%,
        var(--deal-extra-bg) 70%,
        var(--deal-extra-bg-dark) 100%);
    background-size: 300% 300%;
    animation: casinoGradient 8s ease infinite;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0;
    margin: 20px 0 25px 0;
    overflow: visible;
    max-width: 500px;
    box-shadow:
        0 0 0 1px rgba(var(--btn-bg-rgb), 0.3),
        0 10px 40px rgba(var(--deal-extra-bg-rgb), 0.5),
        0 0 60px rgba(var(--btn-bg-rgb), 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Animated golden border */
.main-visual-deal-extra-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--btn-bg), var(--btn-bg-dark), var(--accent-orange), var(--btn-bg),
        var(--btn-bg-light), var(--btn-bg), var(--btn-bg-dark), var(--btn-bg));
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: borderShine 4s linear infinite;
}

/* Inner background to cover the border gradient */
.main-visual-deal-extra-box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg,
        var(--deal-extra-bg-dark) 0%,
        var(--deal-extra-bg) 30%,
        var(--deal-extra-bg-light) 50%,
        var(--deal-extra-bg) 70%,
        var(--deal-extra-bg-dark) 100%);
    background-size: 300% 300%;
    animation: casinoGradient 8s ease infinite;
    border-radius: 14px;
    z-index: -1;
}

@keyframes casinoGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes borderShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* Animated glow effect behind the box */
.deal-extra-box-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg,
        var(--btn-bg), var(--deal-extra-bg-light), var(--accent-orange), var(--btn-bg),
        var(--accent-orange), var(--deal-extra-bg-light), var(--btn-bg));
    background-size: 400% 400%;
    border-radius: 24px;
    z-index: -2;
    animation: glowRotate 6s ease infinite;
    filter: blur(20px);
    opacity: 0.6;
}

@keyframes glowRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Inner content wrapper */
.deal-extra-box-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px 18px 25px;
    position: relative;
    z-index: 1;
}

/* Gift icon area with sparkles */
.deal-extra-icon-area {
    flex-shrink: 0;
}

.deal-extra-icon-circle {
    position: relative;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(var(--btn-bg-rgb), 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.prize-icon {
    font-size: 3.2rem;
    animation: giftPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(var(--btn-bg-rgb), 0.5));
}

@keyframes giftPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(-3deg); }
    50% { transform: scale(1.1) rotate(0deg); }
    75% { transform: scale(1.05) rotate(3deg); }
}

/* Sparkle particles */
.glint {
    position: absolute;
    font-size: 0.9rem;
    animation: sparkleFloat 1.5s ease-in-out infinite;
    opacity: 0;
    filter: drop-shadow(0 0 3px rgba(var(--btn-bg-rgb), 0.8));
}

.glint-1 { top: -5px; right: -5px; animation-delay: 0s; }
.glint-2 { top: 50%; right: -12px; animation-delay: 0.5s; }
.glint-3 { bottom: -5px; left: 25%; animation-delay: 1s; }

@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

/* Bonus content text */
.deal-extra-box-content {
    flex: 1;
}

.deal-extra-headline {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.deal-extra-percent {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-light) 50%, var(--btn-bg-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.deal-extra-amount {
    font-weight: 800;
    color: var(--btn-bg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.deal-extra-spins {
    color: #4ade80;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.deal-extra-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0 0 12px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Social proof urgency indicator */
.deal-extra-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--btn-bg-rgb), 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(var(--btn-bg-rgb), 0.25);
}

.deadline-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px #4ade80;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px #4ade80; }
    50% { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 4px #4ade80; }
}

.deadline-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.deadline-text strong {
    color: var(--btn-bg);
    font-weight: 700;
}

/* Premium Gold CTA Button */
.btn-redeem-deal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: calc(100% - 36px);
    margin: 5px 18px 18px 18px;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-dark) 25%, var(--btn-bg-light) 50%, var(--btn-bg-dark) 75%, var(--btn-bg) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--btn-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow:
        0 4px 20px rgba(var(--btn-bg-rgb), 0.5),
        0 8px 30px rgba(var(--btn-bg-rgb), 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    animation: btnGradient 2s ease infinite;
    text-decoration: none;
}

@keyframes btnGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-redeem-deal:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(var(--btn-bg-rgb), 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--btn-text);
}

.btn-redeem-deal:active {
    transform: translateY(-1px) scale(1.01);
}

/* Button shimmer effect */
.btn-glitter {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-msg {
    position: relative;
    z-index: 1;
}

.btn-marker {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 700;
    animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Mobile responsive for bonus box */
@media (max-width: 768px) {
    .main-visual-deal-extra-box {
        max-width: 100%;
        margin: 15px 0 20px 0;
    }

    .deal-extra-box-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px 18px 15px 18px;
    }

    .deal-extra-icon-circle {
        margin: 0 auto;
    }

    .deal-extra-headline {
        font-size: 1.2rem;
    }

    .deal-extra-percent {
        font-size: 1.4rem;
    }

    .btn-redeem-deal {
        font-size: 1rem;
        padding: 14px 20px;
        width: calc(100% - 28px);
        margin: 5px 14px 14px 14px;
    }

    .deal-extra-urgency {
        justify-content: center;
    }

    .deal-extra-box-glow {
        filter: blur(15px);
        opacity: 0.5;
    }
}

/* ========================================
   Game Categories - Reference Style (Horizontal Buttons)
   ======================================== */
.game-groups-ref {
    padding: 40px 0 50px;
    background-color: var(--primary-dark);
}

.catalogs-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 20px;
}

/* Category Button Style */
.select-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background-color: var(--primary-dark);
    border: 2px solid var(--pattern-bg);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.select-btn:hover {
    border-color: var(--accent-gold);
    background-color: color-mix(in srgb, var(--pattern-bg) 10%, transparent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--pattern-bg) 20%, transparent);
}

/* Category Icon */
.select-btn-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    /* Icons are already white/light colored */
}

/* Category Text */
.select-btn-text {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

/* Arrow on right side */
.select-btn-arrow {
    font-size: 1.5rem;
    color: var(--pattern-bg);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.select-btn:hover .select-btn-arrow {
    transform: translateX(5px);
    color: var(--accent-gold);
}

/* Responsive for category buttons */
@media (max-width: 992px) {
    .catalogs-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .catalogs-buttons {
        grid-template-columns: 1fr;
    }

    .select-btn {
        padding: 15px 20px;
    }

    .select-btn-icon {
        width: 40px;
        height: 40px;
    }

    .select-btn-text {
        font-size: 1rem;
    }
}

/* ========================================
   Section Title with Subtitle (Reference Style)
   ======================================== */
.part-heading {
    text-align: center;
    margin-bottom: 40px;
}

.part-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
}

.part-subheading {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   Info Table - Reference Style
   ======================================== */
.record-table {
    background-color: transparent;
    border-radius: 0;
    border: none;
    margin: 30px 0;
}

.record-table table {
    width: 100%;
    border-collapse: collapse;
}

.record-table tr {
    border-bottom: 1px solid var(--border-color);
}

.record-table tr:last-child {
    border-bottom: none;
}

.record-table td {
    padding: 18px 0;
}

.record-table td:first-child {
    color: var(--accent-gold);
    font-weight: 500;
    width: 30%;
    padding-right: 20px;
}

.record-table td:last-child {
    color: var(--text-secondary);
    font-weight: 400;
}

/* Hero responsive adjustments */
@media (max-width: 768px) {
    .main-visual-title {
        font-size: 2rem;
    }

    .deal-extra-amount-text {
        font-size: 1.8rem;
    }

    .deal-extra-prize-icon {
        font-size: 2rem;
    }

    .main-visual-deal-extra-extra {
        font-size: 1rem;
    }

    .main-visual-inner {
        min-height: auto;
    }
}

/* ========================================
   Sticky Bonus Button
   Appears when hero bonus box scrolls out of view
   ======================================== */
.locked-promo-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    background: linear-gradient(135deg,
        var(--deal-extra-bg-dark) 0%,
        var(--deal-extra-bg) 30%,
        var(--deal-extra-bg-light) 50%,
        var(--deal-extra-bg) 70%,
        var(--deal-extra-bg-dark) 100%);
    background-size: 300% 300%;
    animation: casinoGradient 8s ease infinite;
    border-radius: 50px;
    box-shadow:
        0 0 0 2px rgba(var(--btn-bg-rgb), 0.6),
        0 8px 30px rgba(var(--deal-extra-bg-rgb), 0.6),
        0 0 40px rgba(var(--btn-bg-rgb), 0.2);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease,
                visibility 0.3s ease;
}

.locked-promo-btn.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.locked-promo-btn.hidden-by-user {
    transform: translateX(-50%) translateY(100px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Glow effect */
.locked-promo-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg,
        var(--btn-bg), var(--deal-extra-bg-light), var(--accent-orange), var(--btn-bg));
    background-size: 400% 400%;
    border-radius: 54px;
    z-index: -1;
    animation: glowRotate 4s ease infinite;
    filter: blur(10px);
    opacity: 0.5;
}

/* Main link area */
.locked-promo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 8px 12px 16px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.locked-promo-icon {
    font-size: 1.4rem;
    animation: giftPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(var(--btn-bg-rgb), 0.5));
}

.locked-promo-text {
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.locked-promo-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-right: 2px;
}

.locked-promo-highlight {
    color: var(--btn-bg);
    font-weight: 800;
}

.locked-promo-main {
    display: inline;
}

.locked-promo-extra {
    color: #4ade80;
    font-weight: 600;
    font-size: 0.85rem;
}

.locked-promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-dark) 50%, var(--btn-bg) 100%);
    background-size: 200% 200%;
    animation: btnGradient 2s ease infinite;
    color: var(--btn-text);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(var(--btn-bg-rgb), 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.locked-promo-link:hover .locked-promo-cta {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(var(--btn-bg-rgb), 0.6);
}

/* CTA text visibility */
.locked-promo-cta .activate-short {
    display: none;
}

.locked-promo-cta .activate-full {
    display: inline;
}

/* Close button - Desktop */
.locked-promo-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 6px;
    margin-right: 12px;
    order: 2;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.locked-promo-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.locked-promo-close svg {
    width: 12px;
    height: 12px;
}

/* Mobile adjustments - Compact optimized design */
@media (max-width: 576px) {
    .locked-promo-btn {
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateX(0) translateY(100%);
        border-radius: 16px 16px 0 0;
        flex-direction: row;
        padding: 0;
    }

    .locked-promo-btn::before {
        border-radius: 20px 20px 0 0;
    }

    .locked-promo-btn.visible {
        transform: translateX(0) translateY(0);
    }

    .locked-promo-btn.hidden-by-user {
        transform: translateX(0) translateY(100%) !important;
    }

    .locked-promo-link {
        flex: 1;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 12px 16px;
        padding-top: 14px;
        white-space: normal;
    }

    .locked-promo-icon {
        font-size: 1.6rem;
        flex-shrink: 0;
    }

    .locked-promo-text {
        flex: 0 1 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
        line-height: 1.3;
    }

    .locked-promo-label {
        display: none;
    }

    .locked-promo-text::before {
        content: none;
    }

    .locked-promo-highlight {
        font-size: 1rem;
        font-weight: 700;
    }

    .locked-promo-extra {
        font-size: 0.8rem;
        display: block;
        width: 100%;
    }

    .locked-promo-cta {
        padding: 10px 18px;
        font-size: 0.8rem;
        border-radius: 25px;
        flex-shrink: 0;
        white-space: nowrap;
        font-weight: 800;
    }

    .locked-promo-cta .activate-short {
        display: inline;
    }

    .locked-promo-cta .activate-full {
        display: none;
    }

    /* Close button - small and unobtrusive at top-right */
    .locked-promo-close {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 20px;
        height: 20px;
        margin: 0;
        order: 0;
        background: rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
        z-index: 10;
        opacity: 0.7;
        border-radius: 50%;
    }

    .locked-promo-close:hover {
        opacity: 1;
        background: rgba(0, 0, 0, 0.7);
    }

    .locked-promo-close svg {
        width: 10px;
        height: 10px;
    }

    .locked-promo-main {
        display: block;
        font-size: 0.95rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .locked-promo-link {
        padding: 8px 10px;
        gap: 8px;
    }

    .locked-promo-icon {
        font-size: 1.5rem;
    }

    .locked-promo-highlight {
        font-size: 0.9rem;
    }

    .locked-promo-extra {
        font-size: 0.75rem;
    }

    .locked-promo-cta {
        padding: 10px 14px;
        font-size: 0.75rem;
    }

    .locked-promo-main {
        font-size: 0.9rem;
    }

    .locked-promo-close {
        width: 16px;
        height: 16px;
        top: 3px;
        right: 3px;
    }

    .locked-promo-close svg {
        width: 7px;
        height: 7px;
    }

    /* Reviews on very small screens */
    .experience-card {
        padding: 20px 15px;
    }

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


    /* Company info very small */
    .enterprise-data-section .record-table td:first-child {
        padding: 12px 14px 4px;
        font-size: 0.75rem;
    }

    .enterprise-data-section .record-table td:last-child {
        padding: 0 14px 12px;
        font-size: 0.9rem;
    }
}

/* ========================================
   About Section - Comprehensive SEO Content
   ======================================== */
.background-section {
    padding: 40px 0 50px;
    background-color: var(--primary-dark);
}

/* About Header with Dates */
.background-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.background-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.background-dates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.timestamp-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.timestamp-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.timestamp-value {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.timestamp-separator {
    color: var(--border-color);
    font-size: 1.2rem;
}

/* About Body */
.background-body {
    max-width: 960px;
    margin: 0 auto;
}

.background-body h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin: 0 0 25px;
    font-weight: 600;
}

.background-body h4 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin: 20px 0 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.background-body h4::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.background-body h5 {
    font-size: 1.15rem;
    color: var(--text-light);
    margin: 20px 0 10px;
    font-weight: 600;
}

.background-body h6 {
    font-size: 0.95rem;
    color: var(--accent-gold);
    margin: 14px 0 8px;
    font-weight: 600;
}

.background-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.background-body ol,
.background-body ul { color: var(--text-secondary); padding-left: 40px; margin: 16px 0; line-height: 1.85; font-size: 1.05rem; }
.background-body ul { list-style-type: disc !important; }
.background-body ol { list-style-type: decimal !important; }
.background-body li { margin-bottom: 6px; }
.background-body ul li::marker { color: var(--accent-gold); }
.background-body ol li::marker { color: var(--accent-gold); }

.background-body table { width: 100%; border-collapse: collapse; margin: 16px 0; background: var(--card-bg); border-radius: 8px; overflow: hidden; }
.background-body th { background: var(--primary-teal); color: var(--text-light); padding: 12px 16px; text-align: left; font-weight: 600; }
.background-body td { padding: 12px 16px; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.background-body tr:last-child td { border-bottom: none; }

/* Play Button */
.engage-btn { cursor: pointer; position: relative; }
.engage-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(var(--btn-bg-rgb), 0.3); }


/* Company Info Section */
.enterprise-data-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.enterprise-data-section h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600;
}

.enterprise-data-section .record-table {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.enterprise-data-section .record-table table {
    margin: 0;
}

.enterprise-data-section .record-table tr {
    border-bottom: 1px solid var(--border-color);
}

.enterprise-data-section .record-table tr:last-child {
    border-bottom: none;
}

.enterprise-data-section .record-table td {
    padding: 18px 25px;
}

.enterprise-data-section .record-table td:first-child {
    width: 200px;
    color: var(--text-light);
    font-weight: 500;
    background: rgba(0, 65, 72, 0.3);
}

/* About CTA */
.background-cta {
    margin-top: 60px;
    padding-top: 40px;
    text-align: center;
}

.btn-expanded {
    padding: 20px 50px;
    font-size: 1.2rem;
    border-radius: 12px;
}

/* About Section Responsive */
@media (max-width: 992px) {
    .background-header h2 {
        font-size: 2rem;
    }

    .background-body h3 {
        font-size: 1.5rem;
    }

}

@media (max-width: 768px) {
    .background-section {
        padding: 40px 0 50px;
    }

    .background-header {
        margin-bottom: 40px;
        padding-bottom: 25px;
    }

    .background-header h2 {
        font-size: 1.75rem;
    }

    .background-dates {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .timestamp-separator {
        display: none;
    }

    .timestamp-item {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .background-header {
        text-align: left;
    }

    .background-header h2 {
        text-align: left;
    }

    .background-body h3 {
        font-size: 1.3rem;
    }

    .background-body p {
        font-size: 1rem;
    }

    .background-body h4 {
        font-size: 1.2rem;
    }

    .background-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .background-body h4::before {
        height: 20px;
    }

    .enterprise-data-section {
        margin-top: 40px;
        padding-top: 40px;
    }

    .enterprise-data-section h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    /* === COMPANY INFO TABLE MOBILE === */
    .enterprise-data-section .record-table {
        border-radius: 12px;
    }

    .enterprise-data-section .record-table table {
        display: block;
    }

    .enterprise-data-section .record-table tbody {
        display: flex;
        flex-direction: column;
    }

    .enterprise-data-section .record-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid var(--border-color);
        padding: 0;
    }

    .enterprise-data-section .record-table tr:last-child {
        border-bottom: none;
    }

    .enterprise-data-section .record-table td {
        display: block;
        width: 100% !important;
    }

    .enterprise-data-section .record-table td:first-child {
        width: 100% !important;
        padding: 14px 16px 6px;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--accent-gold);
        background: transparent;
        border-bottom: none;
    }

    .enterprise-data-section .record-table td:last-child {
        padding: 0 16px 14px;
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.5;
    }

    .background-cta {
        margin-top: 40px;
        padding-top: 30px;
    }

    .btn-expanded {
        padding: 16px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
    }
}

/* ========================================
   Premium Footer Bonus Box (Hero Style)
   ======================================== */
.site-end-deal-extra-box {
    position: relative;
    background: linear-gradient(135deg,
        var(--deal-extra-bg-dark) 0%,
        var(--deal-extra-bg) 30%,
        var(--deal-extra-bg-light) 50%,
        var(--deal-extra-bg) 70%,
        var(--deal-extra-bg-dark) 100%);
    background-size: 300% 300%;
    animation: casinoGradient 8s ease infinite;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 50px;
    overflow: visible;
    box-shadow:
        0 0 0 1px rgba(var(--btn-bg-rgb), 0.3),
        0 10px 40px rgba(var(--deal-extra-bg-rgb), 0.5),
        0 0 60px rgba(var(--btn-bg-rgb), 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-end-deal-extra-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--btn-bg), var(--btn-bg-dark), var(--accent-orange), var(--btn-bg),
        var(--btn-bg-light), var(--btn-bg), var(--btn-bg-dark), var(--btn-bg));
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: borderShine 4s linear infinite;
}

.site-end-deal-extra-box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg,
        var(--deal-extra-bg-dark) 0%,
        var(--deal-extra-bg) 30%,
        var(--deal-extra-bg-light) 50%,
        var(--deal-extra-bg) 70%,
        var(--deal-extra-bg-dark) 100%);
    background-size: 300% 300%;
    animation: casinoGradient 8s ease infinite;
    border-radius: 14px;
    z-index: -1;
}

.site-end-deal-extra-box .deal-extra-box-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg,
        var(--btn-bg), var(--deal-extra-bg-light), var(--accent-orange), var(--btn-bg),
        var(--accent-orange), var(--deal-extra-bg-light), var(--btn-bg));
    background-size: 400% 400%;
    border-radius: 24px;
    z-index: -2;
    animation: glowRotate 6s ease infinite;
    filter: blur(20px);
    opacity: 0.4;
}

.site-end-deal-extra-inner {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    position: relative;
    z-index: 1;
}

.site-end-deal-extra-icon {
    position: relative;
    flex-shrink: 0;
}

.site-end-deal-extra-icon .prize-icon {
    font-size: 3rem;
    animation: giftPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(var(--btn-bg-rgb), 0.5));
}

.site-end-deal-extra-icon .glint {
    position: absolute;
    font-size: 0.8rem;
    animation: sparkleFloat 1.5s ease-in-out infinite;
    opacity: 0;
}

.site-end-deal-extra-icon .glint-1 {
    top: -5px;
    right: -5px;
    animation-delay: 0s;
}

.site-end-deal-extra-icon .glint-2 {
    bottom: 0;
    right: -10px;
    animation-delay: 0.5s;
}

.site-end-deal-extra-content {
    flex: 1;
}

.site-end-deal-extra-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 5px;
}

.site-end-deal-extra-headline .deal-extra-percent {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-light) 50%, var(--btn-bg-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-end-deal-extra-headline .deal-extra-amount {
    font-weight: 800;
    color: var(--btn-bg);
}

.site-end-deal-extra-headline .deal-extra-spins {
    color: #4ade80;
    font-weight: 700;
}

.site-end-deal-extra-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.ground-btn-claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--btn-bg) 0%, var(--btn-bg-dark) 25%, var(--btn-bg-light) 50%, var(--btn-bg-dark) 75%, var(--btn-bg) 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--btn-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(var(--btn-bg-rgb), 0.4);
    transition: all 0.3s ease;
    animation: btnGradient 2s ease infinite;
    text-decoration: none;
    flex-shrink: 0;
}

.ground-btn-claim:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(var(--btn-bg-rgb), 0.6);
    color: var(--btn-text);
}

.ground-btn-claim .btn-glitter {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 2.5s infinite;
}

.ground-btn-claim .btn-msg {
    position: relative;
    z-index: 1;
}

.ground-btn-claim .btn-marker {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    animation: arrowBounce 1s ease-in-out infinite;
}

/* Footer Bonus Mobile */
@media (max-width: 768px) {
    .site-end-deal-extra-inner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .site-end-deal-extra-headline {
        font-size: 1.2rem;
    }

    .site-end-deal-extra-headline .deal-extra-percent {
        font-size: 1.4rem;
    }

    .ground-btn-claim {
        width: 100%;
        padding: 14px 25px;
    }
}

/* ========================================
   Footer Social Media Icons
   ======================================== */
.site-end-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.channel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.channel-icon svg {
    width: 18px;
    height: 18px;
}

.channel-icon:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   Footer Contact List
   ======================================== */
.correspond-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.correspond-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.correspond-list li:last-child {
    margin-bottom: 0;
}

.correspond-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--accent-gold);
    margin-top: 2px;
}

.correspond-list a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.correspond-list a:hover {
    color: var(--accent-gold);
}

/* Footer Brand Column */
.site-end-brand .site-end-desc {
    margin-bottom: 0;
}

/* Footer Responsive Adjustments */
@media (max-width: 992px) {
    .site-end-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-end-brand {
        grid-column: span 2;
        text-align: center;
    }

    .site-end-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .site-end-content {
        grid-template-columns: 1fr;
    }

    .site-end-brand {
        grid-column: span 1;
    }
}

/* ========================================
   Payment Section - Front Page
   ======================================== */
.funding-section {
    padding: 40px 0 50px;
    background-color: var(--primary-dark);
}

.funding-methods-unified {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.funding-method {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
}

.funding-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Individual payment icon backgrounds */
.funding-method[title="Visa"] {
    background: #1A1F71;
}
.funding-method[title="Mastercard"] {
    background: #000000;
}
.funding-method[title="Apple Pay"] {
    background: #ffffff;
}
.funding-method[title="Google Pay"] {
    background: #ffffff;
}
.funding-method[title="PayPal"] {
    background: #ffffff;
}
.funding-method[title="Skrill"] {
    background: #ffffff;
}
.funding-method[title="Neteller"] {
    background: #83C93B;
}
.funding-method[title="Bitcoin"] {
    background: #F7931A;
}
.funding-method[title="Ethereum"] {
    background: #627EEA;
}
.funding-method[title="Tether USDT"] {
    background: #50AF95;
}
.funding-method[title="Litecoin"] {
    background: #345D9D;
}
.funding-method[title="Bank Transfer"] {
    background: #2E7D32;
}

/* Responsive payment methods */
@media (max-width: 768px) {
    .funding-methods-unified {
        gap: 10px;
    }

    .funding-method {
        width: 70px;
        height: 45px;
    }
}

/* ========================================
   Best Slots Section — Carousel Layout
   ======================================== */
.picked-games-section {
    padding: 40px 0 50px;
    background-color: var(--primary-dark);
}

.jackpot-area {
    margin-bottom: 28px;
}

.jackpot-area-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light, #fff8e8);
    margin: 0 0 14px;
    padding-left: 50px;
}

@media (max-width: 768px) {
    .jackpot-area-title {
        padding-left: 0;
    }
}

.jackpot-scroll-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jackpot-scroll {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.jackpot-scroll::-webkit-scrollbar {
    display: none;
}

.jackpot-strip {
    display: flex;
    gap: 16px;
}

.jackpot-card-card {
    flex: 0 0 calc((100% - 80px) / 6);
    scroll-snap-align: start;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.jackpot-card-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.jackpot-card-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 250 / 180;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.jackpot-card-name {
    display: block;
    padding: 8px 10px;
    font-size: 0.72rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Slots Carousel Arrows */
.jackpot-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.jackpot-nav:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.jackpot-nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.jackpot-nav.hidden {
    visibility: hidden;
}

/* Best Slots Carousel Responsive */
@media (max-width: 1200px) {
    .jackpot-card-card {
        flex: 0 0 calc((100% - 48px) / 4);
    }
}

@media (max-width: 768px) {
    .jackpot-card-card {
        flex: 0 0 calc((100% - 32px) / 3);
    }

    .jackpot-card-name {
        font-size: 0.75rem;
        padding: 8px;
    }

    .jackpot-nav {
        display: none;
    }

    .jackpot-scroll-wrapper {
        gap: 0;
    }
}

@media (max-width: 480px) {
    .jackpot-card-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

/* ========================================
   View More Buttons (hidden by default,
   shown via dynamic CSS when page is published)
   ======================================== */
.picked-games-view-more,
.deals-all-view-more {
    display: none;
    justify-content: center;
    margin-top: 30px;
}

.picked-games-view-more .btn,
.deals-all-view-more .btn {
    min-width: 180px;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.climb-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 20, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    z-index: 9997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, color 0.2s;
}

.climb-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.climb-top:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 20, 35, 1);
}

.climb-top svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .climb-top {
        bottom: 90px;
    }
}

/* ========================================
   Cookie Consent Bar
   ======================================== */
.policy-bar-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 14px;
    max-width: 200px;
    background: rgba(0, 20, 35, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    z-index: 9998;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.policy-bar-bar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.policy-bar-text {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.policy-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.policy-bar-link {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.policy-bar-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.policy-bar-accept {
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.policy-bar-accept:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

@media (max-width: 768px) {
    .policy-bar-bar {
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        border-radius: 0;
        flex-direction: row;
        align-items: center;
        padding: 10px 16px;
        gap: 12px;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 480px) {
    .policy-bar-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .policy-bar-text {
        font-size: 0.75rem;
    }
}

/* ========================================
   Focus Indicators (Accessibility)
   ======================================== */
.btn:focus-visible,
.away-link:focus-visible,
.inquiry-question:focus-visible,
.select-btn:focus-visible,
.jackpot-card-card:focus-visible,
.ticker-arrow:focus-visible,
.ticker-dot:focus-visible,
.climb-top:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ========================================
   External Link Styling (data-ref elements)
   ======================================== */
.away-link {
    cursor: pointer;
    user-select: none;
}

/* ========================================
   Legal Content Pages (Terms, Privacy, Cookies)
   ======================================== */
.rules-text-section {
    padding: 60px 0 80px;
}

.rules-text {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 50px;
    border: 1px solid var(--border-color);
}

.rules-text h2 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.rules-text h2:first-child {
    margin-top: 0;
}

.rules-text h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-top: 25px;
    margin-bottom: 10px;
}

.rules-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.rules-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.rules-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.rules-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
}

.rules-text em {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .rules-text {
        padding: 30px 20px;
    }
}

/* ========================================
   Author Links
   ======================================== */
.specialist-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.specialist-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.specialist-link:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.specialist-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ========== Login Page: How to Get Started ========== */
.easy-guide-section,
.gateway-info-section {
    padding: 60px 0;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.tutorial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
}

.tutorial-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.tutorial-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.tutorial-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.gateway-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.record-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.record-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.record-card h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-orange));
    border-radius: 2px;
    flex-shrink: 0;
}

.record-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gateway-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}
