.casino-main {
    position: relative;
    z-index: 1;
}

/* ============= OVERVIEW CARDS ============= */
.casino-overview {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.02) 50%, transparent 100%);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.overview-card {
    position: relative;
    background: linear-gradient(160deg, var(--dark-card) 0%, var(--dark-card-2) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.overview-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(500px circle at var(--mx, 50%) var(--my, -20%), rgba(255, 215, 0, 0.12), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.overview-card:hover::after { opacity: 1; }

.overview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--gold-soft), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overview-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.1);
}
.overview-card:hover::before { opacity: 1; }

.overview-icon-badge {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto 1.25rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.overview-card:hover .overview-icon-badge {
    transform: scale(1.12) rotate(-6deg) translateY(-4px);
}

.overview-icon-badge svg {
    width: 32px;
    height: 32px;
}

.icon-slot {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(220, 38, 38, 0.12));
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    border: 1px solid var(--dark-border);
}

.icon-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.18), rgba(147, 51, 234, 0.12));
    color: #f87171;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.icon-ball {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(16, 185, 129, 0.12));
    color: #4ade80;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.icon-fish {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(147, 51, 234, 0.12));
    color: #60a5fa;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.overview-card h3 {
    position: relative;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.625rem;
    transition: color 0.3s ease;
}
.overview-card:hover h3 { color: var(--gold); text-shadow: 0 0 18px var(--gold-glow); }

.overview-card p {
    position: relative;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============= AD WRAP ============= */
.casino-ad-wrap {
    margin: 2rem auto;
}

.casino-ad-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--dark-border);
    position: relative;
}
.casino-ad-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,215,0,0.15);
}

/* ============= FEATURES LAYOUT ============= */
.casino-features {
    background: linear-gradient(180deg, transparent, rgba(13, 13, 26, 0.6) 50%, transparent);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-visual {
    position: relative;
    min-height: 480px;
}

.features-visual-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--dark-card) 0%, var(--dark-bg-3) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: floatCard 6s ease-in-out infinite;
}

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

.visual-top-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--dark-border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }

.visual-title {
    margin-left: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.visual-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.visual-balance {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(220, 38, 38, 0.05));
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}
.visual-balance::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.2), transparent 70%);
    animation: spinCW 20s linear infinite;
    pointer-events: none;
}

.vb-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-family: 'Bebas Neue', sans-serif;
}

.vb-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text-white);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.vb-value .count-up {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 24px var(--gold-glow);
}

.vb-change {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #4ade80;
    font-weight: 600;
    background: rgba(74, 222, 128, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.visual-jackpot {
    position: relative;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(255, 215, 0, 0.08));
    border: 1px solid rgba(220, 38, 38, 0.25);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    overflow: hidden;
}

.jackpot-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.22) 0%, transparent 60%);
    animation: jackpotSpin 10s linear infinite;
}

@keyframes jackpotSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vj-label {
    position: relative;
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 0.25rem;
    z-index: 1;
}

.vj-value {
    position: relative;
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: valueGlow 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes valueGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.visual-games-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.mini-game {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border-2);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.mini-game:hover {
    border-color: var(--gold);
    background: var(--gold-soft);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 22px rgba(255,215,0,0.15);
}

.mini-game span {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease;
}
.mini-game:hover span { transform: scale(1.15); }

.mini-game small {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: #4ade80;
}

.floating-badge {
    position: absolute;
    z-index: 10;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.floating-badge-1 {
    top: 10%;
    left: -6%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a0f;
    animation: floatBadge 4s ease-in-out infinite;
}
.floating-badge-1 svg { width: 28px; height: 28px; }

.floating-badge-2 {
    bottom: 15%;
    right: -5%;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    animation: floatBadge 4.5s ease-in-out infinite 0.5s;
}

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

/* Feature List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-row {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent);
    border: 1px solid var(--dark-border-2);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.feature-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    transition: left 0.7s ease;
}
.feature-row:hover::after { left: 100%; }

.feature-row:hover {
    border-left-color: var(--gold);
    background: linear-gradient(90deg, var(--gold-soft), rgba(255,215,0,0.03));
    transform: translateX(6px);
    border-color: var(--dark-border);
    box-shadow: -4px 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,215,0,0.2);
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.feature-icon-wrap svg { width: 26px; height: 26px; }
.feature-row:hover .feature-icon-wrap { transform: scale(1.08) rotate(-3deg); }

.feature-icon-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    color: var(--gold);
    border: 1px solid var(--dark-border);
}

.feature-icon-red {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.18), rgba(220, 38, 38, 0.04));
    color: #f87171;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.feature-icon-purple {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.18), rgba(147, 51, 234, 0.04));
    color: #c084fc;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.feature-text { position: relative; z-index: 1; }
.feature-text h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.35rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============= ADVANTAGES CIRCLE ============= */
.casino-advantages {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.02) 0%, transparent 50%, rgba(220, 38, 38, 0.02) 100%);
}

