/**
 * stb8899-custom-theme - Main Stylesheet
 *
 * Designed with a Luxury Black-and-Gold color scheme, custom animations,
 * responsive structures, grid pattern overlays, and modern typography.
 */

/* -------------------------------------------------------------------------
   0. CSS Variables & Reset
   ------------------------------------------------------------------------- */
:root {
    --bg-dark: #070707;
    --bg-card: #111111;
    --bg-card-hover: #161616;
    
    /* Premium Metallic Gold Gradients and Colors */
    --gold-primary: #dfb75c;
    --gold-light: #f3e5ab;
    --gold-dark: #aa771c;
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #dfb75c 50%, #aa771c 100%);
    --gold-glow: rgba(223, 183, 92, 0.35);
    
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-muted: #707070;
    --border-gold: rgba(223, 183, 92, 0.2);
    --border-gold-hover: rgba(223, 183, 92, 0.7);

    --font-primary: 'Outfit', 'Noto Sans Thai', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    min-height: 100%;
}

body {
    background-color: var(--bg-dark);
    /* Faint Grid Overlay */
    background-image: 
        linear-gradient(to right, rgba(223, 183, 92, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(223, 183, 92, 0.02) 1px, transparent 1px);
    background-size: 35px 35px;
    color: var(--text-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background flares for luxury feel */
body::before {
    content: '';
    position: fixed;
    top: 50px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(223, 183, 92, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: auto;
    bottom: 0;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(223, 183, 92, 0.04) 0%, transparent 75%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    padding: 60px 0;
    position: relative;
}

/* -------------------------------------------------------------------------
   1. Typography & Common UI
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

.section-title-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(223, 183, 92, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    color: var(--gold-primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 40%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Gold Glowing Line */
.gold-line-decor {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Placeholders generator style */
.placeholder-img-16-9 {
    aspect-ratio: 16/9;
    background: radial-gradient(circle, #252525 0%, #121212 100%);
    border: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--gold-primary);
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.placeholder-img-16-9::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(223, 183, 92, 0.1) 0%, transparent 70%);
}

.placeholder-img-16-9 svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    stroke: var(--gold-primary);
    fill: none;
    opacity: 0.8;
}

.placeholder-img-16-9 span {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.placeholder-img-16-9 p {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 4px;
}

/* -------------------------------------------------------------------------
   2. Buttons & Animations
   ------------------------------------------------------------------------- */
/* Gold Filled CTA Button */
.btn-gold {
    background: var(--gold-gradient);
    color: #000000;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px var(--gold-glow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(223, 183, 92, 0.55);
}

/* Light Sweep Sweep effect */
.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40px;
    height: 200%;
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(35deg);
    transition: none;
}

.btn-gold:hover::after {
    left: 140%;
    transition: all 0.8s ease-in-out;
}

/* Black with Gold Border Animated Button */
.btn-black-gold {
    position: relative;
    border-radius: 50px;
    background: transparent;
    padding: 1.5px; /* Border weight */
    display: inline-flex;
    overflow: hidden;
    z-index: 1;
}

.btn-black-gold::before {
    content: '';
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 20%, var(--gold-primary) 50%, transparent 80%);
    animation: borderRotate 4s linear infinite;
}

.btn-black-gold:hover::before {
    animation-duration: 2s;
}

.btn-black-gold .btn-inner {
    background: #0d0d0d;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.btn-black-gold:hover .btn-inner {
    background: rgba(223, 183, 92, 0.08);
    color: var(--text-white);
}

.btn-gold.is-active,
.btn-gold.active {
    box-shadow: 0 0 24px rgba(243, 229, 171, 0.5);
}

.btn-black-gold.is-active .btn-inner,
.btn-black-gold.active .btn-inner {
    background: rgba(223, 183, 92, 0.12);
    color: var(--gold-light);
}

@keyframes borderRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Running Light Sweep Border */
.btn-running-light {
    position: relative;
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-white);
    background: rgba(223, 183, 92, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.btn-running-light:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px var(--gold-glow);
    background: rgba(223, 183, 92, 0.08);
}

/* -------------------------------------------------------------------------
   3. Header Section (Desktop)
   ------------------------------------------------------------------------- */
.site-header {
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(223, 183, 92, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stb-logo-image {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 44px;
    object-fit: contain;
}

.footer-col-about .stb-logo-image {
    max-height: 48px;
}

.logo-crown-icon {
    width: 32px;
    height: 32px;
    fill: var(--gold-gradient);
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-tagline {
    font-size: 0.6rem;
    color: var(--text-gray);
    letter-spacing: 0.2em;
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: -2px;
}

/* Navigation menu */
.desktop-nav {
    display: flex;
    align-items: center;
}

.primary-menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.primary-menu-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.primary-menu-list a:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 8px var(--gold-glow);
}

.primary-menu-list a.is-active,
.primary-menu-list a.active,
.primary-menu-list .current-menu-item > a,
.primary-menu-list .current_page_item > a,
.primary-menu-list .current-menu-ancestor > a,
.primary-menu-list .current_page_parent > a {
    color: var(--gold-primary);
    text-shadow: 0 0 8px var(--gold-glow);
}

.primary-menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.primary-menu-list a:hover::after {
    width: 100%;
}

.primary-menu-list a.is-active::after,
.primary-menu-list a.active::after,
.primary-menu-list .current-menu-item > a::after,
.primary-menu-list .current_page_item > a::after,
.primary-menu-list .current-menu-ancestor > a::after,
.primary-menu-list .current_page_parent > a::after {
    width: 100%;
}

/* Header CTAs */
.header-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* -------------------------------------------------------------------------
   4. Promotion Slider Section
   ------------------------------------------------------------------------- */
.promo-slider-section {
    padding: 30px 0;
}

.promo-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    min-height: 380px;
    max-height: 460px;
    border-radius: 16px;
    background: #0f0f0f;
    border: 1px solid var(--border-gold);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Slide container and layouts */
.promo-slides-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: 4fr 6fr;
    align-items: center;
    padding: 24px 40px;
    gap: 30px;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.promo-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.slide-content-left {
    z-index: 5;
}

.slide-badge {
    margin-bottom: 16px;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 40%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 28px;
    max-width: 500px;
}

.slide-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Slide Right Image */
.slide-image-right {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(223, 183, 92, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: radial-gradient(circle at center, #1b1b1b 0%, #0d0d0d 100%);
}

.slide-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-slide:hover img {
    transform: scale(1.04);
}

.slide-image-container .placeholder-img-16-9 {
    border: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Slider Navigation Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.85);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-control:hover {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 0 15px var(--gold-glow);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-control svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Dot Indicator */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--gold-primary);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--gold-glow);
}

/* -------------------------------------------------------------------------
   5. Intro SEO Section
   ------------------------------------------------------------------------- */
.intro-seo-section {
    padding: 40px 0;
}

.intro-seo-box {
    background: radial-gradient(circle at top right, #111111 0%, #0a0a0a 100%);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 45px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 50px;
}

/* Tiny pattern inside the intro box */
.intro-seo-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(223, 183, 92, 0.03) 1px, transparent 1px);
    background-size: 15px 15px;
    pointer-events: none;
}

.intro-seo-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-seo-left .intro-badge {
    margin-bottom: 12px;
}

.intro-seo-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* -------------------------------------------------------------------------
   6. Game Category Cards Section
   ------------------------------------------------------------------------- */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.game-card {
    background: #0f0f0f;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.game-card-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-gold);
    background: #181818;
}

.game-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Category Badge Icon inside cards */
.game-card-icon-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: var(--gold-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.game-card-icon-tag svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.game-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
    transition: var(--transition-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-action {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.game-card-action svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

/* Game Cards Hover State Animations */
.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-hover);
    box-shadow: 0 15px 30px rgba(223, 183, 92, 0.12);
}

.game-card:hover .game-card-img-wrapper img {
    transform: scale(1.08);
}

.game-card:hover .game-card-title {
    color: var(--gold-primary);
}

.game-card:hover .game-card-action {
    color: var(--text-white);
}

.game-card:hover .game-card-action svg {
    transform: translateX(4px);
}

/* -------------------------------------------------------------------------
   7. Promotion Carousel Section (Auto-Scroller)
   ------------------------------------------------------------------------- */
.carousel-outer-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

/* Fades elements on left and right for elegant visual transition */
.carousel-outer-wrapper::before,
.carousel-outer-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.carousel-outer-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.carousel-outer-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    align-items: stretch;
    /* Large enough width to fit original cards + clones */
    width: calc(290px * 10); 
    animation: smoothCarouselScroll 35s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-card-item {
    width: 270px;
    margin-right: 20px;
    flex-shrink: 0;
    align-self: stretch;
    background: #0f0f0f;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    transition: var(--transition-smooth);
}

.carousel-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.carousel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.carousel-card-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.carousel-card-badge {
    margin-bottom: 8px;
    font-size: 0.65rem;
    padding: 3px 10px;
}

.carousel-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-card-desc {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-top: auto;
}

.carousel-card-btn svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.carousel-card-item:hover {
    border-color: var(--border-gold-hover);
    box-shadow: 0 8px 20px rgba(223, 183, 92, 0.1);
    transform: translateY(-4px);
}

.carousel-card-item:hover .carousel-card-img img {
    transform: scale(1.05);
}

@keyframes smoothCarouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Scrolls equivalent width of 5 cards + margins */
        transform: translateX(calc(-290px * 5));
    }
}

/* -------------------------------------------------------------------------
   8. SEO Content Cards Section
   ------------------------------------------------------------------------- */
.seo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seo-card-box {
    background: #0f0f0f;
    border: 1px solid var(--border-gold);
    border-top: 3px solid var(--gold-primary);
    border-radius: 8px;
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.seo-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.seo-card-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
}

.seo-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.seo-card-btn svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.seo-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(223, 183, 92, 0.08);
    border-color: var(--border-gold-hover);
    border-top-color: var(--gold-light);
}

.seo-card-box:hover .seo-card-btn {
    color: var(--text-white);
}

.seo-card-box:hover .seo-card-btn svg {
    transform: translateX(3px);
}

/* -------------------------------------------------------------------------
   9. Latest Articles Section
   ------------------------------------------------------------------------- */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Renders card styling identical to promotion card details */
.article-card {
    background: #0f0f0f;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.article-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.article-hover-label {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--gold-gradient);
    color: #050505;
    font-size: 0.85rem;
    font-weight: 800;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
    transition: var(--transition-smooth);
    box-shadow: 0 0 18px var(--gold-glow);
    z-index: 3;
    white-space: nowrap;
}

.article-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
}

