/* Fun88 Casino Website - Main Stylesheet */

/* CSS Variables - Light Blue Theme */
:root {
    --primary-blue: #33ACE0; /* Light Blue */
    --primary-dark: #1E88E5; /* Darker Blue */
    --accent-gold: #FFD700; /* Gold */
    --accent-orange: #FF6B35; /* Orange */
    --dark-bg: #ffffff;
    --darker-bg: #f5f7fa;
    --card-bg: #ffffff;
    --card-hover: #f0f4f8;
    --border-color: #e1e5eb;
    --text-primary: #1a2b3c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --success-green: #10B981; /* Green */
    --warning-yellow: #f59e0b;
    --error-red: #ef4444;
    --gradient-primary: linear-gradient(135deg, #33ACE0 0%, #1E88E5 100%); /* Light Blue Gradient */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%); /* Gold Gradient */
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(51, 172, 224, 0.3); /* Light Blue Glow */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --max-width: 1400px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--gradient-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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

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

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

ul, ol {
    list-style: none;
}

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

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

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo__icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.logo__text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__list {
    display: flex;
    gap: 0.5rem;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
    color: var(--primary-blue);
    background: rgba(51, 172, 224, 0.1);
}

.nav__actions {
    display: flex;
    gap: 0.75rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

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

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(51, 172, 224, 0.4);
    color: white;
}

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

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

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

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(51, 172, 224, 0.4);
    color: white;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 0;
    background: var(--gradient-dark);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero .casino-decoration {
    opacity: 0.08;
}

.hero .casino-card {
    top: 10%;
    right: 10%;
    transform: rotate(25deg);
}

.hero .casino-chip {
    bottom: 15%;
    left: 8%;
}

.hero .casino-dice {
    top: 50%;
    right: 20%;
    transform: rotate(-15deg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(51, 172, 224, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Casino Pattern Background */
.casino-pattern {
    position: relative;
    overflow: hidden;
}

.casino-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(51, 172, 224, 0.02) 10px, rgba(51, 172, 224, 0.02) 20px);
    pointer-events: none;
    z-index: 0;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section--dark {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.section--dark::before {
    content: '♦';
    position: absolute;
    top: 30px;
    left: 3%;
    font-size: 150px;
    color: rgba(51, 172, 224, 0.02);
    font-weight: bold;
    z-index: 0;
    transform: rotate(-25deg);
}

.section--dark::after {
    content: '♠';
    position: absolute;
    bottom: 40px;
    right: 4%;
    font-size: 160px;
    color: rgba(51, 172, 224, 0.02);
    font-weight: bold;
    z-index: 0;
    transform: rotate(20deg);
}

.section--accent {
    background: linear-gradient(135deg, rgba(51, 172, 224, 0.05) 0%, rgba(30, 136, 229, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.section--accent::before {
    content: '♠';
    position: absolute;
    top: 50px;
    right: 5%;
    font-size: 200px;
    color: rgba(51, 172, 224, 0.03);
    font-weight: bold;
    z-index: 0;
    transform: rotate(15deg);
}

.section--accent::after {
    content: '♣';
    position: absolute;
    bottom: 50px;
    left: 5%;
    font-size: 180px;
    color: rgba(51, 172, 224, 0.03);
    font-weight: bold;
    z-index: 0;
    transform: rotate(-20deg);
}

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

.section__title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

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

/* Game Cards */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.game-card::before {
    content: '♠';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 40px;
    color: rgba(51, 172, 224, 0.05);
    font-weight: bold;
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.game-card:hover::before {
    opacity: 1;
}

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

.game-card__image {
    aspect-ratio: 16/9;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
    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__content {
    padding: 1.25rem;
    position: relative;
    z-index: 1;
}

.game-card__icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 172, 224, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-blue);
}

.game-card__icon svg {
    width: 20px;
    height: 20px;
}

.game-card__title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    padding-right: 2.5rem;
}

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

.game-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.game-card__rtp {
    font-size: 0.875rem;
    color: var(--success-green);
    font-weight: 600;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '♠';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 100px;
    color: rgba(51, 172, 224, 0.03);
    font-weight: bold;
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover::before {
    opacity: 1;
}

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

.feature-card__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    color: white;
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* Promo Cards */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.promo-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.promo-card--featured {
    border-color: var(--accent-gold);
    position: relative;
}

.promo-card--featured::before {
    content: 'Featured';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.promo-card__header {
    background: var(--gradient-primary);
    padding: 2rem;
    text-align: center;
}

.promo-card__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.promo-card__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.promo-card__content {
    padding: 1.5rem;
}

.promo-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.promo-card__text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.promo-card__terms {
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

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

.sport-card:hover {
    border-color: var(--primary-blue);
    background: var(--card-hover);
}

.sport-card__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.sport-card__name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sport-card__markets {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Provider Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.provider-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: all var(--transition-fast);
}

.provider-card__logo {
    max-width: 100%;
    height: auto;
    max-height: 48px;
    object-fit: contain;
    display: block;
}

.provider-card:hover {
    border-color: var(--primary-blue);
}

.provider-card:hover .provider-card__logo {
    opacity: 0.95;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    aspect-ratio: 16/9;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    overflow: hidden;
}

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

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

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(51, 172, 224, 0.1);
    color: var(--primary-blue);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.blog-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card__excerpt {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.blog-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ========================================
   Blog Index - Clean layout from scratch
   ======================================== */
.blog-hero {
    background: linear-gradient(135deg, rgba(51, 172, 224, 0.08) 0%, rgba(30, 136, 229, 0.12) 100%);
    padding: 3rem 0;
    text-align: center;
}

.blog-hero__badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.blog-hero__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.blog-hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-nav {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.blog-nav__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 0;
    justify-content: center;
}

.blog-nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.blog-nav__link:hover {
    color: var(--primary-blue);
    background: rgba(51, 172, 224, 0.08);
}

.blog-main {
    padding: 2.5rem 0 3rem;
}

.blog-section {
    margin-bottom: 3rem;
}

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

.blog-section__title {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.blog-section__subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.blog-grid--featured {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.blog-card--featured .blog-card__image {
    aspect-ratio: 16/10;
}

.blog-card--featured .blog-card__title {
    font-size: 1.125rem;
}

.blog-cta-banner {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
}

.blog-cta-banner__title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-cta-banner__text {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
}

.layout-blog .layout-main {
    min-width: 0;
}

.layout-blog .blog-main .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Blog index mobile */
@media (max-width: 768px) {
    .blog-hero__title { font-size: 1.75rem; }
    .blog-hero__subtitle { font-size: 1rem; }
    .blog-nav__inner { justify-content: flex-start; overflow-x: auto; padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch; }
    .blog-nav__link { white-space: nowrap; }
    .blog-section__title { font-size: 1.25rem; }
}

/* Tables */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
}

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

th {
    background: var(--primary-blue);
    font-weight: 600;
    color: white;
}

td {
    color: var(--text-secondary);
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: var(--card-hover);
}

/* FAQ Accordion */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item__question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.faq-item__question:hover {
    background: var(--card-hover);
}

.faq-item__icon {
    font-size: 1.25rem;
    color: var(--primary-blue);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 500px;
}

.faq-item__answer p {
    color: var(--text-secondary);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.trust-badge__icon {
    font-size: 1.5rem;
    color: var(--success-green);
}

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

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

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 300px;
}

.footer__brand .logo {
    margin-bottom: 1rem;
}

.footer__brand p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer__social a:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.footer__column h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

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

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

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

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

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

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

/* Responsible Gaming */
.responsible-gaming {
    background: rgba(218, 54, 51, 0.1);
    border: 1px solid rgba(218, 54, 51, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.responsible-gaming__title {
    color: var(--error-red);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.responsible-gaming__text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block;
}

.content-section h3 {
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.content-section ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pros-cons__column {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.pros-cons__column--pros {
    border: 1px solid var(--success-green);
}

.pros-cons__column--cons {
    border: 1px solid var(--error-red);
}

.pros-cons__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.pros-cons__column--pros .pros-cons__title {
    color: var(--success-green);
}

.pros-cons__column--cons .pros-cons__title {
    color: var(--error-red);
}

.pros-cons__list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pros-cons__list li:last-child {
    border-bottom: none;
}

/* Casino Decorative Elements */
.casino-decoration {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.casino-card {
    width: 60px;
    height: 84px;
    background: white;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.casino-card::before {
    content: '♠';
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.casino-chip {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 100%);
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.casino-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.casino-dice {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.casino-dice::before {
    content: '⚀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '♠';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.cta-banner__title {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-banner__text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* Promo Banner - Full Width */
.promo-banner {
    background: var(--gradient-primary);
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '♣';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    z-index: 0;
}

.promo-banner::after {
    content: '♦';
    position: absolute;
    bottom: -30px;
    right: 30px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    z-index: 0;
}

.promo-banner--secondary {
    background: linear-gradient(135deg, #33ACE0 0%, #1E88E5 100%);
}

.promo-banner--dark {
    background: linear-gradient(135deg, #1a2b3c 0%, #0f1a24 100%);
}

.promo-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-banner__text {
    font-size: 1.125rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.promo-banner__text strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
}

.promo-banner .btn {
    white-space: nowrap;
}

/* Info Banner */
.info-banner {
    background: rgba(51, 172, 224, 0.1);
    border: 1px solid rgba(51, 172, 224, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-banner--warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.info-banner--success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.info-banner__icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-banner__content {
    flex: 1;
}

.info-banner__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.info-banner__text {
    color: var(--text-secondary);
    margin: 0;
}

/* Split Banner */
.split-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.split-banner__item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.split-banner__item::before {
    content: '♣';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 120px;
    color: rgba(51, 172, 224, 0.03);
    font-weight: bold;
    z-index: 0;
}

.split-banner__item--primary::before {
    content: '♦';
    color: rgba(255, 255, 255, 0.05);
}

.split-banner__item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.split-banner__item--primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.split-banner__item--primary h3,
.split-banner__item--primary p {
    color: white;
}

.split-banner__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.split-banner__title,
.split-banner__text {
    position: relative;
    z-index: 1;
}

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

.split-banner__text {
    margin-bottom: 1rem;
}

/* Highlight Banner */
.highlight-banner {
    background: linear-gradient(135deg, rgba(51, 172, 224, 0.1) 0%, rgba(30, 136, 229, 0.2) 100%);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-banner__title {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.highlight-banner__text {
    color: var(--text-secondary);
    margin: 0;
}

/* Stats Banner */
.stats-banner {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '♠';
    position: absolute;
    top: -40px;
    left: -40px;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    z-index: 0;
}

.stats-banner::after {
    content: '♣';
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    z-index: 0;
}

.stats-banner__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-banner__item {
    color: white;
    position: relative;
    z-index: 1;
}

.stats-banner__value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stats-banner__label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Bonus Banner */
.bonus-banner {
    background: var(--card-bg);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.bonus-banner::before {
    content: '♠';
    position: absolute;
    top: -30px;
    right: 20px;
    font-size: 150px;
    color: rgba(51, 172, 224, 0.03);
    font-weight: bold;
    z-index: 0;
}

.bonus-banner::after {
    content: '♣';
    position: absolute;
    bottom: -40px;
    left: 30px;
    font-size: 120px;
    color: rgba(51, 172, 224, 0.03);
    font-weight: bold;
    z-index: 0;
}

.bonus-banner__badge {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 120px;
}

.bonus-banner__badge-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.bonus-banner__badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.bonus-banner__content {
    flex: 1;
    position: relative;
    z-index: 1;
}

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

.bonus-banner__text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.bonus-banner__features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bonus-banner__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.bonus-banner__feature-icon {
    color: var(--success-green);
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #1a2b3c 0%, #2d4356 100%);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
}

.announcement-banner::before {
    content: '♦';
    position: absolute;
    top: -15px;
    left: 10%;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    z-index: 0;
}

.announcement-banner::after {
    content: '♠';
    position: absolute;
    bottom: -20px;
    right: 15%;
    font-size: 70px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    z-index: 0;
}

.announcement-banner a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
    position: relative;
    z-index: 1;
}

.announcement-banner a:hover {
    color: white;
}

/* Jackpot Banner */
.jackpot-banner {
    background: linear-gradient(135deg, #1a2b3c 0%, #0f1a24 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.jackpot-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(51, 172, 224, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.jackpot-banner__content {
    position: relative;
    z-index: 1;
}

.jackpot-banner::after {
    content: '⚀';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.05);
    font-weight: bold;
    z-index: 0;
    opacity: 0.6;
}

.jackpot-banner .casino-decoration {
    position: absolute;
    z-index: 0;
}

.jackpot-banner .casino-chip {
    top: 30px;
    left: 30px;
}

.jackpot-banner .casino-card {
    bottom: 20px;
    right: 50px;
    transform: rotate(15deg);
}

.jackpot-banner__label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.jackpot-banner__amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(51, 172, 224, 0.5);
}

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

/* App Banner */
.app-banner {
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.app-banner::before {
    content: '⚀';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    color: rgba(51, 172, 224, 0.03);
    font-weight: bold;
    z-index: 0;
    opacity: 0.5;
}

.app-banner__content {
    position: relative;
    z-index: 1;
}
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
}

.app-banner__image {
    font-size: 5rem;
    color: var(--primary-blue);
}

.app-banner__content {
    flex: 1;
}

.app-banner__title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.app-banner__text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.app-banner__buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive Banners */
@media (max-width: 768px) {
    .split-banner {
        grid-template-columns: 1fr;
    }

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

    .bonus-banner {
        flex-direction: column;
        text-align: center;
    }

    .bonus-banner__features {
        justify-content: center;
    }

    .app-banner {
        flex-direction: column;
        text-align: center;
    }

    .app-banner__buttons {
        justify-content: center;
    }

    .promo-banner__content {
        flex-direction: column;
        gap: 1rem;
    }

    .info-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--card-bg);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        flex-direction: column;
        align-items: stretch;
        padding: 4rem 0 2rem;
        overflow-y: auto;
    }

    .nav.nav--open {
        display: flex;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        padding: 0 1rem;
    }

    .nav__list li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav__link {
        display: block;
        padding: 1rem 1.25rem;
        font-size: 1.05rem;
    }

    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
    }

    .nav-overlay.is-open {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        position: relative;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section__title {
        font-size: 1.75rem;
    }

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .btn {
        width: 100%;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* SVG Icon Styles */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    stroke: currentColor;
}

.icon svg {
    width: 100%;
    height: 100%;
}

/* Trust Badge Icons */
.trust-badge__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.trust-badge__icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

/* Feature Card Icons */
.feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

/* Sport Card Icons */
.sport-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sport-card__icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-blue);
}

/* FAQ Icons */
.faq-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition-normal);
}

.faq-item__icon svg {
    width: 24px;
    height: 24px;
}

.faq-item[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
}

/* Bonus Banner Feature Icons */
.bonus-banner__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bonus-banner__feature-icon svg {
    width: 16px;
    height: 16px;
    color: var(--success-green);
}

/* Layout Variants */
.layout-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.layout-main {
    min-width: 0; /* Prevents grid overflow */
}

/* Default Layout */
.layout-default .layout-wrapper {
    grid-template-columns: 1fr;
}

/* With Sidebar Layout */
.layout-with-sidebar .layout-wrapper {
    grid-template-columns: 1fr 300px;
}

/* Blog Layout */
.layout-blog .layout-wrapper {
    grid-template-columns: 1fr 280px;
}

/* Sidebar Styles */
.sidebar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sidebar__section {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.sidebar__section:last-child {
    margin-bottom: 0;
}

.sidebar__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
    width: 100%;
}

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

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.sidebar__link:hover {
    background: var(--card-hover);
    color: var(--primary-blue);
}

.sidebar__link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar__jackpot {
    text-align: center;
    padding: 1rem;
    background: var(--darker-bg);
    border-radius: var(--radius-md);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar__jackpot-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
}

.sidebar__jackpot-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.sidebar__text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    width: 100%;
    text-align: left;
}

.sidebar__games {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar__game {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--darker-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.sidebar__game:hover {
    background: var(--card-hover);
    transform: translateX(4px);
}

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

.sidebar__game-info {
    flex: 1;
    min-width: 0;
}

.sidebar__game-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.sidebar__promo {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    color: white;
}

.sidebar__promo-badge {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.sidebar__promo-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sidebar__promo-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.sidebar__section .btn {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar__posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.sidebar__post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar__post-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.sidebar__post:hover .sidebar__post-title {
    color: var(--primary-blue);
}

.sidebar__post-date {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sidebar__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar__input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: border-color var(--transition-fast);
}

.sidebar__input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Responsive Layouts */
@media (max-width: 1024px) {
    .layout-with-sidebar .layout-wrapper,
    .layout-blog .layout-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 2rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--darker-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumb__item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.breadcrumb__item:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

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

/* 20Bet Welcome Offer - Green & White Theme */
.announcement-banner.welcome-20bet {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.announcement-banner.welcome-20bet a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}

.announcement-banner.welcome-20bet a:hover {
    color: #D1FAE5;
}

.promo-card.welcome-20bet {
    border-color: #10B981;
}

.promo-card.welcome-20bet .promo-card__header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.promo-card.welcome-20bet .promo-card__value,
.promo-card.welcome-20bet .promo-card__label {
    color: white;
}

.promo-card.welcome-20bet .promo-card__title {
    color: #065F46;
}

.promo-card.welcome-20bet .promo-card__text {
    color: #047857;
}

.bonus-banner.welcome-20bet {
    background: white;
    border-color: #10B981;
}

.bonus-banner.welcome-20bet .bonus-banner__badge {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.bonus-banner.welcome-20bet .bonus-banner__title {
    color: #065F46;
}

.bonus-banner.welcome-20bet .bonus-banner__text {
    color: #047857;
}

.bonus-banner.welcome-20bet .bonus-banner__feature {
    color: #047857;
}

.bonus-banner.welcome-20bet .bonus-banner__feature-icon {
    color: #10B981;
}

.cta-banner.welcome-20bet {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.cta-banner.welcome-20bet .cta-banner__title {
    color: white;
}

.cta-banner.welcome-20bet .cta-banner__text {
    color: white;
}

/* ========================================
   Blog Article - Readability & Layout
   Optimised for ease of reading
   ======================================== */
.blog-article {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 0 3rem;
    font-size: 1.0625rem;
    line-height: 1.75;
}

.blog-article__content {
    width: 100%;
}

/* Optimal reading: ~65-75 characters per line */
.blog-article__content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.blog-article__content p:last-child {
    margin-bottom: 0;
}

.blog-article__content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-article__content a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-article__content a:hover {
    text-decoration-thickness: 2px;
}

/* Headings - clear hierarchy */
.blog-article__content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-blue);
    color: var(--text-primary);
    line-height: 1.35;
}

.blog-article__content h2:first-child {
    margin-top: 0;
}

.blog-article__content h3 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.blog-article__content h4 {
    font-size: 1.0625rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--text-primary);
}

/* Lists - readable spacing */
.blog-article__content ul,
.blog-article__content ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.blog-article__content ul {
    list-style: disc;
}

.blog-article__content ol {
    list-style: decimal;
}

.blog-article__content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.blog-article__content li::marker {
    color: var(--primary-blue);
}

/* Images */
.blog-article__content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Game info / key stats box */
.game-info-box {
    background: var(--darker-bg);
    border-left: 4px solid var(--primary-blue);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.game-info-box p {
    margin-bottom: 0.5rem;
}

.game-info-box p:last-child {
    margin-bottom: 0;
}

/* Best-for callout */
.best-for {
    background: linear-gradient(135deg, rgba(51, 172, 224, 0.08) 0%, rgba(40, 145, 189, 0.12) 100%);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin: 1.25rem 0;
    border: 1px solid rgba(51, 172, 224, 0.2);
}

.best-for strong {
    color: var(--primary-blue);
}

/* TOC (in-body, before sidebar move) */
.toc {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
}

.toc__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.toc__list {
    list-style: decimal;
    margin-left: 1.25rem;
}

.toc__list li {
    margin-bottom: 0.5rem;
}

.toc__list a {
    color: var(--primary-blue);
}

/* CTA / promo in article */
.blog-cta,
.promo-banner {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    text-align: center;
    margin: 2.5rem 0;
}

.blog-cta h3,
.promo-banner strong {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-cta p,
.promo-banner .promo-banner__text {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

/* Related posts */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.related-posts__title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

.related-posts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Breadcrumb on article pages */
.hero .article-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-align: left;
}

.article-breadcrumb a {
    color: var(--text-muted);
}

.article-breadcrumb a:hover {
    color: var(--primary-blue);
}

.article-breadcrumb__sep {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

/* Hero - matches slots structure */
.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

/* Blog article hero: featured image + meta (matches slots layout) */
.layout-blog .hero__featured-img {
    margin: 2rem auto 0;
    max-width: 900px;
    width: 100%;
}

.layout-blog .hero__featured-img img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.layout-blog .hero__meta {
    margin-top: 1rem;
    text-align: center;
}

.layout-blog .hero__meta-inner {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Article content - optimal reading width (~65ch) */
.layout-blog .blog-article {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 0 3rem;
}

/* TOC in sidebar */
.toc--sidebar {
    margin: 0 0 2rem 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.toc--sidebar .toc__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.toc--sidebar .toc__list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.toc--sidebar .toc__list li {
    margin-bottom: 0.5rem;
}

.toc--sidebar .toc__list a {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.875rem;
}

.sidebar__section--toc {
    margin-bottom: 2rem;
}

/* Sticky sidebar on desktop for easy TOC access */
@media (min-width: 1024px) {
    .layout-blog .sidebar--blog {
        position: sticky;
        top: 1.5rem;
        align-self: start;
    }
}

/* Container alignment */
.section .container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