.advantages-circle-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.advantages-circle {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 0 auto 3rem;
    aspect-ratio: 1 / 1;
    color: var(--gold);
}

.adv-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.25), transparent 60%),
        linear-gradient(145deg, var(--dark-card), var(--dark-bg-3));
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(255, 215, 0, 0.05),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 5;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.05), 0 0 40px rgba(255, 215, 0, 0.3), 0 20px 50px rgba(0, 0, 0, 0.6); }
    50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0.08), 0 0 70px rgba(255, 215, 0, 0.5), 0 20px 50px rgba(0, 0, 0, 0.6); }
}

.circle-logo-icon {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--gold), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 2px 8px var(--gold-glow));
}

.circle-logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.adv-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 280px;
    z-index: 5;
    transition: all 0.4s ease;
}
.adv-node:hover { transform: scale(1.04); }

.adv-top {
    top: -2%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    text-align: center;
    width: 240px;
}
.adv-top:hover { transform: translateX(-50%) translateY(-4px); }

.adv-right {
    top: 50%;
    right: -4%;
    transform: translateY(-50%);
}
.adv-right:hover { transform: translateY(-50%) translateX(4px); }

.adv-bottom {
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column-reverse;
    text-align: center;
    width: 240px;
}
.adv-bottom:hover { transform: translateX(-50%) translateY(4px); }

.adv-left {
    top: 50%;
    left: -4%;
    transform: translateY(-50%);
    flex-direction: row-reverse;
}
.adv-left:hover { transform: translateY(-50%) translateX(-4px); }

.adv-node-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--dark-card), var(--dark-bg-3));
    border: 1.5px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-cream);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}
.adv-node-icon svg { width: 26px; height: 26px; }
.adv-node:hover .adv-node-icon {
    transform: scale(1.08);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 24px var(--gold-glow);
}

.node-gold {
    color: var(--gold);
    border-color: var(--dark-border);
}

.adv-node-info h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}
.adv-node-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.advantages-cta {
    text-align: center;
}

/* ============= ARTICLE SECTION ============= */
.casino-article {
    padding: 3rem 0;
}

.article-header-wrap {
    max-width: 880px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.article-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border-2);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.article-breadcrumbs a { color: var(--gold); }
.article-breadcrumbs a:hover { text-decoration: underline; }
.article-breadcrumbs .sep { color: var(--text-dim); }
.article-breadcrumbs .current { color: var(--text-cream); }

.article-title-casino {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--text-white) 0%, var(--text-cream) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-meta-casino {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.meta-tag svg { width: 14px; height: 14px; }
.meta-description {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    border-color: var(--dark-border-2);
    max-width: 500px;
}

.article-body-wrap {
    max-width: 880px;
    margin: 0 auto;
}

.article-featured-image {
    margin-bottom: 2.5rem;
}

.featured-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--dark-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.featured-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,215,0,0.15);
}

.featured-image-frame img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.featured-image-frame:hover img { transform: scale(1.04); }

