:root {
        --felt-green: #0B3B24;
        --felt-green-dark: #062C1B;
        --wood-dark: #3A2318;
        --gold: #D4AF37;
        --gold-dark: #B88D2F;
        --text-light: #F5F0E6;
        --text-muted: #B9B09C;
        --shadow-emboss: inset 0 1px 2px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.3);
        --accent-red: #E74C3C;
        --accent-green: #2ECC71;
    }

    html, body {
        margin: 0;
        padding: 0;
        overflow-x: hidden; 
    }

    body {
        background-color: var(--felt-green);
        background-image: radial-gradient(circle at 25% 40%, rgba(0,0,0,0.08) 1px, transparent 1px),
                          radial-gradient(circle at 75% 60%, rgba(0,0,0,0.05) 1px, transparent 1px);
        background-size: 40px 40px, 60px 60px;
        color: var(--text-light);
        font-family: inherit;
        line-height: 1.6;
        scroll-behavior: smooth;
    }

    
    #primary, .site-content, .content-container, .site-main, .entry-content, .wp-site-blocks, .wrapper, .site-container {
        padding: 0;
        margin: 0;
        background: transparent;
        max-width: 100%;
        width: 100%;
        box-shadow: none;
        border: none;
    }

    
    .landing-container {
        max-width: 1100px;
        margin: 2rem auto;
        padding: 0 20px;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
    }

    @media (max-width: 768px) {
        .landing-container {
            padding: 0 12px; 
            margin: 1rem auto;
            width: 100%;
        }
    }

    h1, h2, h3, h4, h5 { font-family: Georgia, "Times New Roman", serif; color: var(--gold); }
    .content-wrapper { position: relative; z-index: 2; }

    
    .silo-breadcrumb { font-size: 0.85rem; margin-bottom: 1.5rem; color: var(--text-muted); }
    .silo-breadcrumb a { color: var(--gold); text-decoration: none; }
    .silo-breadcrumb a:hover { text-decoration: underline; }

    
    .section { margin: 3.5rem 0; scroll-margin-top: 100px; }
    .section-header { margin-bottom: 1.8rem; border-left: 4px solid var(--gold); padding-left: 1rem; }
    .section-header h2 { font-size: clamp(1.22rem, 2.3vw, 1.45rem); font-weight: 700; margin-bottom: 0.2rem; border: none; padding: 0; }
    .section-header p { color: var(--text-muted); margin-top: 0.2rem; font-size: 0.95rem; }

    
    .card, .calc-panel, .b2c-card {
        background: rgba(10, 8, 6, 0.85);
        backdrop-filter: blur(2px);
        border: 1px solid var(--wood-dark);
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: var(--shadow-emboss);
        position: relative;
        z-index: 2;
    }
    .card p { color: var(--text-light); line-height: 1.7; }

    
    .toc-tree {
        position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
        width: 250px; background: rgba(10, 8, 6, 0.95); border: 1px solid var(--wood-dark);
        border-radius: 16px; padding: 1.2rem; z-index: 9999; font-size: 0.85rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    }
    .toc-tree .toc-title { font-weight: 700; color: var(--gold); margin-bottom: 1rem; font-size: 1.05rem; }
    .toc-tree ul { list-style: none; padding-left: 0; }
    .toc-tree li { margin: 0.8rem 0; }
    .toc-tree a { color: var(--text-muted); text-decoration: none; display: block; padding-left: 0.6rem; border-left: 2px solid transparent;}
    .toc-tree a:hover, .toc-tree a.active { color: var(--gold); border-left-color: var(--gold); }
    @media (max-width: 1250px) { .toc-tree { display: none; } }

    
    .flex-2col { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .flex-2col > * { flex: 1; min-width: 280px; }
    .chart-wrapper { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: stretch; justify-content: center; }
    .pie-chart-box { flex: 1; min-width: 280px; display:flex; justify-content:center; align-items:center;}
    .stats-box { flex: 1; min-width: 280px; }
    .stats-box ul { margin-top: 1.2rem; list-style: none; padding-left: 0; color: var(--text-light); }
    .stats-box li { margin-bottom: 12px; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px;}

    
    .table-responsive { 
        width: 100%;
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch;
        background: rgba(10, 8, 6, 0.85);
        border: 1px solid var(--wood-dark);
        border-radius: 12px;
    }
    .platform-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 850px; }
    .platform-table th, .platform-table td { padding: 1.2rem 1rem; text-align: left; border-bottom: 1px solid rgba(212, 175, 55, 0.15); color: var(--text-light); }
    .platform-table th { color: var(--gold); font-weight: 600; background: rgba(0,0,0,0.5); white-space: nowrap;}
    .platform-table td a { color: var(--gold); font-weight: 600; text-decoration: none; transition: 0.2s; }

    
    .b2c-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
    .b2c-card { display: flex; flex-direction: column; padding: 1.2rem; transition: transform 0.2s; }
    .b2c-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 8px 20px rgba(0,0,0,0.5); }
    .b2c-card .header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
    .b2c-card .title { font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0; }
    .b2c-card .ribbon { background: rgba(212,175,55,0.15); color: var(--gold); padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; border: 1px solid rgba(212,175,55,0.3); }
    .b2c-card ul { list-style: none; padding-left: 0; margin-bottom: 1.2rem; font-size: 0.85rem; color: var(--text-muted); }
    .b2c-card ul li { margin-bottom: 8px; }
    .b2c-card .btn-group { display: flex; gap: 10px; margin-top: auto; }
    .b2c-card .btn { flex: 1; text-align: center; padding: 10px 0; border-radius: 6px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: 0.2s; }
    .btn-play { background: var(--gold); color: #000; }
    .btn-review { border: 1px solid var(--gold); color: var(--gold); }

    
    .eeat-box { background: rgba(10, 8, 6, 0.85); border-left: 4px solid var(--gold); border-right: 1px solid var(--wood-dark); border-top: 1px solid var(--wood-dark); border-bottom: 1px solid var(--wood-dark); padding: 1.5rem; border-radius: 8px; margin: 1.5rem 0; box-shadow: var(--shadow-emboss); }
    .eeat-box h3 { color: var(--gold); font-size: clamp(1.05rem, 1.8vw, 1.18rem); margin-bottom: 10px; margin-top: 0; }
    .eeat-box p { font-size: 0.95rem; color: var(--text-muted); margin: 0; line-height: 1.6;}
    .author-profile { display: flex; align-items: center; gap: 12px; margin-top: 15px; padding-top: 15px; border-top: 1px dashed rgba(212,175,55,0.3); }
    .author-avatar { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); background: #1a1a1a; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--gold); flex-shrink: 0;}

    
    .slider-container { margin: 1.2rem 0; }
    .slider-label { display: flex; justify-content: space-between; margin-bottom: 0.8rem; color: var(--text-light); font-weight: 500;}
    input[type="range"] { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 5px; -webkit-appearance: none; outline: none;}
    input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 2px solid #fff;}
    .risk-buttons { display: flex; gap: 10px; margin: 1.5rem 0; flex-wrap: wrap; }
    .risk-btn { background: rgba(0,0,0,0.5); border: 1px solid var(--wood-dark); padding: 0.6rem 1rem; border-radius: 8px; color: var(--text-light); cursor: pointer; flex: 1; text-align: center; }
    .risk-btn.active { background: rgba(212,175,55,0.2); border-color: var(--gold); color: var(--gold); font-weight: 700; }
    .result-kelly { background: rgba(0,0,0,0.6); padding: 1.2rem; border-radius: 8px; font-weight: 500; font-size: 1.1rem; border-left: 4px solid var(--accent-green); color: var(--text-light);}

    
    .faq-item { margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem;}
    .faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0;}
    .faq-item h4 { color: var(--gold); margin-bottom: 8px; font-size: 1.1rem; margin-top: 0; }
    .faq-item p { color: var(--text-muted); font-size: 0.95rem; margin: 0;}

    @media (max-width: 768px) { .section { margin: 2.5rem 0; } .b2c-card .btn-group { flex-direction: column; } }


