/* HB88 Brand Guidelines
   Primary: Green
   Accent: Yellow / Gold
   Dark modern gaming interface
*/

/* CSS Variables */
:root {
    /* Brand Colors - Green & Yellow */
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary-dark: #1e293c;
    --dark-bg: #0f172a;
    --darker-bg: #0a0f1a;
    --card-bg: #1e293c;
    --card-bg-hover: #263549;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    /* Accent - Yellow */
    --accent-yellow: #eab308;
    --accent-gold: #fbbf24;
    --accent-gold-dark: #ca8a04;
    --success-green: #22c55e;
    --warning-orange: #f97316;
    --error-red: #ef4444;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    --gradient-gold: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    --gradient-dark: linear-gradient(180deg, #1e293c 0%, #0f172a 100%);
    --gradient-card: linear-gradient(145deg, #1e293c 0%, #162032 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(22, 163, 74, 0.35);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.logo span,
.logo__text {
    color: var(--primary);
    font-weight: 800;
}
.logo__text--footer {
    font-size: 1.5rem;
}

.btn--gold {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    color: var(--dark-bg);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: white;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo img {
    height: 40px;
    width: auto;
}

.logo:hover {
    color: var(--text-primary);
}

/* SVG Icons */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.1em;
    fill: currentColor;
}
.icon--menu {
    width: 24px;
    height: 24px;
}
.feature-card__icon .icon,
.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

/* Navigation */
.nav__list {
    display: none;
    list-style: none;
    gap: 0.5rem;
}

@media (min-width: 1024px) {
    .nav__list {
        display: flex;
    }
}

.nav__link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
    color: var(--text-primary);
    background: rgba(22, 163, 74, 0.15);
}

.nav__link--active {
    color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-bg);
    padding: 1.5rem;
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition-normal), visibility var(--transition-normal), opacity var(--transition-normal);
    visibility: hidden;
    opacity: 0;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu__list {
    list-style: none;
}

.mobile-menu__link {
    display: block;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(22, 163, 74, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(22, 163, 74, 0.2);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-2xl);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 480px) {
    .hero__actions {
        flex-direction: row;
    }
}

/* Section */
.section {
    padding: 4rem 0;
}

.section--dark {
    background: var(--darker-bg);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__title {
    margin-bottom: 0.5rem;
}

.section__subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Game Card */
.game-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.game-card__image {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--secondary-dark);
    overflow: hidden;
}

.game-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.game-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.game-card__content {
    padding: 1rem;
}

