/* ===== FORTUNE GEMS MX — MAIN STYLESHEET 2026 ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cinzel:wght@400;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #B8860B;
    --purple: #6B21A8;
    --purple-light: #9333EA;
    --purple-dark: #3B0764;
    --gem-diamond: #B9D5FF;
    --gem-ruby: #FF2D55;
    --gem-emerald: #00D084;
    --gem-sapphire: #0066FF;
    --gem-topaz: #FFB347;
    --gem-amethyst: #BF5FFF;
    --dark: #0A0010;
    --dark-2: #110020;
    --dark-3: #1A0030;
    --surface: #1E0035;
    --surface-2: #2A0048;
    --surface-3: #380060;
    --text: #F0E6FF;
    --text-muted: #9580AA;
    --border: rgba(107, 33, 168, 0.4);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
    --glow-purple: 0 0 20px rgba(147, 51, 234, 0.6), 0 0 40px rgba(147, 51, 234, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    padding: 8px 16px;
    background: var(--gold);
    color: #000;
    border-radius: 4px;
    z-index: 9999;
    text-decoration: none;
    font-weight: 700;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 6px;
}

/* ===== ANIMATED BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(107, 33, 168, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(59, 7, 100, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 0, 16, 1) 0%, transparent 100%);
    background-color: var(--dark);
}

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 0, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 0, 16, 0.97);
    box-shadow: 0 4px 30px rgba(107, 33, 168, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(var(--glow-gold));
}

.nav-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.nav-logo-sub {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-menu a {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--purple), var(--purple-light)) !important;
    color: #fff !important;
    box-shadow: var(--glow-purple);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.6) !important;
    color: var(--gold) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-badge::before {
    content: '💎';
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #0A0010;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-gold);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius);
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--purple-light);
    background: rgba(147, 51, 234, 0.1);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Hero Slot Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slot-preview-widget {
    background: linear-gradient(145deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), var(--glow-purple);
    width: 100%;
    max-width: 400px;
}

.slot-preview-header {
    text-align: center;
    margin-bottom: 20px;
}

.slot-preview-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.rtp-badge {
    display: inline-block;
    background: rgba(0, 208, 132, 0.15);
    border: 1px solid rgba(0, 208, 132, 0.4);
    color: var(--gem-emerald);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.slot-reels-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.reel-mini {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px;
    overflow: hidden;
}

.reel-mini .sym {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

.widget-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.widget-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 8px 4px;
}

.widget-stat .val {
    display: block;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--gold);
}

.widget-stat .lbl {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats strip */
.stats-strip {
    background: linear-gradient(90deg, var(--dark-2), var(--surface), var(--dark-2));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 8px 24px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .num {
    display: block;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.stat-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ===== SECTION BASICS ===== */
.section {
    padding: 80px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
    background: linear-gradient(145deg, var(--surface), var(--dark-3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--glow-purple);
}

.card:hover::before {
    opacity: 1;
}

/* ===== SYMBOLS GRID ===== */
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.symbol-card {
    background: linear-gradient(145deg, var(--surface), var(--dark-3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.symbol-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.symbol-card img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
    transition: var(--transition);
}

.symbol-card:hover img {
    filter: drop-shadow(0 8px 20px rgba(255, 215, 0, 0.6));
    transform: scale(1.1);
}

.symbol-card .sym-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.symbol-card .sym-payout {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.symbol-card .sym-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
}

.badge-wild {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.badge-scatter {
    background: rgba(191, 95, 255, 0.2);
    color: var(--gem-amethyst);
    border: 1px solid rgba(191, 95, 255, 0.4);
}

/* ===== TABLES ===== */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

caption {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    padding: 12px;
    text-align: left;
    letter-spacing: 0.5px;
    background: rgba(255, 215, 0, 0.05);
    border-bottom: 1px solid var(--border);
}

thead th {
    background: linear-gradient(135deg, var(--surface), var(--surface-2));
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold);
    border-bottom: 1px solid var(--border);
}

tbody tr {
    border-bottom: 1px solid rgba(107, 33, 168, 0.2);
    transition: background 0.2s;
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(107, 33, 168, 0.15);
}

tbody td {
    padding: 12px 16px;
    color: var(--text);
    vertical-align: middle;
}

tbody td .highlight {
    color: var(--gold);
    font-weight: 700;
}

tbody td .tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
}

.tag-green {
    background: rgba(0, 208, 132, 0.15);
    color: var(--gem-emerald);
    border: 1px solid rgba(0, 208, 132, 0.3);
}

.tag-gold {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.tag-purple {
    background: rgba(191, 95, 255, 0.15);
    color: var(--gem-amethyst);
    border: 1px solid rgba(191, 95, 255, 0.3);
}

.tag-red {
    background: rgba(255, 45, 85, 0.15);
    color: var(--gem-ruby);
    border: 1px solid rgba(255, 45, 85, 0.3);
}

/* ===== CHARTS / DIAGRAMS ===== */
.diagram-section {
    padding: 48px 0;
}

.chart-container {
    background: linear-gradient(145deg, var(--surface), var(--dark-3));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.chart-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Bar chart */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    width: 140px;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.bar-track {
    flex: 1;
    height: 32px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #000;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill.gold {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    color: #000;
}

.bar-fill.purple {
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    color: #fff;
}

.bar-fill.green {
    background: linear-gradient(90deg, #00A86B, var(--gem-emerald));
    color: #000;
}

.bar-fill.blue {
    background: linear-gradient(90deg, #0044CC, var(--gem-sapphire));
    color: #fff;
}

.bar-fill.red {
    background: linear-gradient(90deg, #CC0022, var(--gem-ruby));
    color: #fff;
}

.bar-value {
    width: 48px;
    text-align: right;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

/* Donut chart */
.donut-wrap {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.donut-chart {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(var(--gold) 0% 30%,
            var(--gem-emerald) 30% 55%,
            var(--gem-sapphire) 55% 72%,
            var(--gem-ruby) 72% 84%,
            var(--gem-amethyst) 84% 100%);
}

.donut-chart::after {
    content: '';
    position: absolute;
    inset: 32px;
    border-radius: 50%;
    background: var(--surface);
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

.legend-label {
    color: var(--text-muted);
}

.legend-val {
    margin-left: auto;
    font-weight: 700;
    color: var(--text);
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: linear-gradient(145deg, var(--surface), var(--dark-3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    border-color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

/* ===== CASINO CARDS ===== */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.casino-card {
    background: linear-gradient(145deg, var(--surface), var(--dark-3));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.casino-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow-purple);
    border-color: var(--gold);
}

.casino-header {
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.casino-logo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
    border: 1px solid var(--border);
}

.casino-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 2px;
}

.casino-body {
    padding: 0 20px 20px;
}

.casino-bonus {
    background: rgba(255, 215, 0, 0.08);
    border: 1px dashed rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 14px;
}

.bonus-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-top: 2px;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.feature-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(147, 51, 234, 0.15);
    color: var(--gem-amethyst);
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.casino-cta {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--glow-purple);
}

.casino-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.6);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple), var(--purple-light));
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-purple);
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.08;
}

.promo-banner h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.promo-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.promo-banner .btn-primary {
    position: relative;
    z-index: 1;
}

/* ===== FEATURE GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: linear-gradient(145deg, var(--surface), var(--dark-3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.25);
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== SEO CONTENT ===== */
.seo-content {
    background: linear-gradient(180deg, transparent, rgba(10, 0, 16, 0.5));
    padding: 60px 0;
}

.seo-article {
    max-width: 880px;
}

.seo-article h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--text);
}

.seo-article h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: var(--gold);
}

.seo-article p {
    margin-bottom: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.seo-article strong {
    color: var(--text);
}

.text-link {
    color: var(--gem-amethyst);
    text-decoration: none;
    border-bottom: 1px dashed rgba(191, 95, 255, 0.4);
    transition: var(--transition);
}

.text-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.seo-news-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.seo-news-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
}

.seo-news-links a:hover {
    color: var(--gold);
    border-color: var(--border);
    background: rgba(255, 215, 0, 0.05);
}

.related-pages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.page-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.05);
}

.page-link span {
    font-weight: 600;
    color: var(--text);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}

.breadcrumb-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--gold);
}

