:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-text: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-primary: #d4af37;
    /* Metallic Gold */
    --color-primary-hover: #f1c40f;
    --color-accent: #0f5132;
    /* Deep Emerald Green */
    --color-accent-light: #198754;
    --color-danger: #dc3545;
    --color-success: #198754;

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Cinzel', serif;
    /* Or a premium serif if available, otherwise fallback */

    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.3);

    --space-xs: 0.5rem;
    --space-s: 1rem;
    --space-m: 2rem;
    --space-l: 4rem;
    --space-xl: 8rem;

    --radius-s: 4px;
    --radius-m: 8px;
    --radius-l: 16px;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-s);
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-s);
}

/* Header */
.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    padding: var(--space-s) 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    /* Adjust based on generated logo aspect ratio */
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero_background_luxury_casino_1768589222143.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    /* For fixed header */
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-s);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.last-updated {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-s);
    font-size: 0.9rem;
    margin-top: var(--space-s);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Power Table */
.power-table-section {
    padding: var(--space-l) 0;
    background-color: var(--color-bg);
}

.table-container {
    overflow-x: auto;
    background: var(--color-bg-secondary);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.power-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    /* Ensure horizontal scroll on mobile */
}

.power-table th,
.power-table td {
    padding: var(--space-s);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.power-table th {
    background-color: #1a1a1a;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Mobile sticky header fix using JS or clever CSS if possible, strict sticky top 0 works if container handles scroll */

.casino-brand {
    display: flex;
    align-items: center;
    gap: var(--space-s);
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.rating {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.highlight {
    color: var(--color-primary);
    font-weight: bold;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), #b38f00);
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-s);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    color: #000;
}

/* Calculator */
.calculator-section {
    padding: var(--space-l) 0;
    background-color: var(--color-bg-secondary);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-m);
}

@media (min-width: 768px) {
    .calc-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.calc-form {
    background: var(--color-bg);
    padding: var(--space-m);
    border-radius: var(--radius-m);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
    margin-bottom: var(--space-s);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--radius-s);
    color: #fff;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-input:focus {
    border-color: var(--color-primary);
    outline: none;
}

.calc-result {
    padding: var(--space-m);
    background: #1a1a1a;
    border-radius: var(--radius-m);
    text-align: center;
}

.result-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin: var(--space-s) 0;
}

.value-positive {
    color: var(--color-success);
}

.value-negative {
    color: var(--color-danger);
}

/* Icons & Features */
.features-section {
    padding: var(--space-l) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-m);
}

.feature-card {
    background: var(--color-bg-secondary);
    padding: var(--space-m);
    border-radius: var(--radius-m);
    text-align: center;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-s);
}

/* Footer */
.site-footer {
    background: #000;
    padding: var(--space-l) 0;
    margin-top: var(--space-l);
    border-top: 1px solid #222;
    text-align: center;
    color: var(--color-text-muted);
}

.footer-links a {
    color: var(--color-text-muted);
    margin: 0 1rem;
}

.disclaimer {
    margin-top: var(--space-m);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Floating VIP Concierge Widget */
.floating-vip-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 9999;
    font-weight: bold;
    font-family: var(--font-main);
    transition: transform 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-vip-btn:hover {
    transform: scale(1.05);
}

.floating-vip-btn::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* VIP Tiers Visualization */
.vip-tiers-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.vip-tier {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #333;
    transition: transform 0.3s;
}

.vip-tier:hover {
    transform: translateX(10px);
    border-left-color: var(--color-primary);
    background: #252525;
}

.tier-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: bold;
}

.tier-req {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    background: #000;
    padding: 2px 8px;
    border-radius: 4px;
}

.tier-benefit {
    color: #ddd;
    font-size: 0.95rem;
}

.vip-connector {
    height: 20px;
    width: 2px;
    background: #333;
    margin-left: 20px;
}

/* --- Phase 5: UX & Trust Elements --- */

/* Payout Ticker */
.payout-ticker-wrap {
    width: 100%;
    background: #000;
    color: var(--color-primary);
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    /* Below header but above others */
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.85rem;
    padding: 8px 0;
    font-family: monospace;
}

.payout-ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
}

.tx-hash {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-left: 5px;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Blacklist Section */
.blacklist-section {
    background: linear-gradient(to bottom, #1a0000, #000);
    border: 1px solid var(--color-danger);
    padding: var(--space-m);
    border-radius: var(--radius-m);
    margin-top: var(--space-l);
    text-align: center;
}

.blacklist-title {
    color: var(--color-danger);
    font-size: 1.5rem;
    margin-bottom: var(--space-s);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blacklist-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-m);
    flex-wrap: wrap;
}

.blacklist-item {
    background: rgba(255, 0, 0, 0.1);
    padding: var(--space-s) var(--space-m);
    border-radius: var(--radius-s);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff8888;
}

/* Founder Block */
.founder-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-bg-secondary);
    padding: var(--space-l);
    margin: var(--space-l) auto;
    max-width: 800px;
    border-radius: var(--radius-l);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.founder-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    margin-bottom: var(--space-s);
    background: #333;
    /* Placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.founder-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: var(--space-s);
}

.founder-sign {
    font-family: 'Cinzel', serif;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- Phase 7: Competitor Smart Blocks --- */
.smart-stats-container {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
}

.success-bar-wrap {
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 2px;
}

.success-bar-fill {
    background: var(--color-success);
    height: 100%;
    width: 0%;
    /* JS will fill */
    transition: width 1s ease-out;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
}

.stat-badge.verified {
    color: var(--color-success);
    font-weight: 600;
}

.stat-badge.hot {
    color: #ff8800;
    /* Fire Orange */
    font-weight: 600;
    animation: pulse-fire 2s infinite;
}