.article-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.article-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-white);
    transition: var(--transition-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-excerpt {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.article-card-btn svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.article-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: 0 10px 25px rgba(223, 183, 92, 0.08);
    transform: translateY(-5px);
}

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

.article-card:hover .article-card-title {
    color: var(--gold-primary);
}

.article-card:hover .article-hover-label {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.blog-page {
    overflow: hidden;
}

.blog-grid-section {
    padding: 24px 0 74px;
}

.blog-article-card {
    min-width: 0;
}

a.blog-article-card {
    color: inherit;
}

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
    max-width: 100%;
}

.blog-pagination .page-numbers {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    color: var(--gold-primary);
    padding: 6px 12px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--gold-gradient);
    color: #050505;
    border-color: var(--gold-primary);
}

/* -------------------------------------------------------------------------
   Page Sections / Content Blocks
   ------------------------------------------------------------------------- */
.stb-page-sections {
    padding: 30px 0;
}

.stb-page-sections-before_main {
    padding-top: 20px;
}

.stb-page-sections-after_main {
    padding-bottom: 56px;
}

.stb-page-section {
    margin-bottom: 24px;
}

.stb-page-section:last-child {
    margin-bottom: 0;
}

.stb-page-section-box,
.stb-page-section-split,
.stb-page-section-banner {
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(223, 183, 92, 0.035)),
        #0f0f0f;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

