/* =============================================================
   McLuck Casino Canada — Global Design System v1.0
   Brand: Deep Purple #1A0A3D | Purple #7B2FBE | Gold #F0C040
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colours */
    --mc-purple-deep: #1A0A3D;
    --mc-purple: #7B2FBE;
    --mc-purple-mid: #2D1566;
    --mc-purple-light: #4A1F8A;
    --mc-gold: #F0C040;
    --mc-gold-light: #FFD966;
    --mc-gold-deep: #C49A00;

    /* UI */
    --bg-dark: #0F0624;
    --bg-card: #1E0E42;
    --bg-card2: #251450;
    --border: #3D1F7A;
    --border-gold: rgba(240, 192, 64, 0.25);
    --text: #E8E0FF;
    --text-muted: #9980CC;
    --white: #FFFFFF;

    /* Effects */
    --radius: 10px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 40px rgba(240, 192, 64, 0.2);
    --glow-gold: 0 0 24px rgba(240, 192, 64, 0.4);
    --glow-purple: 0 0 24px rgba(123, 47, 190, 0.5);
    --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--mc-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--mc-gold-light);
}

ul,
ol {
    list-style: none;
}

/* =========================
   ACCESSIBILITY
   ========================= */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: var(--mc-gold);
    color: var(--mc-purple-deep);
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

#main-content {
    scroll-margin-top: 80px;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.15rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
}

.text-gold {
    color: var(--mc-gold);
}

.text-purple {
    color: var(--mc-purple);
}

.text-muted {
    color: var(--text-muted);
}

/* =========================
   LAYOUT
   ========================= */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 52px 0;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-48 {
    margin-top: 48px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-24 {
    margin-bottom: 24px;
}

/* =========================
   HEADER
   ========================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(15, 6, 36, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mc-gold);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-name span {
    color: var(--white);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--mc-gold);
    background: rgba(240, 192, 64, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* =========================
   BUTTONS
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--mc-gold) 0%, var(--mc-gold-deep) 100%);
    color: var(--mc-purple-deep);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--mc-gold-light) 0%, var(--mc-gold) 100%);
    box-shadow: var(--glow-gold);
    transform: translateY(-2px);
    color: var(--mc-purple-deep);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--mc-gold);
    color: var(--mc-gold);
}

.btn-outline:hover {
    background: var(--mc-gold);
    color: var(--mc-purple-deep);
    box-shadow: var(--glow-gold);
}

.btn-ghost {
    background: rgba(123, 47, 190, 0.2);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-ghost:hover {
    background: rgba(123, 47, 190, 0.35);
    border-color: var(--mc-purple);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn-full {
    width: 100%;
}

/* =========================
   MOBILE BURGER & DRAWER
   ========================= */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mc-gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: var(--mc-purple-deep);
    border-left: 1px solid var(--border);
    z-index: 1001;
    transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-overlay.open {
    display: block;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.drawer-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    overflow-y: auto;
}

.drawer-links a {
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition);
}

.drawer-links a:hover {
    background: rgba(240, 192, 64, 0.1);
    color: var(--mc-gold);
}

