/* JL99 Asia - Main Stylesheet */
:root {
    --primary-green: #2d5a4a;
    --secondary-green: #3d7a6a;
    --gold: #f4b844;
    --dark-gold: #d4921a;
    --light-gold: #ffd966;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f9f9f9;
}

/* Header and Navigation */
header {
    background-color: var(--primary-green);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 50px;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 150px;
}

.logo:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.75rem 0.5rem;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

nav a:hover {
    color: var(--gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--gold);
    color: #000;
    padding: 0.875rem 1.75rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero .cta-button,
nav a.cta-button {
    color: #000;
}

.cta-button:hover {
    background-color: var(--dark-gold);
    color: #fff;
    border-color: var(--dark-gold);
}

/* Main Container */
.main-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.home-content-wrapper {
    grid-template-columns: 1fr;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero-banner {
    width: 100%;
    height: auto;
    aspect-ratio: 20 / 7;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.homepage-carousel {
    margin-bottom: 2rem;
}

.homepage-carousel__viewport {
    position: relative;
    overflow: hidden;
    aspect-ratio: 20 / 7;
    border-radius: 8px;
    background: #12382f;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.homepage-carousel__track {
    height: 100%;
    position: relative;
}

.homepage-carousel__slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 0.45s ease, transform 0.6s ease;
    pointer-events: none;
}

.homepage-carousel__slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.homepage-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-carousel__slide img[data-src] {
    visibility: hidden;
}

.homepage-carousel__control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(18, 56, 47, 0.86);
    color: #fff;
    font: 700 2rem/1 Arial, sans-serif;
    cursor: pointer;
    opacity: 0.92;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.homepage-carousel__control:hover,
.homepage-carousel__control:focus-visible {
    background: var(--dark-gold);
    transform: translateY(-50%) scale(1.08);
}

.homepage-carousel__control--previous {
    left: 1rem;
}

.homepage-carousel__control--next {
    right: 1rem;
}

.homepage-carousel__dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
    min-height: 56px;
    align-content: flex-start;
}

.homepage-carousel__counter {
    display: none;
}

.homepage-carousel__dot {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
}

.homepage-carousel__dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.homepage-carousel__dot.is-active,
.homepage-carousel__dot:hover,
.homepage-carousel__dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: -2px;
}

.homepage-carousel__dot.is-active::before,
.homepage-carousel__dot:hover::before,
.homepage-carousel__dot:focus-visible::before {
    background: var(--gold);
    transform: scale(1.25);
}

.claim-cash-button {
    position: fixed;
    left: 50%;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 1100;
    min-height: 52px;
    padding: 0.85rem 1.25rem;
    border: 2px solid #fff5bd;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffcb4d, #d99213);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    color: #182e26;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: claim-cash-pulse 1.8s ease-in-out infinite;
}

.claim-cash-button:hover,
.claim-cash-button:focus-visible {
    animation-play-state: paused;
    transform: translateX(-50%) translateY(-3px) scale(1.04);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

@keyframes claim-cash-pulse {
    0%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    }
    50% {
        transform: translateX(-50%) translateY(-5px) scale(1.05);
        box-shadow: 0 12px 30px rgba(244, 184, 68, 0.58);
    }
}

@media (max-width: 768px) {
    .homepage-carousel__viewport {
        aspect-ratio: 16 / 10;
    }

    .homepage-carousel__control {
        width: 48px;
        height: 48px;
    }

    .homepage-carousel__control--previous {
        left: 0.6rem;
    }

    .homepage-carousel__control--next {
        right: 0.6rem;
    }

    .claim-cash-button {
        left: 50%;
        bottom: 0.75rem;
        min-height: 48px;
        padding: 0.75rem 1rem;
        font-size: 0.92rem;
    }
}

@media (max-width: 560px) {
    .homepage-carousel__dots {
        min-height: 36px;
        padding-top: 0.5rem;
    }

    .homepage-carousel__dot {
        display: none;
    }

    .homepage-carousel__counter {
        display: inline-flex;
        min-height: 28px;
        align-items: center;
        padding: 0.15rem 0.7rem;
        border-radius: 999px;
        background: rgba(18, 56, 47, 0.7);
        color: #fff;
        font-size: 0.85rem;
        font-weight: 700;
    }
}