.stb-page-section-box {
    padding: 34px;
}

.stb-page-section-centered {
    text-align: center;
}

.stb-page-section-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.stb-page-section-text_image .stb-page-section-media {
    order: 2;
}

.stb-page-section-text_image .stb-page-section-copy {
    order: 1;
}

.stb-page-section-media {
    aspect-ratio: 16/9;
    min-height: 100%;
    background: #151515;
}

.stb-page-section-media img,
.stb-page-section-media .placeholder-img-16-9 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    border-radius: 0;
}

.stb-page-section-copy {
    padding: 34px;
}

.stb-page-section h2 {
    color: var(--text-white);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.35;
    margin: 12px 0 14px;
}

.stb-page-section-content {
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.8;
}

.stb-page-section-content p:last-child {
    margin-bottom: 0;
}

.stb-page-section .btn-gold {
    display: inline-flex;
    margin-top: 22px;
}

.stb-page-section-banner {
    background-position: center;
    background-size: cover;
    min-height: 320px;
}

.stb-page-section-banner-overlay {
    min-height: 320px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58)),
        radial-gradient(circle at 20% 20%, rgba(223, 183, 92, 0.18), transparent 34%);
}

.stb-page-section-notice_box .stb-page-section-box {
    border-left: 4px solid var(--gold-primary);
}

.stb-page-section-faq_simple .stb-page-section-box {
    border-top: 3px solid var(--gold-primary);
}

/* -------------------------------------------------------------------------
   10. Final CTA Section
   ------------------------------------------------------------------------- */
.final-cta-box {
    background: radial-gradient(circle at center, #111111 0%, #080808 100%);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Sub-grid pattern behind final cta */
.final-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(223, 183, 92, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 183, 92, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.final-cta-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 6px var(--gold-glow));
}

.final-cta-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.final-cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 35px;
}

.final-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* -------------------------------------------------------------------------
   11. Footer Section
   ------------------------------------------------------------------------- */
.site-footer {
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 190, 75, 0.16), transparent 34%),
        linear-gradient(180deg, #090909 0%, #050505 100%);
    border-top: 1px solid rgba(223, 183, 92, 0.28);
    padding: 0 0 30px;
    position: relative;
    z-index: 10;
    margin-top: auto;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(223, 183, 92, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 183, 92, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 72%);
    pointer-events: none;
}

.footer-entrance-section,
.footer-main-section {
    position: relative;
    z-index: 1;
}

.footer-entrance-section {
    padding: 54px 0 46px;
    border-bottom: 1px solid rgba(223, 183, 92, 0.32);
}

.footer-entrance-header {
    text-align: center;
    margin: 0 auto 28px;
    max-width: 820px;
}