.featured-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 18, 0.65) 100%),
                linear-gradient(0deg, transparent 0%, rgba(255, 215, 0, 0.04) 100%),
                radial-gradient(ellipse at 30% 20%, rgba(255,215,0,0.08), transparent 50%);
    pointer-events: none;
}

.article-content-casino {
    background: linear-gradient(160deg, var(--dark-card) 0%, var(--dark-card-2) 100%);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--text-cream);
    line-height: 1.85;
    font-size: 1.02rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}
.article-content-casino::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.article-content-casino p {
    margin-bottom: 1.5rem;
    color: var(--text-cream);
    font-size: 1.02rem;
    line-height: 1.85;
}

.article-content-casino h2,
.article-content-casino h3,
.article-content-casino h4 {
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 2rem 0 0.875rem;
    line-height: 1.35;
}
.article-content-casino h2 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--text-white), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.article-content-casino h3 { font-size: 1.3rem; }
.article-content-casino h4 { font-size: 1.1rem; }

.article-content-casino a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--dark-border);
    transition: all 0.3s ease;
}
.article-content-casino a:hover {
    text-decoration-color: var(--gold);
    text-shadow: 0 0 16px var(--gold-glow);
}

.article-content-casino ul,
.article-content-casino ol {
    margin: 0 0 1.5rem 1.5rem;
    line-height: 1.85;
}
.article-content-casino li {
    margin-bottom: 0.5rem;
    color: var(--text-cream);
}
.article-content-casino ul li::marker { color: var(--gold); }

.article-content-casino blockquote {
    border-left: 4px solid var(--gold);
    margin: 1.75rem 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(90deg, var(--gold-soft), rgba(255, 255, 255, 0.02));
    border-radius: 0 12px 12px 0;
    color: var(--text-cream);
    font-style: italic;
    position: relative;
    box-shadow: inset -2px 0 0 var(--dark-border);
}
.article-content-casino blockquote::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--red));
    animation: quoteGlow 3s ease-in-out infinite;
}
@keyframes quoteGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.5); }
    50% { box-shadow: 0 0 16px 2px rgba(255,215,0,0.4); }
}

.article-content-casino img {
    width: 100%;
    max-width: 100%;
    max-height: 480px;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
    margin: 1.75rem 0;
    display: block;
    border: 1px solid var(--dark-border);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
    transition: all 0.4s ease;
}
.article-content-casino img:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,215,0,0.3);
}

/* ============= NEWS GRID ============= */
.casino-news {
    background: linear-gradient(180deg, transparent, rgba(13, 13, 26, 0.5) 50%, transparent);
}

.news-grid-casino {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.news-card-casino {
    position: relative;
    background: radial-gradient(circle 120px at var(--mx, 50%) var(--my, 50%), rgba(255, 215, 0, 0.08) 0%, transparent 100%), 
                linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%), 
                linear-gradient(160deg, rgba(16, 16, 28, 0.75) 0%, rgba(10, 10, 18, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.news-card-casino:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.15);
    background: radial-gradient(circle 140px at var(--mx, 50%) var(--my, 50%), rgba(255, 215, 0, 0.12) 0%, transparent 100%), 
                linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%), 
                linear-gradient(160deg, rgba(20, 20, 35, 0.8) 0%, rgba(12, 12, 22, 0.95) 100%);
}

.news-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.news-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.88) brightness(0.9);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.news-card-casino:hover .news-image-wrap img {
    transform: scale(1.06);
    filter: saturate(1.1) brightness(1);
}

.news-tag-casino {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-family: 'Bebas Neue', sans-serif;
    z-index: 3;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
    animation: tagPulse 2s infinite ease-in-out;
}

@keyframes tagPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 15px rgba(239, 68, 68, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(239, 68, 68, 0.9); }
}

.news-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 18, 0.92) 100%),
                radial-gradient(ellipse at 20% 0%, rgba(255,215,0,0.08), transparent 50%);
    pointer-events: none;
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.4s ease;
}
.news-card-casino:hover .news-image-overlay { opacity: 1; }