@media (prefers-reduced-motion: reduce) {
    .claim-cash-button {
        animation: none;
        transform: translateX(-50%);
    }
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .cta-button {
    display: inline-block;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.hot-games-panel {
    background: linear-gradient(135deg, #174f3f 0%, #245e4a 48%, #1b4b3d 100%);
    border-radius: 18px;
    padding: 1.5rem;
    color: #fff;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}

.hot-games-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hot-games-panel__header h2 {
    font-size: 1.35rem;
    color: #fff;
}

.hot-games-panel__more {
    color: #e5f6ef;
    text-decoration: none;
    font-weight: 700;
}

.hot-games-panel__grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(280px, 0.9fr) minmax(220px, 0.7fr);
    gap: 1rem;
    align-items: stretch;
}

.hot-games-hero,
.hot-games-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hot-games-hero {
    min-height: 420px;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 18% 72%, rgba(247, 180, 68, 0.34) 0 14%, transparent 15%),
        radial-gradient(circle at 75% 20%, rgba(255, 222, 118, 0.18) 0 12%, transparent 13%),
        linear-gradient(135deg, #1f6d57 0%, #13523d 100%);
}

.hot-games-hero::before {
    content: '';
    position: absolute;
    inset: 1rem auto 1rem 1rem;
    width: 44%;
    border-radius: 28px;
    background:
        radial-gradient(circle at 40% 18%, rgba(95, 218, 255, 0.9) 0 2.5%, transparent 2.6%),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.85) 0 2.4%, transparent 2.5%),
        radial-gradient(circle at 60% 18%, rgba(247, 180, 68, 0.8) 0 2.4%, transparent 2.5%),
        radial-gradient(circle at 52% 40%, rgba(93, 205, 255, 0.15) 0 16%, transparent 17%),
        radial-gradient(circle at 50% 55%, rgba(255, 187, 58, 0.9) 0 10%, transparent 11%),
        radial-gradient(circle at 36% 46%, rgba(46, 125, 190, 0.95) 0 13%, transparent 14%),
        radial-gradient(circle at 65% 46%, rgba(249, 209, 102, 0.9) 0 11%, transparent 12%),
        radial-gradient(circle at 32% 82%, rgba(255, 214, 86, 0.65) 0 10%, transparent 11%),
        linear-gradient(180deg, rgba(23, 76, 62, 0.15), rgba(10, 36, 30, 0.35));
    opacity: 0.9;
}

.hot-games-hero__label,
.hot-games-hero h3,
.hot-games-hero__counter,
.hot-games-hero__grid {
    position: relative;
    z-index: 1;
}

.hot-games-hero__label {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #ffdc7a;
}

.hot-games-hero h3 {
    margin: 0;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: #ffe08d;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.hot-games-hero__counter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.85rem 0 1.3rem;
}

.hot-games-hero__counter span {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff5bf 0%, #f4b844 100%);
    color: #225045;
    font-weight: 900;
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.14), inset 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.hot-games-hero__grid {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.hot-games-hero__grid a {
    min-height: 84px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 235, 160, 0.9));
    color: #1d5c48;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hot-games-hero__grid a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.hot-games-stack {
    display: grid;
    gap: 1rem;
}

.hot-games-card {
    min-height: 126px;
    padding: 1.25rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.18) 0 18%, transparent 19%),
        linear-gradient(135deg, rgba(42, 128, 97, 0.9), rgba(26, 92, 72, 0.96));
}

.hot-games-card__title {
    font-size: clamp(1.7rem, 2.1vw, 2.5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.hot-games-card__tag {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: #f4b844;
    color: #103f33;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hot-games-card--slot {
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 218, 121, 0.48) 0 14%, transparent 15%),
        linear-gradient(135deg, rgba(39, 130, 95, 0.9), rgba(24, 80, 65, 0.95));
}

.hot-games-card--fish {
    background:
        radial-gradient(circle at 80% 35%, rgba(84, 197, 255, 0.34) 0 14%, transparent 15%),
        linear-gradient(135deg, rgba(50, 145, 108, 0.95), rgba(24, 87, 70, 0.95));
}

.hot-games-card--live {
    background:
        radial-gradient(circle at 82% 30%, rgba(255, 184, 102, 0.36) 0 14%, transparent 15%),
        linear-gradient(135deg, rgba(33, 113, 89, 0.95), rgba(16, 67, 56, 0.96));
}

.hot-games-card--bot {
    min-height: 180px;
    background:
        radial-gradient(circle at 76% 24%, rgba(255, 213, 89, 0.9) 0 12%, transparent 13%),
        radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.15) 0 8%, transparent 9%),
        linear-gradient(135deg, rgba(32, 116, 89, 0.94), rgba(21, 75, 60, 0.98));
}