.breadcrumb-list .sep {
    color: var(--border);
}

.breadcrumb-list .current {
    color: var(--gold);
    font-weight: 600;
}

/* ===== PAGE INNER HEADER ===== */
.page-header {
    padding: 120px 24px 60px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(107, 33, 168, 0.2) 0%, transparent 100%);
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== DEMO SLOT ===== */
.demo-section {
    padding: 80px 0;
}

.demo-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.slot-machine {
    background: linear-gradient(145deg, var(--surface), var(--dark-2));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 0 60px rgba(107, 33, 168, 0.4), 0 0 120px rgba(255, 215, 0, 0.1);
    position: relative;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.slot-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.slot-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slot-credit-display {
    display: flex;
    gap: 16px;
}

.credit-box {
    text-align: center;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 16px;
    min-width: 90px;
}

.credit-box .val {
    display: block;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.credit-box .lbl {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.slot-reel {
    background: var(--dark);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    height: 270px;
}

.reel-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reel-cell {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(107, 33, 168, 0.2);
}

.reel-cell img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(10, 0, 16, 0.7) 0%,
            transparent 30%,
            transparent 70%,
            rgba(10, 0, 16, 0.7) 100%);
}

.reel-win-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 90px;
    margin-top: -45px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    pointer-events: none;
}