.game-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.game-card__provider {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.game-card__info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Feature Card */
.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(22, 163, 74, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card__text {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* BC.GAME Sparkle & Glow Animations */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.4),
                    0 0 40px rgba(22, 163, 74, 0.2),
                    0 0 60px rgba(22, 163, 74, 0.1),
                    inset 0 0 20px rgba(22, 163, 74, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(22, 163, 74, 0.6),
                    0 0 60px rgba(22, 163, 74, 0.4),
                    0 0 90px rgba(22, 163, 74, 0.2),
                    inset 0 0 30px rgba(22, 163, 74, 0.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes border-glow {
    0%, 100% {
        border-color: rgba(22, 163, 74, 0.5);
        box-shadow: 0 0 10px rgba(22, 163, 74, 0.3);
    }
    50% {
        border-color: rgba(22, 163, 74, 0.8);
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.6),
                    0 0 30px rgba(22, 163, 74, 0.4);
    }
}

/* Promo Banner */
/* BC.GAME promo blocks – black & green */
.promo-banner {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0d0d0d 100%);
    border: 1px solid rgba(22, 163, 74, 0.5);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    animation: glow-pulse 3s ease-in-out infinite, border-glow 2s ease-in-out infinite;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(22, 163, 74, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

.promo-banner::after {
    content: '✨';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

@media (min-width: 768px) {
    .promo-banner {
        padding: 3rem;
    }
}

.promo-banner__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .promo-banner__title {
        font-size: 2rem;
    }
}

.promo-banner__text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* BC.GAME partner banner (between sections) – black & green */
.bcgame-banner {
    padding: 1.5rem 0;
    position: relative;
}
.bcgame-banner__link {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0d0d0d 100%);
    border: 1px solid rgba(22, 163, 74, 0.5);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    animation: glow-pulse 3s ease-in-out infinite, border-glow 2s ease-in-out infinite;
    overflow: hidden;
}

.bcgame-banner__link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(22, 163, 74, 0.15) 50%,
        transparent 70%
    );
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

.bcgame-banner__link::after {
    content: '✨';
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.2rem;
    animation: sparkle 2.5s ease-in-out infinite;
    pointer-events: none;
}

.bcgame-banner__link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(22, 163, 74, 0.5),
                0 0 50px rgba(22, 163, 74, 0.3),
                0 0 70px rgba(22, 163, 74, 0.2);
    animation: glow-pulse 1.5s ease-in-out infinite, border-glow 1s ease-in-out infinite;
}
.bcgame-banner__brand {
    position: relative;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(22, 163, 74, 0.5),
                 0 0 20px rgba(22, 163, 74, 0.3),
                 0 0 30px rgba(22, 163, 74, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}
.bcgame-banner__offer {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}
.bcgame-banner__cta {
    font-size: 0.875rem;
    padding: 0.35rem 0.75rem;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 600;
}

/* BC.GAME blog-cta (news articles) – black & green */
.blog-cta {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0d0d0d 100%);
    border: 1px solid rgba(22, 163, 74, 0.5);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0;
    animation: glow-pulse 3s ease-in-out infinite, border-glow 2s ease-in-out infinite;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(22, 163, 74, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

.blog-cta::after {
    content: '✨';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}
.blog-cta h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.blog-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}
.blog-cta .btn {
    background: var(--gradient-primary);
    color: #fff;
}
.blog-cta .btn:hover {
    color: #fff;
    box-shadow: var(--shadow-glow);
}

/* News Card */
.news-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.news-card__image {
    aspect-ratio: 16/9;
    background: var(--secondary-dark);
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__content {
    padding: 1.5rem;
}

.news-card__category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(22, 163, 74, 0.15);
    color: var(--primary);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.news-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.news-card__excerpt {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Blog listing: anchors as grid items (blog/index) */
.cards-grid > a {
    display: block;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}
.cards-grid > a .news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.cards-grid > a .news-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cards-grid > a .news-card__excerpt {
    flex: 1;
}

.blog-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    max-width: 100%;
}

.blog-pagination__info--secondary {
    width: 100%;
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* Screenshot-style row: Previous | 1 | 2 | … | n | Next — HB88 dark + green active */
.blog-pagination__nav--pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.blog-pagination__step,
.blog-pagination__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0 0.85rem;
    font-size: 0.875rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color-light);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    text-decoration: none;
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.blog-pagination__page {
    min-width: 2.75rem;
    padding: 0 0.5rem;
}

.blog-pagination__step {
    padding: 0 1rem;
}

.blog-pagination__page--current {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
    cursor: default;
}

.blog-pagination .blog-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    min-height: 2.75rem;
    padding: 0 0.15rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 700;
    user-select: none;
    pointer-events: none;
}

.blog-pagination__nav--pills > a.blog-pagination__step:hover:not(.blog-pagination__disabled),
.blog-pagination__nav--pills > a.blog-pagination__page:hover {
    border-color: rgba(34, 197, 94, 0.5);
    color: var(--primary-light);
    background: rgba(22, 163, 74, 0.12);
}

.blog-pagination__nav--pills > a:focus-visible:not(.blog-pagination__disabled) {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.blog-pagination__step.blog-pagination__disabled,
.blog-pagination__disabled.blog-pagination__step {
    color: var(--text-muted);
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    opacity: 1;
    filter: none;
}

.blog-pagination__disabled {
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .blog-pagination__step,
    .blog-pagination__page {
        transition: none;
    }
}

/* Table */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: var(--secondary-dark);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.table td {
    font-size: 0.875rem;
}

.table tbody tr:hover {
    background: var(--card-bg-hover);
}

/* Content Page Styles */
.content-page {
    padding: 6rem 0 4rem;
}

.content-page__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.content-page__content {
    max-width: 800px;
    margin: 0 auto;
}

.content-page__content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.content-page__content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--primary);
}

.content-page__content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-page__content ul,
.content-page__content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.content-page__content li {
    margin-bottom: 0.5rem;
}

.content-page__content a {
    color: var(--primary);
}

.content-page__content a:hover {
    text-decoration: underline;
}

/* Blog article template (scripts/templates/article.template.html) */
.article-hero__meta {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.5;
}
.article-hero__meta time {
    color: var(--text-muted);
}

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

.article-prose {
    max-width: 800px;
    margin: 0 auto;
}

.article-prose h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.article-prose h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--primary);
}

