/* 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;
}

/* Promo Banner */
/* BC.GAME promo blocks – black & green */
.promo-banner {
    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;
}

@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;
}
.bcgame-banner__link {
    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;
}
.bcgame-banner__link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
}
.bcgame-banner__brand {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
    letter-spacing: 0.05em;
}
.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 {
    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;
}
.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);
}

/* 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;
}

/* 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;
}

/* 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__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);
}

/* 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: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 1024px) {
    .layout-with-sidebar .sidebar {
        align-self: start;
    }
}
.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__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 {
    background: rgba(22, 163, 74, 0.15);
    border-radius: var(--radius-md);
    padding: 1rem;
}
.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 {
    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);
}
.cta-banner__content { flex: 1; min-width: 250px; text-align: center; }
.cta-banner__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
@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;
}
