/**
 * Casino Dark Theme - Design Reference Styles
 * Based on Elementor Casino Betting Kit
 */

/* ==========================================================================
   GLOBAL BACKGROUND - Aurora + Noise
   ========================================================================== */

/* Override secondary color for dark theme readability */
:root {
    --color-secondary: #FFFFFF;
    --color-secondary-dark: #E0E0E8;
    --color-secondary-light: #5EFC82;
}

body {
    background: #050505;
    position: relative;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
}

/* Aurora container */
.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    will-change: transform, opacity;
    animation: aurora-float 12s ease-in-out infinite;
}

.aurora-orb:nth-child(1) {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.35) 0%, rgba(0, 200, 83, 0.08) 40%, transparent 70%);
    top: -15%;
    right: -10%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.aurora-orb:nth-child(2) {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.25) 0%, rgba(0, 150, 36, 0.06) 40%, transparent 70%);
    bottom: 15%;
    left: -15%;
    animation-delay: -4s;
    animation-duration: 16s;
}

.aurora-orb:nth-child(3) {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(94, 252, 130, 0.2) 0%, rgba(94, 252, 130, 0.04) 40%, transparent 70%);
    top: 35%;
    right: 15%;
    animation-delay: -8s;
    animation-duration: 18s;
}

.aurora-orb:nth-child(4) {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 150, 36, 0.22) 0%, rgba(0, 150, 36, 0.05) 40%, transparent 70%);
    bottom: -10%;
    right: 25%;
    animation-delay: -6s;
    animation-duration: 20s;
}

@keyframes aurora-float {
    0%, 100% {
        opacity: 0.6;
        transform: translate(0, 0) scale(1);
    }
    25% {
        opacity: 1;
        transform: translate(40px, -30px) scale(1.08);
    }
    50% {
        opacity: 0.7;
        transform: translate(-30px, 20px) scale(0.95);
    }
    75% {
        opacity: 1;
        transform: translate(20px, 35px) scale(1.05);
    }
}

