/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES (index.css)
   Theme: Vibrant Orange & Corporate Luxury Slate (Ref. Inspired)
   ========================================================================== */

/* ==========================================================================
   1. Hero Section (Split Layout with Vertical Tag & Modern Typography)
   ========================================================================== */
.hero-wrapper {
    background: linear-gradient(135deg, #0e1422 0%, #131b2e 50%, #0a0e18 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    border-bottom: 1px solid var(--border-dark);
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 40px;
}

/* Vertical Left Rail (Social/License text from reference image) */
.hero-vertical-rail {
    display: flex;
    align-items: center;
    gap: 16px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--text-light-muted);
    text-transform: uppercase;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.hero-vertical-rail span {
    color: var(--primary);
}

.hero-main-content {
    flex: 1.15;
    padding-right: 20px;
}

.hero-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.14);
    border: 1px solid rgba(249, 115, 22, 0.35);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-badge-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-light-muted);
    margin-bottom: 34px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta-group .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
}

/* Scroll Down Indicator matching Reference */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 48px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-light-muted);
}

.hero-scroll-line {
    width: 44px;
    height: 2px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    animation: scrollSlide 2s infinite ease-in-out;
}

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

/* Right Side: Hero Visual Frame */
.hero-visual-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-showcase {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: linear-gradient(145deg, #182238 0%, #101726 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    padding: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(249, 115, 22, 0.12);
    overflow: hidden;
}

.hero-card-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.hero-art-display {
    width: 100%;
    height: 310px;
    background: radial-gradient(circle at center, #23314f 0%, #0d1320 100%);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-art-bg-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.15); opacity: 1; }
}

.hero-art-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-logo-centerpiece {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    width: 100%;
}

.hero-server-logo {
    max-width: 260px;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(249, 115, 22, 0.45));
    transition: transform 0.35s ease;
    display: block;
}

.hero-server-logo:hover {
    transform: scale(1.05);
}

.hero-logo-caption {
    margin-top: 18px;
    text-align: center;
}

.hero-caption-title {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-caption-sub {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-light);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(249, 115, 22, 0.14);
    border: 1px solid rgba(249, 115, 22, 0.4);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-top: 8px;
}

.hero-live-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(249, 115, 22, 0.4);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.hero-quick-stat-box {
    background: rgba(14, 20, 34, 0.7);
    border: 1px solid var(--border-dark);
    padding: 12px 10px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.hero-quick-stat-num {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--primary-light);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.hero-quick-stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-light-muted);
    text-transform: uppercase;
    margin-top: 3px;
}

@media (max-width: 980px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-vertical-rail {
        display: none;
    }
    .hero-main-content {
        padding-right: 0;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-scroll {
        justify-content: center;
    }
}

/* ==========================================================================
   2. Ad Banner Slot (Clean & High Contrast)
   ========================================================================== */
.ad-slot-wrap {
    margin: 40px 0 60px;
}

.ad-slot-box {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ad-slot-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.ad-slot-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. Section "About Us / Tentang Kami" (Matching Reference Image)
   Left: Geometric orange polygons + dot grid + casino portrait
   Right: Title with orange highlight, description, 3-steps, CTA
   ========================================================================== */
.about-section {
    background-color: var(--light-bg);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Left Geometric Visual Container */
.about-visual-wrap {
    position: relative;
    padding: 30px;
}

/* Orange Geometric Polygons from reference image */
.about-poly-bg-1 {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
    border-radius: 12px;
}

.about-poly-bg-2 {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    opacity: 0.85;
    z-index: 1;
}

/* Dotted matrix pattern matching reference */
.about-dot-matrix {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 120px;
    height: 100px;
    background-image: radial-gradient(#ea580c 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 1;
    opacity: 0.6;
}

.about-image-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 4px solid #ffffff;
}

.about-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-card:hover img {
    transform: scale(1.03);
}

.about-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.about-floating-badge-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-light);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.about-floating-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light-muted);
}

/* Right Content Column */
.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.025rem;
    color: var(--text-dark-secondary);
}

.about-features-list {
    margin: 28px 0 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

.about-feature-text strong {
    color: var(--text-dark);
    font-weight: 700;
    display: block;
    font-size: 0.95rem;
}

.about-feature-text span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual-wrap {
        max-width: 460px;
        margin: 0 auto;
        padding: 10px;
    }
    .about-image-card img {
        height: 340px;
    }
}

/* ==========================================================================
   4. Section "Why Choose Us / Mengapa Memilih Kami"
   Left: Text + CTA
   Right: 2x2 Circular Icon Cards with Orange Accents (Direct Match to Ref)
   ========================================================================== */
.why-section {
    background-color: var(--light-section);
    padding: 95px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    align-items: center;
}

.why-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.why-left p {
    font-size: 1.025rem;
    line-height: 1.75;
    margin-bottom: 30px;
    color: var(--text-dark-secondary);
}

/* 2x2 Grid of Circular Badge Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
}

.why-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px dashed rgba(249, 115, 22, 0.6);
    background: rgba(249, 115, 22, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon-circle {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: scale(1.08);
}

.why-icon-circle svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.why-card:hover .why-icon-circle svg {
    stroke: #ffffff;
}

.why-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

/* ==========================================================================
   5. Section "Our Services / Layanan & Permainan" (Vibrant Orange & Hexagon Cards)
   Signature orange background from reference image with 3 Hexagonal Cards
   ========================================================================== */
.services-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Geometric polygonal background watermark */
.services-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.06);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    pointer-events: none;
}