.news-body-casino {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.news-cat-casino {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    font-family: 'Bebas Neue', sans-serif;
    transition: all 0.3s ease;
}

.news-card-casino:hover .news-cat-casino {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}

.news-body-casino h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    color: var(--text-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    transition: color 0.3s ease;
}
.news-card-casino:hover h3 { color: var(--gold); }
.news-body-casino h3 a:hover { color: inherit; }

.news-body-casino p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 0.95;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
}
.news-readmore svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}
.news-card-casino:hover .news-readmore {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.news-card-casino:hover .news-readmore svg {
    transform: translateX(5px);
}

.news-bottom-cta {
    text-align: center;
}

/* ============= CTA SECTION ============= */
.casino-cta-section {
    position: relative;
    padding: 5.5rem 0;
    overflow: hidden;
    margin-top: 3rem;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(220, 38, 38, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 215, 0, 0.09) 0%, transparent 45%),
        linear-gradient(145deg, #07070c 0%, #0c0c15 50%, #030306 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-shape {
    position: absolute;
    font-size: 11rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    filter: blur(2px);
    pointer-events: none;
    user-select: none;
}
.cta-shape-1 { 
    top: -5%; left: 3%; 
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.09) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatShape1 16s ease-in-out infinite; 
}
.cta-shape-2 { 
    top: 15%; right: 5%; 
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatShape2 14s ease-in-out infinite; 
}
.cta-shape-3 { 
    bottom: -8%; left: 18%; 
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatShape3 18s ease-in-out infinite; 
}
.cta-shape-4 { 
    bottom: 12%; right: 12%; 
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: floatShape4 15s ease-in-out infinite; 
}

@keyframes floatShape1 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(8deg) scale(1.05); }
}
@keyframes floatShape2 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(-10deg) scale(1.08); }
}
@keyframes floatShape3 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(25px) rotate(12deg) scale(0.95); }
}
@keyframes floatShape4 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(-6deg) scale(1.03); }
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 215, 0, 0.22) 0%, rgba(220, 38, 38, 0.12) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    animation: ctaPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.cta-badge-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-badge {
    padding: 0.45rem 1rem;
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #fca5a5;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Bebas Neue', sans-serif;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-badge-gold {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.25);
    color: var(--gold);
}

/* Countdown timer */
.cta-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 2rem;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 2.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.timer-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%), rgba(20, 20, 35, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
    min-width: 72px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.timer-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 215, 0, 0.15);
    z-index: 2;
}

.tc-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    letter-spacing: 0.5px;
    z-index: 1;
}

.tc-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-top: 0.25rem;
    text-transform: uppercase;
    z-index: 1;
}

.timer-sep {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
    animation: blinkSep 1.2s ease-in-out infinite;
    line-height: 1;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

@keyframes blinkSep {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.cta-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 6vw, 3.75rem);
    line-height: 1.05;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.cta-subheading {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-subheading strong {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 14px var(--gold-glow);
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.cta-actions .casino-btn-gold {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #aa7c11 100%);
    color: #0b0b12 !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35), 0 0 40px rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: none;
}

.cta-actions .casino-btn-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5), 0 0 50px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, #ffe066 0%, #ffd700 50%, #c59b27 100%);
}

.cta-actions .casino-btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 25%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-30deg);
    animation: ctaSheen 5s infinite linear;
}

@keyframes ctaSheen {
    0% { left: -50%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

.cta-actions .casino-btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff !important;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-actions .casino-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.5);
    color: var(--gold) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.15);
}

.cta-stats-row {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 2.75rem;
    background: rgba(10, 10, 18, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.cta-stat strong {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    line-height: 1.2;
}

.cta-stat span {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 700;
}

.cta-stat:last-child span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-stat:last-child span::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: statLivePulse 1.8s infinite ease-in-out;
}

@keyframes statLivePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 15px #22c55e; }
}

.cta-stat-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1200px) {
    .overview-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-stat strong { font-size: 1.25rem; }
}