/* Ensure content sits above aurora */
.page-wrapper {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   BUTTON SHINE EFFECT
   ========================================================================== */

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

/* ==========================================================================
   TYPOGRAPHY POLISH
   ========================================================================== */

.section-title {
    letter-spacing: 0.02em;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

h1, h2, h3 {
    letter-spacing: 0.01em;
}

/* ==========================================================================
   GLASSMORPHISM - Frosted Glass Cards
   ========================================================================== */

.game-type-card {
    background: rgba(10, 10, 16, 0.55);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(94, 252, 130, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.game-type-card:hover {
    background: rgba(0, 200, 83, 0.12);
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.2), 0 16px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.experience-card,
.testimonial-card,
.casino-card-new,
.category-card,
.subcat-card,
.article-card,
.related-card {
    background: rgba(14, 14, 14, 0.6);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(94, 252, 130, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.experience-card:hover,
.testimonial-card:hover,
.casino-card-new:hover,
.category-card:hover,
.subcat-card:hover,
.article-card:hover,
.related-card:hover {
    background: rgba(14, 14, 14, 0.75);
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: 0 0 25px rgba(0, 200, 83, 0.12), 0 16px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tag-card {
    background: rgba(14, 14, 20, 0.5);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(94, 252, 130, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tag-card:hover {
    background: rgba(14, 14, 20, 0.7);
    border-color: rgba(0, 200, 83, 0.25);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.15), 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sidebar-widget,
.seo-content {
    background: rgba(14, 14, 20, 0.55);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(94, 252, 130, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* ==========================================================================
   HERO SECTION - Dark Casino with Image Grid
   ========================================================================== */

.hero {
    position: relative;
    overflow: hidden;
    margin-top: calc(var(--header-height) * -1);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 75% 40%, rgba(0, 200, 83, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 15% 70%, rgba(0, 200, 83, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 50% 10%, rgba(0, 200, 83, 0.05) 0%, transparent 60%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.02;
    mix-blend-mode: overlay;
}

/* Hero content layout - 2 columns */
.hero-main {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-content {
    text-align: left;
    max-width: none;
    padding: 0;
}

.hero-content::before {
    display: none;
}

.hero-title {
    font-size: var(--text-5xl);
    color: var(--color-text-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--color-primary);
    text-shadow: 0 0 30px rgba(0, 200, 83, 0.6), 0 0 60px rgba(0, 200, 83, 0.3);
}

.hero-title span::after {
    display: none;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
    line-height: var(--leading-relaxed);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.hero .btn-primary {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.85) 0%, rgba(0, 150, 36, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    border: 1px solid rgba(94, 252, 130, 0.3);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 25px rgba(0, 200, 83, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    text-shadow: none;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.hero .btn-primary:hover::before {
    left: 100%;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, rgba(94, 252, 130, 0.9) 0%, rgba(0, 200, 83, 0.95) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 200, 83, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Hero Image Grid */
.hero-image-grid {
    position: relative;
    width: 100%;
    height: 480px;
}

.hero-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100%;
    transform: rotate(-8deg) scale(1.05);
    transform-origin: center center;
    transition: transform 0.6s ease;
}

.hero-grid-wrapper:hover {
    transform: rotate(-5deg) scale(1.08);
}

.hero-grid-item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    border: 1px solid rgba(94, 252, 130, 0.1);
}

.hero-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-grid-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.hero-grid-item:hover img {
    transform: scale(1.1);
}

/* Decorative light effect */
.hero-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

/* Hero bottom transition */
.hero-bottom {
    position: relative;
    z-index: 2;
    height: 80px;
    margin-top: 0;
    background: linear-gradient(180deg, transparent 0%, #050505 100%);
}

.hero-bottom::before {
    display: none;
}

/* Remove old decorative elements */
.hero-decor-left,
.hero-decor-right,
.hero-decor-accent,
.hero-decor-spade,
.hero-decor-heart,
.hero-decor-club,
.hero-decor-dice,
.hero-decor-chips,
.hero-decor-cards,
.hero-decor-extra,
.hero-decor-roulette,
.hero-decor-roulette2,
.hero-divider,
.hero-trust {
    display: none !important;
}

/* ==========================================================================
   GAME TYPES SECTION
   ========================================================================== */

.game-types-section {
    padding: var(--space-4xl) 0;
    background: transparent;
    position: relative;
}

.game-types-section .section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.game-types-section .section-title {
    color: var(--color-text-white);
}

.game-types-section .section-subtitle {
    color: var(--color-text-light);
}

.game-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.game-type-card {
    background: linear-gradient(160deg, #00C853 0%, #009624 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.game-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(160deg, #5EFC82 0%, #00C853 100%);
}

.game-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-type-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.game-type-card:hover .game-type-icon img {
    transform: scale(1.1);
}

.game-type-name {
    font-size: var(--text-lg);
    color: #fff;
    margin-bottom: var(--space-xs);
    font-weight: var(--font-bold);
}

.game-type-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--leading-relaxed);
}

/* ==========================================================================
   GAMING EXPERIENCE SECTION
   ========================================================================== */

.experience-section {
    padding: var(--space-4xl) 0;
    background: transparent;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.experience-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.experience-title {
    font-size: var(--text-3xl);
    color: var(--color-text-white);
    margin-bottom: var(--space-lg);
    line-height: var(--leading-tight);
}

.experience-text {
    color: var(--color-text-light);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.experience-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(0, 200, 83, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 200, 83, 0.1);
    transition: all 0.3s ease;
}

.experience-feature:hover {
    background: rgba(0, 200, 83, 0.15);
    border-color: rgba(0, 200, 83, 0.3);
}

.experience-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.experience-feature-text {
    color: var(--color-text-white);
    font-weight: var(--font-medium);
}

.experience-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.experience-card {
    background: #141414;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 200, 83, 0.1);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.experience-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.experience-card-body {
    padding: var(--space-lg);
}

.experience-card-title {
    font-size: var(--text-base);
    color: var(--color-text-white);
    margin-bottom: var(--space-xs);
    font-weight: var(--font-bold);
}

.experience-card-text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* ==========================================================================
   JOURNEY SECTIONS (01, 02)
   ========================================================================== */

.journey-section {
    padding: var(--space-4xl) 0;
    background: transparent;
}

.journey-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-4xl);
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-item.reverse {
    direction: rtl;
}

.journey-item.reverse > * {
    direction: ltr;
}

.journey-number {
    font-size: 6rem;
    font-weight: var(--font-bold);
    color: #5EFC82;
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(94, 252, 130, 0.5), 0 0 40px rgba(0, 200, 83, 0.25);
}

.journey-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.journey-title {
    font-size: var(--text-2xl);
    color: var(--color-text-white);
    margin-bottom: var(--space-lg);
}

.journey-text {
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
}

.journey-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.journey-tag {
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-primary-light);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.journey-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

/* ==========================================================================
   PRODUCT CARDS SECTION
   ========================================================================== */

.products-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-alt);
}

.products-section .section-title {
    color: var(--color-text-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.product-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 200, 83, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 200, 83, 0.2);
}

.product-card-image {
    height: 200px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-primary);
    color: #fff;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.product-card-body {
    padding: var(--space-xl);
}

.product-card-name {
    font-size: var(--text-xl);
    color: var(--color-text-white);
    margin-bottom: var(--space-sm);
    font-weight: var(--font-bold);
}

.product-card-price {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.product-card-price strong {
    font-size: var(--text-2xl);
    color: var(--color-primary);
    font-weight: var(--font-bold);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    padding: var(--space-4xl) 0;
    background: transparent;
}

.testimonials-section .section-title {
    color: var(--color-text-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: #141414;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(0, 200, 83, 0.1);
    position: relative;
}

.testimonial-quote {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xl);
    font-style: italic;
    position: relative;
    padding-left: var(--space-lg);
}

.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--color-primary);
    font-style: normal;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 200, 83, 0.3);
}

.testimonial-info h4 {
    font-size: var(--text-base);
    color: var(--color-text-white);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #FFB800;
}

/* ==========================================================================
   SECTION STYLES OVERRIDES FOR DARK THEME
   ========================================================================== */

.section-title {
    color: var(--color-text-white);
}

.section-subtitle {
    color: var(--color-text-light);
}

/* Category cards dark theme */
.category-card {
    background: #141414;
    border: 1px solid rgba(0, 200, 83, 0.1);
}

.category-card:hover {
    background: #1a1a1a;
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: 0 12px 32px rgba(0, 200, 83, 0.15);
}

.category-card-icon {
    background: none;
}

.category-card-title {
    color: var(--color-text-white);
}

.category-card:hover .category-card-title {
    color: var(--color-primary-light);
}

.category-card-count {
    color: var(--color-text-muted);
}

/* Stats section dark - green */
.stats-section {
    background: linear-gradient(135deg, #00C853 0%, #009624 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.stat-number {
    color: #fff !important;
}

.stat-label {
    color: rgba(255,255,255,0.85) !important;
}

/* Carousel dark - green */
.carousel-section {
    background: linear-gradient(135deg, #009624 0%, #00C853 50%, #009624 100%);
    position: relative;
}

.carousel-section .section-title {
    color: #fff;
}

.kw-pill {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.kw-pill:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Tags section dark */
.tags-section {
    background: transparent;
}

.tags-section::before,
.tags-section::after {
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.2), transparent);
}

.tag-card {
    background: #141414;
    border-color: rgba(0, 200, 83, 0.1);
}

.tag-card:hover {
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.2);
    border-color: rgba(0, 200, 83, 0.3);
}

.tag-card::before {
    background: var(--color-primary);
}

.tag-card-featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, #009624 100%);
}

.tag-card-icon {
    background: rgba(0, 200, 83, 0.15);
    color: var(--color-primary-light);
}

.tag-card-name {
    color: var(--color-text);
}

.tag-card-count {
    background: rgba(0, 200, 83, 0.15);
    color: var(--color-primary-light);
}

/* SEO content dark */
.seo-content {
    background: rgba(14, 14, 20, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 200, 83, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.seo-content h2 {
    color: var(--color-text-white);
}

.seo-content p {
    color: var(--color-text-light);
}

/* SEO content tags dark override */
.seo-content-tags h2 {
    color: #fff;
}

.seo-content-tags h3 {
    color: #5EFC82;
}

.seo-content-tags p:last-of-type {
    color: var(--color-text-light);
}

/* Header dark theme tweaks */
.header {
    background: rgba(10, 10, 14, 0.8);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(0, 200, 83, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Header CTA button */
.header-cta {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-primary);
    color: #fff !important;
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

/* Modal dark */
.modal {
    background: rgba(14, 14, 20, 0.85);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(0, 200, 83, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.modal-header {
    border-bottom-color: rgba(0, 200, 83, 0.1);
}

.modal-title {
    color: #5EFC82;
}

.modal-close {
    color: rgba(255, 255, 255, 0.6);
}

.modal-close:hover {
    background: rgba(0, 200, 83, 0.1);
    color: #fff;
}

/* Contact card glassmorphism */
.contact-card {
    background: rgba(18, 18, 24, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 200, 83, 0.25);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 200, 83, 0.08);
}

.contact-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00C853, #5EFC82, #00C853);
}

.form-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-label svg {
    color: #00C853;
    flex-shrink: 0;
}

.contact-submit {
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.85), rgba(0, 150, 36, 0.9)) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(94, 252, 130, 0.3) !important;
    border-radius: var(--radius-lg) !important;
    padding: var(--space-md) var(--space-2xl) !important;
    font-size: var(--text-lg) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-submit:hover {
    background: linear-gradient(135deg, rgba(94, 252, 130, 0.9), rgba(0, 200, 83, 0.95)) !important;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Contact form dark */
.form-label {
    color: rgba(255, 255, 255, 0.85);
}

.form-input,
.form-textarea,
.form-select {
    background: rgba(10, 10, 16, 0.9);
    border: 2px solid rgba(0, 200, 83, 0.2);
    color: #fff;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: #5EFC82;
    background: rgba(10, 10, 16, 0.95);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.15), 0 0 15px rgba(0, 200, 83, 0.08);
}

/* Footer dark */
.footer {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: none;
    position: relative;
}

.footer-glow {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00C853, #5EFC82, #00C853, transparent);
    opacity: 0.6;
}

.footer-title {
    color: #5EFC82;
}

/* Trust Badges */
.footer-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    margin-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(0, 200, 83, 0.08);
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(0, 200, 83, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 200, 83, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.footer-trust-badge svg {
    color: #00C853;
    flex-shrink: 0;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00C853, #009624);
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: var(--font-bold);
    flex-shrink: 0;
}

/* Social links */
.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.15);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(0, 200, 83, 0.15);
    border-color: rgba(0, 200, 83, 0.3);
    color: #5EFC82;
    transform: translateY(-2px);
}

/* Newsletter */
.footer-newsletter-text {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-md);
    line-height: var(--leading-relaxed);
}

.footer-newsletter {
    display: flex;
    gap: 0;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(0, 200, 83, 0.15);
    background: rgba(0, 200, 83, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-newsletter-input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: none;
    color: #fff;
    font-size: var(--text-sm);
    outline: none;
    min-width: 0;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.85), rgba(0, 150, 36, 0.9));
    border: none;
    border-left: 1px solid rgba(94, 252, 130, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-newsletter-btn:hover {
    background: linear-gradient(135deg, rgba(94, 252, 130, 0.9), rgba(0, 200, 83, 0.95));
}

/* Footer grid 4 columns */
.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #009624 0%, #00C853 50%, #009624 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.cta-banner h2 {
    font-size: var(--text-3xl);
    color: #fff;
    margin-bottom: var(--space-md);
    position: relative;
}

.cta-banner p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-banner .btn-primary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--color-primary);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   ARTICLE PAGE - Green Modern
   ========================================================================== */

/* Article content typography */
.article-content h2 {
    color: #5EFC82;
    border-bottom: 1px solid rgba(0, 200, 83, 0.15);
    padding-bottom: var(--space-sm);
}

.article-content h3 {
    color: #00C853;
}

.article-content h4 {
    color: rgba(94, 252, 130, 0.85);
}

.article-content a {
    color: #5EFC82;
    text-decoration-color: rgba(94, 252, 130, 0.3);
}

.article-content a:hover {
    color: #00C853;
    text-decoration-color: #00C853;
}

.article-content blockquote {
    border-left-color: #00C853;
    background: rgba(0, 200, 83, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-content table {
    border-color: rgba(0, 200, 83, 0.15);
}

.article-content th {
    background: linear-gradient(135deg, #00C853, #009624);
    color: #fff;
}

.article-content td {
    border-bottom-color: rgba(0, 200, 83, 0.1);
}

.article-content tr:nth-child(even) {
    background: rgba(0, 200, 83, 0.03);
}

.article-content figure img {
    border: 1px solid rgba(0, 200, 83, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb dark green */
.breadcrumb {
    background: rgba(14, 14, 20, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 200, 83, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-xl);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.breadcrumb a {
    color: #5EFC82;
}

.breadcrumb a:hover {
    color: #00C853;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(94, 252, 130, 0.3);
}

/* Sidebar dark green */
.sidebar-widget {
    background: #141414;
    border: 1px solid rgba(0, 200, 83, 0.1);
    border-radius: var(--radius-xl);
}

.sidebar-title {
    color: #5EFC82;
    border-bottom-color: rgba(0, 200, 83, 0.2);
}

.sidebar-widget a {
    color: rgba(255, 255, 255, 0.7) !important;
    border-bottom: 1px solid rgba(0, 200, 83, 0.05);
    padding: var(--space-sm) 0 !important;
    transition: all 0.2s ease;
}

.sidebar-widget a:hover {
    color: #5EFC82 !important;
    padding-left: var(--space-sm) !important;
}

/* Related articles green */
.related-articles {
    border-top-color: rgba(0, 200, 83, 0.15);
}

.related-title {
    color: #5EFC82;
}

.related-articles .card {
    background: #141414;
    border: 1px solid rgba(0, 200, 83, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-articles .card:hover {
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 200, 83, 0.15);
}

.related-articles .card-title a {
    color: #fff;
}

.related-articles .card-title a:hover {
    color: #5EFC82;
}

/* Article tags section — green theme */
.article-tags-section {
    background: rgba(0, 200, 83, 0.03);
    border: 1px solid rgba(0, 200, 83, 0.1);
    border-radius: var(--radius-xl);
}

.article-tags-section::before {
    background: linear-gradient(90deg, transparent, rgba(0, 200, 83, 0.3), transparent) !important;
}

.article-tags-icon {
    background: linear-gradient(135deg, #00C853, #009624) !important;
}

.article-tags-title {
    color: #5EFC82 !important;
}

.article-tag {
    background: rgba(0, 200, 83, 0.08);
    border-color: rgba(0, 200, 83, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.article-tag::before {
    color: #5EFC82;
}

.article-tag:hover {
    background: linear-gradient(135deg, #00C853, #009624);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.article-tag:hover::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Article header tag badge */
.tag {
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #5EFC82;
    border-radius: var(--radius-full);
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: 0.02em;
}

/* Article Hero Banner */
.article-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    height: 320px;
    border: 1px solid rgba(0, 200, 83, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-hero-img {
    position: absolute;
    inset: 0;
}

.article-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.85) 70%, rgba(5, 5, 5, 0.98) 100%);
}

.article-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
    z-index: 1;
}

.article-hero-title {
    font-size: var(--text-3xl);
    color: #fff;
    line-height: 1.2;
    margin-top: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Related article cards — modern green */
.related-card {
    display: flex;
    flex-direction: column;
    background: #141414;
    border: 1px solid rgba(0, 200, 83, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-card:hover {
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 200, 83, 0.15);
}

.related-card-img {
    height: 160px;
    overflow: hidden;
}

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

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

.related-card-title {
    padding: var(--space-md) var(--space-md) var(--space-xs);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    line-height: 1.4;
    flex: 1;
}

.related-card-link {
    padding: 0 var(--space-md) var(--space-md);
    color: #5EFC82;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    transition: color 0.2s ease;
}

.related-card:hover .related-card-link {
    color: #00C853;
}

@media (max-width: 768px) {
    .article-hero {
        height: 220px;
    }
    .article-hero-title {
        font-size: var(--text-xl);
    }
    .article-hero-content {
        padding: var(--space-lg);
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(n+9) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 200, 83, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 200, 83, 0.4); }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out both;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease-out both;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease-out both;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-grid {
        height: 320px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-grid-wrapper {
        transform: rotate(-5deg) scale(1);
    }

    .hero-grid-wrapper:hover {
        transform: rotate(-3deg) scale(1.03);
    }

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

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .journey-item {
        grid-template-columns: 1fr;
    }

    .journey-item.reverse {
        direction: ltr;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero-main {
        padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-image-grid {
        height: 260px;
    }

    .hero-grid-wrapper {
        transform: rotate(-3deg) scale(1);
    }

    .game-types-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .experience-cards {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .journey-number {
        font-size: 4rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: var(--text-2xl);
    }

    .hero-image-grid {
        height: 200px;
    }

    .hero-grid-wrapper {
        grid-template-columns: 1fr 1fr;
        transform: rotate(0deg) scale(1);
    }

    .game-types-grid {
        grid-template-columns: 1fr;
    }
}