.services-carousel-wrapper {
    position: relative;
    margin-top: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Hexagon Card Styling directly matching the 3 cards in reference */
.hex-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 42px 30px 36px;
    text-align: center;
    color: var(--text-dark);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hex-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.hex-card.hex-card--featured {
    background: #ffffff;
    border: 3px solid #fde047;
}

/* Hexagonal Badge */
.hex-badge-wrap {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.35s ease;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
}

.hex-card:hover .hex-badge-wrap {
    transform: rotate(15deg) scale(1.08);
}

.hex-badge-wrap svg {
    width: 42px;
    height: 42px;
    stroke: #ffffff;
    fill: none;
}

.hex-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.hex-card p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.hex-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Slider navigation arrows from reference */
.services-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
    backdrop-filter: blur(6px);
}

.services-nav-arrow:hover {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.services-nav-arrow--left {
    left: -24px;
}

.services-nav-arrow--right {
    right: -24px;
}

@media (max-width: 1080px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .services-nav-arrow {
        display: none;
    }
}

/* ==========================================================================
   6. CMS Category Loop Row Grid
   ========================================================================== */
.categories-showcase {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.categories-showcase-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.categories-cms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.category-mini-card {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    padding: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-mini-card:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-4px);
}

.category-mini-card__img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.category-mini-card h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.category-mini-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.825rem;
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.category-mini-card a.play-link {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.category-mini-card a.play-link:hover {
    color: #fde047;
}

/* ==========================================================================
   7. Section "Our Latest Blog / Promosi & Berita Terbaru" (Matching Reference)
   Header: Title left + Button right
   2-3 High impact cards
   ========================================================================== */
.blog-section {
    background-color: var(--light-bg);
    padding: 95px 0;
}

.blog-head-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-head-bar h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--text-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.blog-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
}

.blog-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-tag-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.blog-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-body h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-body h3 {
    color: var(--primary);
}

.blog-body p {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.blog-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

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

/* ==========================================================================
   8. Bonuses & Promotions Grid (Expanded Luxury Cards)
   ========================================================================== */
.bonus-section {
    background-color: var(--light-section);
    padding: 90px 0;
    border-top: 1px solid var(--border-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.bonus-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.4);
}

.bonus-card--featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.bonus-pill {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bonus-icon-badge {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.bonus-icon-badge svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
}

.bonus-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.bonus-amount {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.bonus-card p {
    font-size: 0.875rem;
    margin-bottom: 22px;
    flex-grow: 1;
}

/* ==========================================================================
   9. Payment Gateways & Banking Strip
   ========================================================================== */
.payment-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.payment-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    padding: 40px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.payment-method-item {
    background: var(--light-section);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.payment-method-item:hover {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.payment-method-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
}

.payment-method-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.payment-meta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.payment-stat-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-heading);
}

.payment-stat-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .payment-meta-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   10. Mobile App Download Section
   ========================================================================== */
.app-section {
    background: linear-gradient(135deg, #0e1422 0%, #161e31 100%);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 0 80px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
}

.app-content {
    flex: 1.3;
    position: relative;
    z-index: 2;
}

.app-content h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 14px;
}

.app-content p {
    color: var(--text-light-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 520px;
}

.app-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin-bottom: 30px;
}

.app-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.app-perks li svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.app-download-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    transition: all 0.25s ease;
}

.app-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-text small {
    font-size: 0.68rem;
    opacity: 0.8;
}

.app-btn-text strong {
    font-size: 0.95rem;
}

.app-rating-badge {
    flex: 0.7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

.app-rating-stars {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.app-rating-num {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #ffffff;
}

.app-rating-label {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

@media (max-width: 900px) {
    .app-section {
        flex-direction: column;
        padding: 36px 24px;
        text-align: center;
    }
    .app-perks {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .app-download-btns {
        justify-content: center;
    }
}

/* ==========================================================================
   11. Game Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: var(--light-section);
    padding: 90px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}

.gallery-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.gallery-card__img {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.gallery-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card__img img {
    transform: scale(1.08);
}

.gallery-card__hover-btn {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-card:hover .gallery-card__hover-btn {
    opacity: 1;
}

.gallery-card h3 {
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   12. FAQ Accordion (Clean & Smooth)
   ========================================================================== */
.faq-section {
    background-color: var(--light-bg);
    padding: 90px 0;
}

.faq-container {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.12);
}

.faq-question {
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-section);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform 0.25s ease, background 0.25s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    background: var(--primary);
    color: #ffffff;
}

.faq-answer {
    padding: 0 24px 22px;
    display: none;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    display: block;
    border-top-color: var(--border-light);
    padding-top: 16px;
}

/* ==========================================================================
   13. Live Stats Bar
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, #0e1422 0%, #161e31 100%);
    padding: 60px 0;
    color: #ffffff;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light-muted);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ==========================================================================
   14. Testimonial Grid
   ========================================================================== */
.testimonials-section {
    background-color: var(--light-section);
    padding: 90px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.testimonial-card h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.testimonial-author::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #22c55e;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
}

/* ==========================================================================
   15. Responsible Gaming (18+)
   ========================================================================== */
.rg-section {
    background-color: var(--light-bg);
    padding: 70px 0;
    border-top: 1px solid var(--border-light);
}

.rg-box {
    background: #ffffff;
    border: 2px dashed rgba(249, 115, 22, 0.4);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.rg-content h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.rg-content p {
    font-size: 0.925rem;
    max-width: 650px;
    margin-bottom: 18px;
}

.rg-tools {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.rg-tool {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark-secondary);
    background: var(--light-section);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.rg-tool svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

.rg-badge {
    background: #dc2626;
    color: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
    flex-shrink: 0;
}

.rg-badge small {
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: -4px;
}

@media (max-width: 800px) {
    .rg-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .rg-tools {
        justify-content: center;
    }
}