.footer-entrance-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(223, 183, 92, 0.78);
    border-radius: 999px;
    color: var(--gold-light);
    background: linear-gradient(180deg, rgba(223, 183, 92, 0.12), rgba(0, 0, 0, 0.36));
    box-shadow: 0 0 18px rgba(223, 183, 92, 0.18);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 9px 22px;
}

.footer-entrance-title {
    color: var(--gold-light);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.15rem, 5vw, 4.2rem);
    line-height: 1;
    margin: 14px 0 10px;
    text-shadow: 0 0 22px rgba(223, 183, 92, 0.42);
}

.footer-entrance-desc {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.footer-link-groups {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.footer-link-group-card {
    min-height: 292px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 50% 100%, rgba(223, 183, 92, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(4, 4, 4, 0.96));
    border: 1px solid rgba(223, 183, 92, 0.58);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 233, 170, 0.04);
    padding: 22px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.footer-link-group-card:hover {
    border-color: rgba(255, 214, 126, 0.9);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.45), 0 0 24px rgba(223, 183, 92, 0.18);
    transform: translateY(-3px);
}

.footer-link-group-head {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(223, 183, 92, 0.22);
}

.footer-link-group-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #101010;
    background: radial-gradient(circle at 35% 25%, #fff4bd, #d6a636 48%, #5b3b08 100%);
    box-shadow: 0 0 18px rgba(223, 183, 92, 0.38);
}

.footer-link-group-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-link-group-title {
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0;
}

.footer-link-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.footer-link-item {
    border-bottom: 1px solid rgba(223, 183, 92, 0.2);
}

.footer-link-anchor {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--gold-primary);
    font-size: 0.92rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.footer-link-anchor svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.footer-link-anchor:hover {
    color: var(--gold-light);
    padding-left: 5px;
    text-shadow: 0 0 12px rgba(223, 183, 92, 0.42);
}

.footer-link-anchor:hover svg {
    transform: translateX(3px);
}

.footer-main-section {
    padding: 38px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}

.footer-col-about .logo-link {
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-gray);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-links a.is-active,
.footer-links a.active,
.footer-links .current-menu-item > a,
.footer-links .current_page_item > a,
.footer-links .current-menu-ancestor > a,
.footer-links .current_page_parent > a {
    color: var(--gold-primary);
    text-shadow: 0 0 8px var(--gold-glow);
}

.footer-col-trust {
    display: flex;
    align-items: center;
}

.footer-trust-card {
    width: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(223, 183, 92, 0.45);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(223, 183, 92, 0.12), rgba(0, 0, 0, 0.26));
    box-shadow: inset 0 0 0 1px rgba(255, 233, 170, 0.04);
    padding: 22px;
}

.footer-trust-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
}

.footer-trust-icon svg {
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-trust-card h3 {
    color: var(--gold-light);
    font-size: 1rem;
    line-height: 1.25;
    margin: 0 0 5px;
}

.footer-trust-card p {
    color: var(--text-gray);
    font-size: 0.86rem;
    line-height: 1.45;
    margin: 0;
}

/* Copyright Row */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
}