.article-prose p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.article-prose ul,
.article-prose ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.article-prose li {
    margin-bottom: 0.5rem;
}

.article-prose a {
    color: var(--primary);
}

.article-prose a:hover {
    text-decoration: underline;
}

.article-prose .toc-nav {
    background: #0a1120;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem 0;
}

.article-prose .toc-nav h2 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    border: none;
    padding: 0;
}

.article-prose .toc-nav ol {
    margin: 0;
    padding-left: 1.25rem;
}

.article-prose .toc-nav a {
    color: #26a69a;
}

.article-prose .toc-nav a:hover {
    color: var(--accent-gold);
}

/* Info Box */
.info-box {
    background: var(--card-bg);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.info-box--warning {
    border-left-color: var(--warning-orange);
    background: rgba(249, 115, 22, 0.1);
}

.info-box--success {
    border-left-color: var(--success-green);
    background: rgba(34, 197, 94, 0.1);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
}

.stat-card__value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-card__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.stat-card__value--sm {
    font-size: 1.35rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .stats-grid--8 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Credibility / platform facts (home & about) */
.facts-panel {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
}

@media (min-width: 768px) {
    .facts-panel {
        padding: 2rem 2.25rem;
    }
}

.facts-panel__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .facts-panel__grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .facts-panel__grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.facts-panel__heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.facts-panel__list {
    margin: 0;
    padding: 0 0 0 1.15rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.facts-panel__list li {
    margin-bottom: 0.65rem;
}

.facts-panel__list li:last-child {
    margin-bottom: 0;
}

.facts-panel__note {
    margin: 1rem 0 0 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer__column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--primary);
}

.responsible-gaming {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.responsible-gaming__title {
    font-size: 0.875rem;
    color: var(--warning-orange);
    margin-bottom: 0.5rem;
}

.responsible-gaming__text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer: compact external trust / helpline links (site-wide) */
.footer__trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1rem;
    padding: 1rem 0.75rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer__trust-strip-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    width: 100%;
    text-align: center;
}

@media (min-width: 640px) {
    .footer__trust-strip-label {
        width: auto;
        text-align: left;
        margin-right: 0.25rem;
    }
}

.footer__trust-strip a {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
}

.footer__trust-strip a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer__legal a:hover {
    color: var(--primary);
}

/* Trust Links */
.trust-links {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-links__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
    color: var(--text-primary);
}

.trust-links__intro {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.trust-links__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .trust-links__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-links__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-links__category h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-links__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-links__list a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-block;
}

.trust-links__list a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .providers-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.provider-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.provider-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.provider-card__logo {
    height: 40px;
    margin-bottom: 0.5rem;
}

.provider-card__name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Sports Betting Specific */
.odds-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.odds-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.odds-card__league {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
}

.odds-card__time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.odds-card__teams {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.odds-card__team {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.odds-card__team-name {
    font-weight: 500;
}

.odds-card__odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.odds-btn {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.odds-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.odds-btn__label {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.odds-btn__value {
    font-weight: 600;
    color: var(--accent-gold);
}

/* Sidebar (for content/news pages) */
.sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 1024px) {
    .layout-with-sidebar .sidebar {
        align-self: start;
        position: sticky;
        top: 5.25rem;
        z-index: 10;
        max-height: calc(100vh - 6rem);
        overflow-y: auto;
    }
}
.layout-with-sidebar {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .layout-with-sidebar {
        grid-template-columns: 1fr 300px;
    }
    .layout-with-sidebar .layout-main {
        min-width: 0;
    }
}
.sidebar__block {
    margin-bottom: 1.5rem;
    padding-left: 0;
}
.sidebar__block:last-child {
    margin-bottom: 0;
}

.sidebar__block--latest {
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem 1rem 1.125rem;
    background: linear-gradient(145deg, rgba(22, 163, 74, 0.08) 0%, rgba(30, 41, 59, 0.5) 100%);
    box-shadow: var(--shadow-sm);
}

.sidebar__block--latest .sidebar__title {
    border-bottom-color: rgba(22, 163, 74, 0.35);
    padding-bottom: 0.65rem;
}

.sidebar__block--latest .sidebar__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
}

.sidebar__block--latest .sidebar__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar__block--latest .sidebar__list a {
    display: block;
    padding: 0.25rem 0 0.25rem 0.5rem;
    margin-left: -0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.sidebar__block--latest .sidebar__list a:hover {
    background: rgba(22, 163, 74, 0.12);
    color: var(--primary-light);
}

.sidebar__title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
    padding: 0 0 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
}
.sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar__list li {
    margin-bottom: 0.5rem;
}
.sidebar__list li:last-child {
    margin-bottom: 0;
}
.sidebar__list a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    display: inline-block;
}
.sidebar__list a:hover {
    color: var(--primary);
}
.sidebar__block--promo {
    position: relative;
    background: rgba(22, 163, 74, 0.15);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid rgba(22, 163, 74, 0.3);
    animation: glow-pulse 3s ease-in-out infinite, border-glow 2s ease-in-out infinite;
    overflow: hidden;
}

.sidebar__block--promo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(22, 163, 74, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

.sidebar__block--promo::after {
    content: '✨';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

.sidebar__block--promo .sidebar__title {
    position: relative;
    text-shadow: 0 0 8px rgba(22, 163, 74, 0.4);
}
.sidebar__block--promo .sidebar__title {
    margin-bottom: 0.5rem;
}
.sidebar__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem 0;
    display: block;
}
.sidebar__block--promo .btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* Top RTP / varied layout blocks */
.rtp-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.rtp-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
}
.rtp-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}
a.rtp-card {
    color: inherit;
    text-decoration: none;
}
.rtp-card__value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    min-width: 4rem;
    text-align: center;
}
.rtp-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.rtp-card__provider {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.league-predictions {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.league-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}
.league-card:hover {
    border-color: var(--primary);
}
.league-card__header {
    background: var(--secondary-dark);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}
.league-card__match {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}
.league-card__match:last-child {
    border-bottom: none;
}
.league-card__odds {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.league-card__odd {
    padding: 0.25rem 0.5rem;
    background: var(--dark-bg);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--accent-gold);
}

/* CTA Banner - Easy to update signup push */
.cta-banner {
    padding: 1.5rem 0;
}
.cta-banner__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.15) 0%, rgba(15, 23, 42, 0.95) 50%, rgba(22, 163, 74, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
    animation: glow-pulse 3s ease-in-out infinite, border-glow 2s ease-in-out infinite;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(22, 163, 74, 0.15) 50%,
        transparent 70%
    );
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

.cta-banner__inner::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}
.cta-banner__content { flex: 1; min-width: 250px; text-align: center; }
.cta-banner__title {
    position: relative;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(22, 163, 74, 0.5),
                 0 0 20px rgba(22, 163, 74, 0.3);
}
@media (min-width: 768px) {
    .cta-banner__title { font-size: 1.5rem; }
    .cta-banner__content { text-align: left; }
}
.cta-banner__subtitle {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}
.cta-banner__btn { flex-shrink: 0; }

/* Jackpots Grid */
.jackpots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.jackpot-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}
.jackpot-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.25);
}
.jackpot-card__amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}
.jackpot-card__title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.jackpot-card__provider {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Breadcrumbs (SEO) */
.breadcrumbs {
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.breadcrumbs a {
    color: var(--text-secondary);
}
.breadcrumbs a:hover {
    color: var(--primary);
}
.breadcrumbs__sep {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Blog Article Alignment */
.blog-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.blog-article__content {
    width: 100%;
}

.blog-article__content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: var(--radius-md);
}

.blog-article__content h2,
.blog-article__content h3 {
    width: 100%;
}

/* Ensure hero and article content align */
.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

/* Container alignment for articles */
.section .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section .container .blog-article {
    margin-left: auto;
    margin-right: auto;
}