.slot-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.bet-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bet-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.bet-btn:hover {
    background: var(--surface-3);
    color: var(--gold);
    border-color: var(--gold);
}

.bet-display {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 20px;
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
    min-width: 70px;
    text-align: center;
}

.btn-spin {
    padding: 18px 56px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--glow-gold);
    transition: var(--transition);
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.btn-spin:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.btn-spin:active {
    transform: scale(0.97);
}

.btn-spin:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-max-bet {
    padding: 10px 20px;
    background: transparent;
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-max-bet:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: var(--gold);
}

.win-display {
    text-align: center;
    margin-top: 16px;
    min-height: 40px;
}

.win-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: winPulse 0.5s ease-in-out infinite alternate;
    display: none;
}

.win-text.show {
    display: block;
}

@keyframes winPulse {
    from {
        opacity: 0.8;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Paytable */
.paytable {
    margin-top: 32px;
}

.paytable h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 16px;
    font-family: 'Cinzel', serif;
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.paytable-item {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    text-align: center;
}

.paytable-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 6px;
}

.paytable-pays {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.paytable-pays span {
    color: var(--gold);
    font-weight: 700;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
    margin-top: 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.6;
}

.footer-dev {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}

.footer-dev a {
    color: var(--gem-amethyst);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-dev a:hover {
    color: var(--gold);
}

.responsible-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    margin-top: 16px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ===== UTILITIES ===== */
.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 40px 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        max-width: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 0, 16, 0.97);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        gap: 4px;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-dev {
        text-align: left;
    }

    .slot-reels {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }

    .slot-reel {
        height: 210px;
    }

    .reel-cell {
        height: 70px;
    }

    .reel-cell img {
        width: 52px;
        height: 52px;
    }

    .reel-win-line {
        height: 70px;
        margin-top: -35px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .donut-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 16px 50px;
    }

    .slot-machine {
        padding: 20px 16px;
    }

    .btn-spin {
        padding: 16px 32px;
    }

    .slot-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== PAGE HEADER (interior pages) ===== */
.page-header {
    padding: 100px 0 48px;
    background: linear-gradient(180deg, rgba(107, 33, 168, 0.15) 0%, transparent 100%);
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin: 12px 0 12px;
    line-height: 1.2;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 640px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    margin-bottom: 8px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumb-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: var(--gold);
}

.breadcrumb-list .sep {
    margin: 0 4px;
    opacity: 0.5;
}

.breadcrumb-list .current {
    color: var(--gold);
    font-weight: 500;
}

/* ===== CASINO CARDS ===== */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.casino-card {
    background: linear-gradient(145deg, var(--surface), var(--dark-3));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.casino-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: var(--glow-gold);
}

.casino-header {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
}

.casino-logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--surface-2), var(--dark-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.casino-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.casino-rating {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.casino-body {
    padding: 16px 20px 20px;
}

.casino-bonus {
    margin-bottom: 12px;
}

.bonus-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.bonus-value {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.95rem;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.feature-tag {
    background: rgba(107, 33, 168, 0.15);
    border: 1px solid rgba(107, 33, 168, 0.3);
    color: var(--text-muted);
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 500;
}

.casino-cta {
    display: block;
    text-align: center;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.casino-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* ===== DONUT LEGEND ===== */
.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex: 1;
}

.legend-val {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.85rem;
}

/* ===== RELATED PAGES LINKS ===== */
.related-pages {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.page-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 215, 0, 0.06);
}

.page-link span {
    font-weight: 600;
    color: var(--text);
}

/* ===== SEO ARTICLE ===== */
.seo-article h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 24px 0 8px;
    color: var(--gold);
}

.seo-article p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.seo-article ul {
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 2.1;
}

.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 215, 0, 0.4);
}

.text-link:hover {
    text-decoration-color: var(--gold);
}

/* ===== RESPONSIBLE GAMING STRIP (footer) ===== */
.responsible-strip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.76rem;
    color: var(--text-muted);
    background: rgba(255, 45, 85, 0.06);
    border: 1px solid rgba(255, 45, 85, 0.2);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    margin-top: 12px;
}

/* ===== UTILITY ===== */
.mt-24 {
    margin-top: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mt-16 {
    margin-top: 16px;
}

/* ===== RESPONSIVE FOR INNER PAGES ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 90px 0 40px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .related-pages {
        flex-direction: column;
    }

    .casinos-grid {
        grid-template-columns: 1fr;
    }

    .bar-label {
        width: 90px;
        font-size: 0.76rem;
    }

    .donut-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .donut-chart {
        width: 140px;
        height: 140px;
    }
}