@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .features-visual {
        min-height: 460px;
        max-width: 520px;
        margin: 0 auto;
    }

    .news-grid-casino {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-circle { max-width: 500px; }
    .adv-node { width: 220px; }
    .adv-right { right: -2%; }
    .adv-left { left: -2%; }

    .cta-stats-row { padding: 1rem 1.5rem; gap: 1.25rem; }
}

@media (max-width: 768px) {
    .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .overview-card { padding: 1.5rem 1.1rem; }
    .overview-icon-badge { width: 56px; height: 56px; }
    .overview-icon-badge svg { width: 26px; height: 26px; }

    .features-visual { min-height: 430px; }
    .visual-content { padding: 1.25rem; }
    .vb-value { font-size: 1.5rem; }
    .vj-value { font-size: 1.25rem; }
    .floating-badge-1 { left: 2%; }
    .floating-badge-2 { right: 2%; }

    .advantages-circle { max-width: 100%; }
    .circle-logo { width: 130px; height: 130px; }
    .circle-logo-icon { font-size: 1.8rem; }
    .circle-logo-text { font-size: 0.8rem; }
    .adv-node { width: 160px; gap: 0.6rem; }
    .adv-top, .adv-bottom { width: 180px; }
    .adv-node-icon { width: 48px; height: 48px; border-radius: 14px; }
    .adv-node-icon svg { width: 22px; height: 22px; }
    .adv-node-info h4 { font-size: 0.92rem; }
    .adv-node-info p { font-size: 0.75rem; }

    .casino-article { padding: 2rem 0; }
    .article-content-casino { padding: 1.5rem; border-radius: var(--radius-md); }
    .article-content-casino p { font-size: 0.98rem; }
    .article-content-casino h2 { font-size: 1.35rem; }
    .article-content-casino h3 { font-size: 1.15rem; }

    .news-grid-casino { grid-template-columns: 1fr; gap: 1.25rem; }
    .news-body-casino { padding: 1.25rem; }

    .cta-stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem;
        gap: 0.875rem;
        border-radius: 20px;
    }
    .cta-stat strong { font-size: 1.1rem; }
    .cta-stat-divider { display: none; }

    .casino-cta-section { padding: 3.5rem 0; }
    .cta-timer { padding: 0.75rem 1rem; gap: 0.5rem; }
    .tc-num { font-size: 1.4rem; min-width: 32px; }
    .tc-label { font-size: 0.6rem; }
}

@media (max-width: 560px) {
    .overview-grid { grid-template-columns: 1fr; }
    .visual-games-row { grid-template-columns: repeat(2, 1fr); }
    .features-visual { min-height: 480px; }

    .advantages-circle { aspect-ratio: auto; padding: 0; height: auto; }
    .adv-lines { display: none; }
    .circle-logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto 2rem;
    }
    .adv-node {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none !important;
        width: 100% !important;
        flex-direction: row !important;
        text-align: left !important;
        margin-bottom: 1rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--dark-border-2);
        border-radius: var(--radius-md);
    }

    .casino-cta-section { padding: 2.75rem 0; }
    .cta-heading { letter-spacing: 1px; }
    .cta-stats-row { flex-direction: column; }
    .cta-stat { flex-direction: row; gap: 0.625rem; }
}

@media (max-width: 480px) {
    .article-content-casino { padding: 1.25rem 1rem; }
    .article-content-casino p { font-size: 0.95rem; }
    .article-content-casino h2 { font-size: 1.2rem; }
    .article-content-casino h3 { font-size: 1.05rem; }
    .article-title-casino { letter-spacing: -0.3px; }
    .meta-description { max-width: 100%; font-size: 0.78rem; }
    .feature-row { padding: 1rem; gap: 0.875rem; }
    .feature-icon-wrap { width: 48px; height: 48px; border-radius: 12px; }
    .feature-icon-wrap svg { width: 22px; height: 22px; }
}

/* Legacy fallback wrappers */
.page-container { padding: 0; }
.article-detail { display: none; }
.section-title { display: none; }
.news-grid { display: none; }
.ad-container { display: none; }