.drawer-cta {
    padding: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================
   SECTION LABELS
   ========================= */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 192, 64, 0.08);
    border: 1px solid rgba(240, 192, 64, 0.3);
    color: var(--mc-gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 660px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* =========================
   GRIDS
   ========================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* =========================
   CARDS
   ========================= */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 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(--mc-gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    border-color: rgba(240, 192, 64, 0.4);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(123, 47, 190, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
    border: 1px solid rgba(123, 47, 190, 0.3);
}

/* =========================
   TABLES
   ========================= */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.data-table th {
    background: var(--mc-purple-mid);
    color: var(--mc-gold);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 14px 20px;
    text-align: left;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.data-table td {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(61, 31, 122, 0.4);
    color: var(--text);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(240, 192, 64, 0.04);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-gold {
    background: rgba(240, 192, 64, 0.15);
    color: var(--mc-gold);
}

.badge-purple {
    background: rgba(123, 47, 190, 0.2);
    color: #B57BFF;
}

.badge-green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ADE80;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #93C5FD;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 30% 50%, rgba(123, 47, 190, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(240, 192, 64, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 6, 36, 0.7) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 192, 64, 0.1);
    border: 1px solid rgba(240, 192, 64, 0.35);
    color: var(--mc-gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 18px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 56px;
    background: rgba(30, 14, 66, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.hero-stat {
    flex: 1;
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--mc-gold);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =========================
   COINS DISPLAY
   ========================= */
.coins-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--mc-purple-mid), var(--mc-purple-deep));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 16px 28px;
}

.coin-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coin-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.coin-icon-gold {
    background: radial-gradient(circle, #FFD966, var(--mc-gold-deep));
}

.coin-icon-sc {
    background: radial-gradient(circle, #A78BFA, #7B2FBE);
}

.coin-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.coin-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.coin-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* =========================
   RATING BARS
   ========================= */
.rating-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.rating-score-big {
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--mc-gold);
    line-height: 1;
}

.rating-bar-row {
    margin-bottom: 14px;
}

.rating-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.rating-bar-track {
    background: rgba(61, 31, 122, 0.5);
    border-radius: 100px;
    height: 8px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--mc-purple), var(--mc-gold));
    border-radius: 100px;
    transition: width 1.2s ease;
}

/* =========================
   CHART WRAPPER
   ========================= */
.chart-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    height: 320px;
}

.chart-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

/* =========================
   HIGHLIGHT BOX
   ========================= */
.highlight {
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.15), rgba(240, 192, 64, 0.05));
    border: 1px solid rgba(240, 192, 64, 0.2);
    border-radius: var(--radius);
    padding: 18px 22px;
    color: var(--text);
    line-height: 1.6;
}

.highlight strong {
    color: var(--mc-gold);
}

/* =========================
   FAQ
   ========================= */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(240, 192, 64, 0.4);
}

.faq-question {
    width: 100%;
    background: var(--bg-card);
    border: none;
    padding: 18px 24px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-card2);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(240, 192, 64, 0.1);
    border: 1px solid rgba(240, 192, 64, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--mc-gold);
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--mc-gold);
    color: var(--mc-purple-deep);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    background: var(--bg-card2);
    font-size: 0.93rem;
    color: var(--text-muted);
    padding: 0 24px;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 18px 24px;
}

/* =========================
   PROS / CONS
   ========================= */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-box {
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.cons-box {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.pros-box h4 {
    color: #4ADE80;
    margin-bottom: 16px;
}

.cons-box h4 {
    color: #F87171;
    margin-bottom: 16px;
}

.pros-box ul li,
.cons-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pros-box ul li::before {
    content: '✓';
    color: #4ADE80;
    font-weight: 700;
    flex-shrink: 0;
}

.cons-box ul li::before {
    content: '✗';
    color: #F87171;
    font-weight: 700;
    flex-shrink: 0;
}

.pros-box ul li:last-child,
.cons-box ul li:last-child {
    border-bottom: none;
}

/* =========================
   FEATURE STRIP (coins info boxes)
   ========================= */
.feature-strip {
    display: flex;
    gap: 0;
    background: var(--mc-purple-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.feature-strip-item {
    flex: 1;
    padding: 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.feature-strip-item:last-child {
    border-right: none;
}

.feature-strip-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-strip-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-strip-value {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--mc-gold);
    margin-top: 2px;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
    background: rgba(10, 3, 26, 0.98);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo-name {
    font-size: 1.6rem;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-col h5 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mc-gold);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--mc-gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* =========================
   BREADCRUMB
   ========================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 16px 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--mc-gold);
}

.breadcrumb .sep {
    opacity: 0.4;
}

.breadcrumb .current {
    color: var(--mc-gold);
}

/* =========================
   PAGE HERO (inner pages)
   ========================= */
.page-hero {
    background: linear-gradient(135deg, var(--mc-purple-mid) 0%, var(--bg-dark) 70%);
    border-bottom: 1px solid var(--border);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* =========================
   UTILITIES
   ========================= */
.text-center {
    text-align: center;
}

.fw-bold {
    font-weight: 700;
}

.d-flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

/* =========================
   CHART COMPONENTS
   ========================= */
.chart-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.chart-wrap canvas {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
}

.chart-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--mc-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}