@keyframes pulse-fire {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 5px #ff8800;
    }

    100% {
        opacity: 0.8;
    }
}

/* --- Phase 8: Content Expansion (SEO) --- */

/* Bonus Types Grid */
.bonus-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-m);
    margin-bottom: var(--space-l);
}

.bonus-card {
    background: var(--color-bg-secondary);
    padding: var(--space-m);
    border-radius: var(--radius-m);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

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

.bonus-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--space-s);
}

/* VIP Path Timeline */
.vip-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto var(--space-l);
    padding: 20px 0;
}

.timeline-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.step-marker {
    background: var(--color-primary);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    flex-shrink: 0;
    z-index: 2;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -10px;
    width: 2px;
    background: rgba(212, 175, 55, 0.3);
}

.step-content {
    margin-left: 20px;
}

.step-title {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Comparison Table (High Roller vs Standard) */
.comparison-wrapper {
    overflow-x: auto;
    margin-bottom: var(--space-l);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: #111;
    color: var(--color-primary);
}

.comp-standard {
    color: var(--color-text-muted);
}

/* --- Phase 9: Retention & Capture --- */

/* Exit Modal */
.exit-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #000);
    margin: 15% auto;
    padding: var(--space-l);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-l);
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: slideIn 0.4s;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
}

.modal-header h2 {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: var(--space-s);
}

.modal-offer {
    background: rgba(212, 175, 55, 0.1);
    padding: var(--space-m);
    border-radius: var(--radius-m);
    margin: var(--space-m) 0;
    border: 1px dashed var(--color-primary);
}

.offer-value {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.offer-text {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.modal-cta {
    width: 100%;
    font-size: 1.2rem;
    padding: 1rem;
    margin-top: var(--space-s);
}

.modal-footer-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: var(--space-s);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Phase 12: Content Density Styles */

/* Security Checklist */
.security-box {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-m);
    padding: var(--space-l);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.security-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-s);
    margin-bottom: var(--space-m);
    padding-bottom: var(--space-s);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.security-checklist li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.security-checklist .check-icon {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Math Table */
.math-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-s);
    font-size: 0.95rem;
}

.math-table th,
.math-table td {
    padding: var(--space-s);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.math-table th {
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.math-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Glossary Grid */
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-m);
}

.glossary-item {
    background: var(--color-bg-secondary);
    padding: var(--space-m);
    border-radius: var(--radius-m);
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.glossary-item:hover {
    border-color: var(--color-primary);
}

.glossary-item h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.glossary-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .math-table td,
    .math-table th {
        padding: 8px;
        font-size: 0.85rem;
    }
}

/* Mobile Sticky Footer */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 999;
    /* Above normal content, below modal */
    border-top: 1px solid var(--color-primary);
}

.sticky-cta {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: block;
    }

    .payout-ticker-wrap {
        bottom: 60px;
        /* Push ticker up */
    }

    .floating-vip-btn {
        bottom: 80px;
        /* Push WhatsApp button up */
    }
}

.comp-vip {
    color: #fff;
    font-weight: bold;
    background: rgba(212, 175, 55, 0.05);
}

.check-icon {
    color: var(--color-success);
}

.cross-icon {
    color: var(--color-danger);
}

/* --- Phase 14: Visual Immersion (Rolex Style) --- */

/* 1. Gold Sheen Animation */
@keyframes shimmer {
    0% {
        transform: translateX(-150%) skewX(-15deg);
    }

    30% {
        transform: translateX(150%) skewX(-15deg);
    }

    100% {
        transform: translateX(150%) skewX(-15deg);
    }
}

.sheen-effect {
    position: relative;
    overflow: hidden;
}

.sheen-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: translateX(-150%) skewX(-15deg);
    animation: shimmer 6s infinite ease-in-out;
    pointer-events: none;
}

/* 2. Scroll Reveals */
.reveal-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

/* Stagger delays for grids */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* --- Phase 15: Player-Centric Content Styles --- */

/* Info Box (Bankroll, Provably Fair) */
.info-box {
    background: linear-gradient(135deg, rgba(20, 40, 20, 0.9), rgba(10, 20, 10, 0.95));
    border: 1px solid var(--color-success);
    border-radius: var(--radius-m);
    padding: var(--space-m);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.info-box-header {
    color: var(--color-success);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: var(--space-s);
}

.bankroll-example {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-s);
    border-radius: var(--radius-s);
    margin-top: var(--space-s);
}

.example-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.example-row:last-child {
    border-bottom: none;
}

.bankroll-size {
    color: var(--color-text-muted);
}

.max-bet {
    color: var(--color-primary);
    font-weight: bold;
}

/* Warning Box (Bonus Abuse) */
.warning-box {
    background: linear-gradient(135deg, rgba(40, 20, 20, 0.9), rgba(20, 10, 10, 0.95));
    border: 1px solid var(--color-danger);
    border-radius: var(--radius-m);
    padding: var(--space-m);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.flag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flag-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
}

.flag-list li:last-child {
    border-bottom: none;
}

.flag-list li strong {
    color: var(--color-danger);
}

/* Steps Container (Dispute Resolution) */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.step-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-m);
    background: var(--color-bg-secondary);
    padding: var(--space-m);
    border-radius: var(--radius-m);
    border-left: 4px solid var(--color-primary);
    transition: transform 0.3s, border-color 0.3s;
}

.step-box:hover {
    transform: translateX(10px);
    border-left-color: var(--color-success);
}

.step-number {
    background: var(--color-primary);
    color: #000;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.step-info h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1rem;
}

.step-info p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.step-info a {
    color: var(--color-primary);
}

.step-info a:hover {
    text-decoration: underline;
}