.copyright-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* -------------------------------------------------------------------------
   12. First Visit Popup Layout
   ------------------------------------------------------------------------- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: radial-gradient(circle at top right, #141414 0%, #090909 100%);
    border: 1px solid var(--border-gold-hover);
    border-radius: 16px;
    width: 90%;
    max-width: 580px;
    padding: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(223, 183, 92, 0.15);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

/* Close Icon Button */
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(223, 183, 92, 0.2);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.popup-close:hover {
    background: rgba(223, 183, 92, 0.1);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.popup-close svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.popup-badge {
    margin-bottom: 12px;
}

.popup-image-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.popup-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* -------------------------------------------------------------------------
   13. Standard Page, Single & Archive Styles
   ------------------------------------------------------------------------- */
.page-header-banner {
    background: linear-gradient(180deg, #111 0%, #070707 100%);
    border-bottom: 1px solid var(--border-gold);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(223, 183, 92, 0.06) 0%, transparent 70%);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.page-content-wrapper {
    padding: 60px 0;
}

.rich-text-content {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.9;
}

.rich-text-content p {
    margin-bottom: 25px;
}

.rich-text-content h2, 
.rich-text-content h3 {
    margin: 40px 0 20px;
    color: var(--text-white);
}

/* Single Post details template styling */
.single-post-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
}

.single-post-meta a {
    color: var(--gold-primary);
}

.single-post-featured-img {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.single-post-featured-img img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.single-post-body {
    max-width: 800px;
    margin: 0 auto;
}

.back-to-blog-container {
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
}

/* -------------------------------------------------------------------------
   14. Mobile Sticky Bottom Nav Bar & Layout Adjustments
   ------------------------------------------------------------------------- */
/* Bottom Bar for Mobile Devices */
.mobile-bottom-nav {
    display: none; /* Hidden by default on desktop */
}

/* -------------------------------------------------------------------------
   14.5 Promotions Page Template
   ------------------------------------------------------------------------- */
.promotions-page {
    overflow: hidden;
}

.promotions-hero {
    padding: 50px 0 70px;
}

.promotions-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: center;
    min-height: 460px;
    background: radial-gradient(circle at top right, rgba(223, 183, 92, 0.1) 0%, rgba(15, 15, 15, 0.96) 42%, #090909 100%);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.62);
}

.promotions-hero-grid::before,
.featured-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(223, 183, 92, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 183, 92, 0.025) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.promotions-hero-grid::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(223, 183, 92, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.promotions-hero-content,
.promotions-hero-media,
.featured-promo-content,
.promo-card-content {
    position: relative;
    z-index: 2;
}

.promotions-hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promotions-hero-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 30px;
}

.promotions-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.promotions-hero-placeholder,
.featured-promo-card .promo-card-image,
.promo-card .promo-card-image {
    border: 1px solid rgba(223, 183, 92, 0.3);
    border-radius: 12px;
    overflow: hidden;
    background: #141414;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}

.promotions-hero-placeholder .placeholder-img-16-9,
.featured-promo-card .placeholder-img-16-9,
.promo-card .placeholder-img-16-9 {
    border: none;
    border-radius: 0;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.featured-promo {
    padding-top: 30px;
}

.featured-promo-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: center;
    background: radial-gradient(circle at bottom left, rgba(223, 183, 92, 0.08), #0d0d0d 58%);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
    transition: var(--transition-smooth);
}

.featured-promo-card:hover,
.promo-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-hover);
    box-shadow: 0 18px 34px rgba(223, 183, 92, 0.13);
}

.featured-promo-card:hover .placeholder-img-16-9,
.promo-card:hover .placeholder-img-16-9 {
    transform: scale(1.045);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--gold-gradient);
    color: #050505;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.featured-promo-content h3,
.promo-card-content h3 {
    font-size: 1.7rem;
    line-height: 1.3;
    margin: 16px 0 12px;
    transition: var(--transition-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-promo-content p,
.promo-card-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promotion-grid-section {
    padding-top: 35px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.promo-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #0f0f0f;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.promo-card .promo-card-image {
    border-width: 0 0 1px 0;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    position: relative;
    box-shadow: none;
}

.featured-promo-card .promo-card-image {
    aspect-ratio: 1 / 1;
}

.promo-card-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 4;
}

.promo-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.promo-card-content h3 {
    font-size: 1.28rem;
}

.promo-card-content p {
    flex-grow: 1;
    font-size: 0.92rem;
}

.promo-card:hover .promo-card-content h3,
.featured-promo-card:hover .featured-promo-content h3 {
    color: var(--gold-primary);
}

.promotions-final-cta {
    padding-top: 35px;
}

/* -------------------------------------------------------------------------
   15. Responsive Styling (Media Queries)
   ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
   14.6 Simple Promotions and Promotion Detail Pages
   ------------------------------------------------------------------------- */
.promotions-simple-page,
.promotions-page,
.promotion-detail-page {
    overflow: hidden;
}

.promotions-simple-header,
.promotions-page-head {
    padding: 46px 0 24px;
    text-align: center;
}

.promotions-simple-header h1,
.promotions-page-head h1 {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 25%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promotions-simple-header p,
.promotions-page-head p {
    color: var(--text-gray);
    font-size: 0.98rem;
}

.promotions-grid-section {
    padding: 24px 0 74px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.promotion-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    background: radial-gradient(circle at top, rgba(223, 183, 92, 0.055), #101010 46%, #0b0b0b 100%);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.46);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.promotion-card::before,
.promotion-detail-layout::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(223, 183, 92, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 183, 92, 0.018) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.promotion-card:hover {
    transform: translateY(-7px);
    border-color: var(--border-gold-hover);
    box-shadow: 0 20px 38px rgba(223, 183, 92, 0.13), 0 16px 34px rgba(0, 0, 0, 0.54);
}

.promotion-card-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    background: #151515;
    border-bottom: 1px solid rgba(223, 183, 92, 0.28);
    overflow: hidden;
    position: relative;
}

.promotion-card-image img,
.promotion-detail-image img,
.featured-promo-card .promo-card-image img,
.promo-card .promo-card-image img,
.carousel-card-img img,
.game-card-img-wrapper img,
.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.game-provider-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.game-card-img-wrapper .placeholder-img-16-9,
.article-card-img .placeholder-img-16-9,
.game-provider-image .placeholder-img-16-9,
.carousel-card-img .placeholder-img-16-9,
.featured-promo-card .promo-card-image .placeholder-img-16-9,
.promo-card .promo-card-image .placeholder-img-16-9 {
    aspect-ratio: 1 / 1;
    height: 100%;
    border: none;
    border-radius: 0;
}

.promotion-placeholder-square {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold-primary);
    background:
        radial-gradient(circle at 50% 34%, rgba(223, 183, 92, 0.17), transparent 34%),
        linear-gradient(135deg, #232323 0%, #111111 100%);
    position: relative;
    text-align: center;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promotion-placeholder-square svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    opacity: 0.82;
}

.promotion-placeholder-square span {
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.promotion-card:hover .promotion-placeholder-square {
    transform: scale(1.055);
}

.promotion-card:hover .promotion-card-image img {
    transform: scale(1.055);
}

.promotion-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
}

.promotion-card-content,
.promotion-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.promotion-card-content h2,
.promotion-card-body h2 {
    font-size: 1.12rem;
    line-height: 1.35;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promotion-card-content p,
.promotion-card-body p {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promotion-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 800;
    transition: var(--transition-smooth);
    margin-top: auto;
}

.promotion-card-action svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.promotion-card:hover .promotion-card-content h2,
.promotion-card:hover .promotion-card-body h2,
.promotion-card:hover .promotion-card-action {
    color: var(--gold-light);
}

.promotion-card:hover .promotion-card-action svg {
    transform: translateX(4px);
}

.promotion-detail-hero {
    padding: 52px 0 78px;
}

.promotion-detail-back {
    display: inline-flex;
    align-items: center;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.promotion-detail-back:hover {
    color: var(--gold-light);
}

.promotion-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 34px;
    align-items: start;
    background: radial-gradient(circle at top right, rgba(223, 183, 92, 0.08), #101010 48%, #090909 100%);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.6);
}

.promotion-detail-image,
.promotion-detail-content {
    position: relative;
    z-index: 2;
}

.promotion-detail-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 560px;
    justify-self: center;
    border: 1px solid rgba(223, 183, 92, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: #141414;
}

.promotion-detail-placeholder svg {
    width: 58px;
    height: 58px;
}

.promotion-detail-content h1 {
    font-size: 2.35rem;
    line-height: 1.22;
    margin: 16px 0 12px;
    background: linear-gradient(135deg, #ffffff 28%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promotion-detail-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 22px;
}

.promotion-detail-panel {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(223, 183, 92, 0.18);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.promotion-detail-panel h2 {
    color: var(--gold-primary);
    font-size: 1.08rem;
    margin-bottom: 12px;
}

.promotion-detail-panel ul {
    list-style: none;
}

.promotion-detail-panel li {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.promotion-detail-panel li + li {
    margin-top: 8px;
}

.promotion-detail-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px var(--gold-glow);
}

.promotion-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.game-providers-page {
    overflow: hidden;
}

.game-providers-section {
    padding: 24px 0 74px;
}

.game-providers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.slot-provider-groups {
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.slot-provider-group {
    min-width: 0;
}

.slot-provider-group-head {
    margin-bottom: 18px;
}

.slot-provider-group-head h2 {
    color: var(--text-white);
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.slot-provider-group-line {
    width: min(180px, 42vw);
    height: 2px;
    background: var(--gold-gradient);
    box-shadow: 0 0 14px var(--gold-glow);
}

.slot-provider-grid {
    margin-bottom: 0;
}

.category-provider-empty {
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    background: radial-gradient(circle at top, rgba(223, 183, 92, 0.06), #101010 46%, #0b0b0b 100%);
    color: var(--gold-light);
    padding: 34px 22px;
    text-align: center;
}

.category-provider-empty p {
    margin: 0;
    font-weight: 800;
}

.slots-tabs-wrap {
    min-width: 0;
}

.slots-provider-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    padding: 5px 2px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-color: rgba(223, 183, 92, 0.55) rgba(255, 255, 255, 0.04);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.slots-provider-tabs::-webkit-scrollbar {
    height: 5px;
}

.slots-provider-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
}

.slots-provider-tabs::-webkit-scrollbar-thumb {
    background: rgba(223, 183, 92, 0.55);
    border-radius: 999px;
}

.slots-provider-tab {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(7, 7, 7, 0.96));
    color: var(--text-gray);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(255, 235, 180, 0.02);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.slots-provider-tab:hover {
    color: var(--gold-light);
    border-color: rgba(255, 215, 120, 0.78);
    transform: translateY(-1px);
}

.slots-provider-tab:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

.slots-provider-tab.is-active,
.slots-provider-tab[aria-selected="true"] {
    color: #080808;
    border-color: rgba(255, 229, 155, 0.95);
    background: var(--gold-gradient);
    box-shadow: 0 0 22px rgba(223, 183, 92, 0.3);
}

.slots-provider-panels,
.slots-provider-panel {
    min-width: 0;
}

.slots-provider-panel[hidden] {
    display: none;
}

.slots-provider-panel.is-active {
    animation: slots-panel-in 0.22s ease both;
}

@keyframes slots-panel-in {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-provider-groups {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.category-provider-section {
    min-width: 0;
}

.category-provider-heading {
    color: var(--gold-light);
    font-size: 1.55rem;
    line-height: 1.3;
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
}

.category-provider-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(190px, 44vw);
    height: 2px;
    background: var(--gold-gradient);
    box-shadow: 0 0 14px var(--gold-glow);
}

.category-poster-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.category-poster-card {
    display: block;
    width: 100%;
    aspect-ratio: 244 / 307;
    height: auto;
    min-height: 0;
    min-width: 0;
    padding: 0;
    margin: 0;
    line-height: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.85);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), 0 0 12px rgba(212, 175, 55, 0.08);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-provider-page--slots .category-poster-card {
    aspect-ratio: 400 / 580;
}

.category-provider-page--baccarat .category-poster-card,
.category-provider-page--sports .category-poster-card,
.category-provider-page--football .category-poster-card {
    aspect-ratio: 244 / 307;
}

.category-poster-link {
    align-self: start;
}

.category-poster-card:hover,
.category-poster-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 120, 0.75);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), 0 0 24px rgba(212, 175, 55, 0.18);
}

.category-poster-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a0a0a;
    transition: transform 0.3s ease;
}

.category-poster-card:hover > .category-poster-image,
.category-poster-card:focus-visible > .category-poster-image {
    transform: scale(1.025);
}

.category-poster-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0;
    background:
        linear-gradient(rgba(223, 183, 92, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 183, 92, 0.05) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(223, 183, 92, 0.12), #050505 68%);
    background-size: 32px 32px, 32px 32px, auto;
}

.category-poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #050505;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: var(--transition-smooth);
    box-shadow: 0 0 18px var(--gold-glow);
    z-index: 2;
}

.category-poster-play svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.category-poster-card:hover .category-poster-play,
.category-poster-card:focus-visible .category-poster-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.game-provider-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: radial-gradient(circle at top, rgba(223, 183, 92, 0.055), #101010 46%, #0b0b0b 100%);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.46);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.game-provider-card:hover {
    transform: translateY(-7px);
    border-color: var(--border-gold-hover);
    box-shadow: 0 20px 38px rgba(223, 183, 92, 0.13), 0 16px 34px rgba(0, 0, 0, 0.54);
}

.game-provider-image {
    aspect-ratio: 1 / 1;
    background: #151515;
    border-bottom: 1px solid rgba(223, 183, 92, 0.28);
    overflow: hidden;
    position: relative;
}

.game-provider-card:hover .game-provider-image img {
    transform: scale(1.055);
}

.game-provider-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #050505;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: var(--transition-smooth);
    box-shadow: 0 0 18px var(--gold-glow);
    z-index: 3;
}

.game-provider-play svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.game-provider-card:hover .game-provider-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.game-provider-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
}

.game-provider-body h2 {
    font-size: 1.08rem;
    line-height: 1.35;
    transition: var(--transition-smooth);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-provider-card:hover .game-provider-body h2 {
    color: var(--gold-light);
}

@media screen and (max-width: 1024px) {
    .primary-menu-list {
        gap: 20px;
    }
    
    .games-grid,
    .seo-cards-grid,
    .articles-grid,
    .promo-grid {
        gap: 20px;
    }

    .blog-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promotions-hero-grid,
    .featured-promo-card {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promotions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .game-providers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-poster-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-link-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promotion-detail-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    /* Set padding bottom on body to prevent bottom bar overlapping content */
    body {
        padding-bottom: 85px; 
    }

    section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Hide Desktop header elements */
    .desktop-nav,
    .header-ctas {
        display: none;
    }

    .site-header {
        padding: 12px 0;
        position: relative; /* Prevent sticky conflicts on small mobile screens */
    }

    .header-container {
        justify-content: center; /* Center logo on mobile header */
    }

    /* Mobile Sticky Bottom Bar */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 1px solid rgba(223, 183, 92, 0.25);
        z-index: 999;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-gray);
        font-size: 0.7rem;
        font-weight: 500;
        gap: 4px;
        flex: 1;
        height: 100%;
        transition: var(--transition-smooth);
    }

    .mobile-nav-item svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        transition: var(--transition-smooth);
    }

    .mobile-nav-item:hover,
    .mobile-nav-item.active,
    .mobile-nav-item.is-active {
        color: var(--gold-primary);
    }

    .mobile-nav-item:hover svg,
    .mobile-nav-item.active svg,
    .mobile-nav-item.is-active svg {
        stroke: var(--gold-primary);
        filter: drop-shadow(0 0 3px var(--gold-glow));
    }

    /* Floating Center Gold Circular Register Button */
    .mobile-nav-center {
        position: relative;
        top: -18px;
        flex: none;
        width: 62px;
        height: 62px;
        z-index: 1001;
    }

    .mobile-floating-btn {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: var(--gold-gradient);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000;
        box-shadow: 0 5px 20px rgba(223, 183, 92, 0.5);
        border: 2px solid #000;
        position: relative;
        animation: floatPulse 2s infinite ease-in-out;
    }

    .mobile-floating-btn svg {
        width: 26px;
        height: 26px;
        fill: currentColor;
        stroke: none;
    }

    .mobile-nav-center span {
        position: absolute;
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        font-size: 0.65rem;
        color: var(--gold-primary);
        font-weight: 700;
    }

    .mobile-nav-center.is-active .mobile-floating-btn,
    .mobile-nav-center.active .mobile-floating-btn {
        box-shadow: 0 0 24px rgba(243, 229, 171, 0.75);
        border-color: var(--gold-light);
    }

    .mobile-nav-center.is-active span,
    .mobile-nav-center.active span {
        color: var(--gold-light);
        text-shadow: 0 0 8px var(--gold-glow);
    }

    .site-footer {
        padding-bottom: 92px;
    }

    .footer-entrance-section {
        padding: 42px 0 34px;
    }

    .footer-entrance-title {
        font-size: 2.4rem;
    }

    .footer-link-groups {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-link-group-card {
        min-height: auto;
        padding: 20px;
    }

    .footer-link-group-head {
        min-height: 52px;
    }

    .footer-main-section {
        padding-top: 30px;
    }

    .footer-trust-card {
        min-height: 96px;
    }

    @keyframes floatPulse {
        0%, 100% {
            transform: translateY(0);
            box-shadow: 0 5px 15px rgba(223, 183, 92, 0.5);
        }
        50% {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(223, 183, 92, 0.7);
        }
    }

    /* Slider styling adjustments */
    .promo-slider {
        aspect-ratio: auto;
        height: 520px;
    }

    .promo-slide {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
        align-content: center;
    }

    .slide-content-left {
        text-align: center;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-description {
        font-size: 0.85rem;
        margin: 0 auto 20px;
    }

    .slide-ctas {
        justify-content: center;
    }

    .promotions-hero {
        padding: 35px 0 45px;
    }

    .promotions-hero-grid {
        min-height: auto;
        padding: 28px 20px;
        gap: 24px;
        text-align: center;
    }

    .promotions-hero-content h1 {
        font-size: 2.05rem;
    }

    .promotions-hero-content p {
        font-size: 0.95rem;
        margin-left: auto;
        margin-right: auto;
    }

    .promotions-actions {
        justify-content: center;
    }

    .featured-promo-card {
        padding: 20px;
        gap: 22px;
    }

    .featured-promo-content {
        text-align: center;
    }

    .featured-promo-content .game-card-action {
        align-self: center;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .promotions-simple-header,
    .promotions-page-head {
        padding: 36px 0 18px;
    }

    .promotions-simple-header h1,
    .promotions-page-head h1 {
        font-size: 1.9rem;
    }

    .promotions-grid-section {
        padding: 20px 0 52px;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .game-providers-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .promotion-card-content,
    .promotion-card-body {
        padding: 18px;
    }

    .promotion-detail-hero {
        padding: 36px 0 56px;
    }

    .promotion-detail-layout {
        padding: 18px;
        gap: 22px;
    }

    .promotion-detail-content h1 {
        font-size: 1.85rem;
    }

    .promotion-detail-actions {
        flex-direction: column;
    }

    .promotion-detail-actions .btn-gold,
    .promotion-detail-actions .btn-black-gold {
        width: 100%;
    }

    .stb-page-sections {
        padding: 22px 0;
    }

    .stb-page-section-box,
    .stb-page-section-copy,
    .stb-page-section-banner-overlay {
        padding: 22px;
    }

    .stb-page-section-split {
        grid-template-columns: 1fr;
    }

    .stb-page-section-banner,
    .stb-page-section-banner-overlay {
        min-height: 260px;
    }

    .slide-image-right {
        display: flex;
        height: auto;
        width: 100%;
        justify-content: center;
    }

    /* Intro box adjustments */
    .intro-seo-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 25px;
        text-align: center;
    }

    .intro-seo-left h2 {
        font-size: 1.8rem;
    }

    /* Grid structural changes for mobile */
    .games-grid,
    .seo-cards-grid,
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-col-trust {
        align-items: stretch;
    }

    /* Carousel adjustment */
    .carousel-outer-wrapper::before,
    .carousel-outer-wrapper::after {
        width: 40px;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 1.8rem;
    }

    .final-cta-btns {
        flex-direction: column;
        gap: 15px;
    }

    .final-cta-btns .btn-gold,
    .final-cta-btns .btn-black-gold {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .category-poster-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media screen and (max-width: 900px) {
    .category-poster-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .category-poster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-provider-groups {
        gap: 38px;
    }

    .category-provider-heading {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .category-poster-play {
        width: 44px;
        height: 44px;
    }

    .slots-provider-tabs {
        gap: 9px;
        margin-bottom: 22px;
    }

    .slots-provider-tab {
        min-height: 40px;
        padding: 0 17px;
        font-size: 0.84rem;
    }
}