.hot-games-bot__orb {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 38%, #ffffff 0 11%, transparent 12%),
        radial-gradient(circle at 38% 68%, #f4b844 0 16%, transparent 17%),
        radial-gradient(circle at 62% 68%, #f4b844 0 16%, transparent 17%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 184, 68, 0.7));
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
    opacity: 0.9;
}

/* Blog Post Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.home-content-wrapper .blog-card {
    max-width: none;
    width: 100%;
}

.home-content-wrapper .blog-card-image {
    height: 210px;
}

.home-content-wrapper .blog-card-content {
    padding: 1.25rem;
}

.blog-listing-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
}

.blog-listing-layout > div:first-child {
    min-width: 0;
}

.blog-listing-layout .blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
}

.blog-listing-layout .blog-card {
    max-width: 300px;
    width: 100%;
    justify-self: center;
}

.blog-listing-layout .sidebar {
    display: block;
    width: 100%;
}

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0;
}

.pagination-button {
    min-width: 44px;
    min-height: 44px;
    border: 2px solid var(--primary-green);
    border-radius: 6px;
    background: #fff;
    color: var(--primary-green);
    cursor: pointer;
    font-weight: 800;
}

.pagination-button.is-active,
.pagination-button:hover {
    background: var(--primary-green);
    color: #fff;
}

.blog-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
    overflow: hidden;
}

.blog-card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.blog-card-title:hover {
    color: var(--dark-gold);
}

.blog-card-excerpt {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #2d5a4a;
    display: flex;
    justify-content: space-between;
}

.blog-card-meta span {
    color: #2d5a4a;
    font-weight: 700;
}

.read-more {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    background-color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    min-width: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    background-color: var(--dark-gold);
    color: #fff;
}

/* Sidebar */
.sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--gold);
}

.blog-archive-link {
    margin-bottom: 1.5rem;
}

.blog-archive-link a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--primary-green);
    font-weight: 700;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.sidebar-list li::before {
    content: '>';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.sidebar-list a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.sidebar-list a:hover {
    color: var(--dark-gold);
    text-decoration: underline;
}

/* Single Blog Post */
.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.blog-post-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-post-title {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-post-meta {
    /* Meets WCAG AA contrast on the white post background. */
    color: #5f5f5f;
    font-size: 0.95rem;
}

.blog-post-meta span {
    margin-right: 1.5rem;
}

/* Featured Image Section */
.featured-image-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.featured-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: -0.75rem 0 2rem;
}

.post-action-button {
    min-width: 160px;
    min-height: 48px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.login-button {
    background: #12382f;
    color: #fff;
    border: 2px solid #12382f;
}

.register-button {
    background: var(--gold);
    color: #000;
    border: 2px solid var(--gold);
}

.post-action-button:hover {
    transform: translateY(-2px);
}

.blog-post-content {
    font-size: 1rem;
    line-height: 1.8;
}

.blog-post-content h2 {
    color: var(--secondary-green);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.blog-post-content p {
    margin-bottom: 1rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content a {
    color: #000;
    background-color: #fff3cd;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.blog-post-content a:hover {
    background-color: var(--gold);
    color: #000;
}

.article-trust-box {
    background: #f4faf7;
    border-left: 4px solid var(--secondary-green);
    border-radius: 6px;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
}

.article-trust-box p {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.faq-section {
    background: #fbfbfb;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 2rem;
    padding: 1.25rem;
}

.faq-section h2 {
    margin-top: 0;
}

.faq-section h3 {
    color: #214f43;
}

.related-links-box {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(45, 90, 74, 0.14);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(45, 90, 74, 0.04), rgba(45, 90, 74, 0.01));
}

.related-links-box h2 {
    margin-top: 0;
}

.related-links-box ul {
    margin: 0;
    padding-left: 1.2rem;
}

.related-links-box li + li {
    margin-top: 0.5rem;
}

/* Pages Section */
.page-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.page-title {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gold);
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333;
}

.page-content h2 {
    color: var(--secondary-green);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(244, 184, 68, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    background-color: var(--gold);
    color: #000;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.submit-button:hover {
    background-color: var(--dark-gold);
    color: #fff;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #12382f;
    color: #fff;
    margin-top: 3rem;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff7c2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff7c2;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 1.5rem;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1300px) {
    .home-content-wrapper .blog-card-image {
        height: 200px;
    }

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

    .blog-listing-layout .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .hot-games-panel__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hot-games-hero {
        grid-column: 1 / -1;
    }

    .home-content-wrapper .blog-card-image {
        height: 190px;
    }

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

    .blog-listing-layout {
        grid-template-columns: 1fr;
    }

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

    .blog-listing-layout .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    header nav {
        display: none;
        width: 100%;
    }

    header.nav-open nav {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding-top: 1rem;
    }

    nav a {
        justify-content: flex-start;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hot-games-panel__grid {
        grid-template-columns: 1fr;
    }

    .hot-games-hero {
        min-height: 340px;
    }

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

    .hot-games-hero__grid div {
        min-height: 72px;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
    }

    .home-content-wrapper .blog-card-image {
        height: 250px;
    }

    .blog-listing-layout .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-listing-layout {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav a {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.95rem;
    margin: 1rem 0;
    color: #555;
}
.breadcrumbs a {
    color: var(--secondary-green);
    text-decoration: none;
}
.breadcrumbs a:hover {
    color: var(--gold);
    text-decoration: underline;
}
.breadcrumbs span {
    color: #595959;
    margin: 0 0.5rem;
}

/* Full-width blog post layout */
.content-wrapper:has(.blog-post) {
    grid-template-columns: 1fr;
}

.content-wrapper:has(.blog-post) > .sidebar {
    display: none;
}

.blog-post {
    max-width: 100%;
}

.featured-image-container svg {
    width: 100%;
    height: auto;
}