.bj-inl-page-about-1 { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }
.bj-inl-page-about-2 { color: var(--accent-red); margin-bottom: 10px; font-family:'Inter', sans-serif; font-weight:700; }
.bj-inl-page-about-3 { background: rgba(0,0,0,0.9); margin: 2rem 0; text-align:center; border: 1px solid var(--wood-dark); border-top: 3px solid var(--accent-red); }
.bj-inl-page-about-4 { color:var(--accent-red); font-weight:500; }
.bj-inl-page-about-5 { color:var(--text-light); }
.bj-inl-page-about-6 { color:var(--text-muted); }
.bj-inl-page-about-7 { color:var(--gold); font-weight:600; }
.bj-inl-page-about-8 { color:var(--text-light); }
.bj-inl-page-about-9 { color: var(--text-muted); font-size: 0.85rem; }
.bj-inl-page-about-10 { background:rgba(212,175,55,0.15); color:var(--gold); padding:2px 6px; border-radius:4px; font-size:0.75rem; font-weight:bold; border:1px solid rgba(212,175,55,0.3); }
.bj-inl-page-about-11 { color:var(--gold); font-weight:bold; }
.bj-inl-page-about-12 { font-size: 0.8rem; color: var(--text-muted); margin-top: 5px; font-weight: 400; }
.bj-inl-page-about-13 { color:var(--gold); font-size: 1.5rem; margin: 0 5px; }
.bj-inl-page-about-14 { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.bj-inl-page-about-15 { margin-top: 15px; font-size: 0.85rem; color: var(--text-muted); border-top: 1px dashed rgba(255,255,255,0.1); padding-top: 10px; }
.bj-inl-page-about-16 { font-size:0.8rem;color:#888; }
.bj-inl-page-about-17 { color:var(--accent-red); font-weight:700; }
.bj-inl-page-about-18 { color:#2ECC71; font-weight:700; }
.bj-inl-page-about-19 { font-size:0.8rem;color:#888; }
.bj-inl-page-about-20 { color:var(--gold); font-weight:700; }
.bj-inl-page-about-21 { color: var(--text-muted); font-size: clamp(1.05rem, 1.8vw, 1.18rem); }
.bj-inl-page-about-22 { color: var(--text-light); font-size: clamp(1.05rem, 1.8vw, 1.18rem); }
.bj-inl-page-about-23 { color: var(--text-muted); font-size: clamp(1.05rem, 1.8vw, 1.18rem); max-width: 800px; margin: 0 auto; line-height: 1.6; }
.bj-inl-page-about-24 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 1.2rem; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }
.bj-inl-page-about-25 { text-align: center; margin-top: 1rem; }
