/* =========================================================
   OKGames — Fortune Tiger Trend Page
   File: /web/fortune-tiger-trend.css
   Version: V2 (based on Money Coming Trend V1)

   Global Rules:
   - Width: calc(100% - 1px)
   - Max Width: 1200px
   - Section Gap: 20px
   - Section Padding: 20px
   - Card Gap: 10px
   - Card Padding: 10px
   - Border Radius: 10px
   - Mobile Friendly
========================================================= */


/* =========================================================
   01. ROOT VARIABLES
========================================================= */

.okg-money-trend-page {
    --mct-brand: #D45500;        /* Fortune Tiger orange */
    --mct-brand-hover: #B84400;
    --mct-brand-deep: #8A3300;
    --mct-brand-light: #FFF0E8;

    --mct-title: #6B2E00;
    --mct-text: #5A4A3E;
    --mct-muted: #8A7A6E;

    --mct-page-bg: #FCF6F0;
    --mct-card-bg: #FFFFFF;
    --mct-soft-bg: #FDF0E8;
    --mct-orange-bg: #FADDCB;

    --mct-border: #F0DCCE;
    --mct-border-strong: #E8C4AE;

    --mct-success: #16A765;
    --mct-success-bg: #E7F7EF;

    --mct-warning: #E58A00;
    --mct-warning-bg: #FFF6E4;

    --mct-danger: #EF3D45;
    --mct-danger-bg: #FFF0F1;

    --mct-gold: #FFB428;
    --mct-gold-dark: #D79522;

    --mct-radius: 10px;
    --mct-section-gap: 20px;
    --mct-card-gap: 10px;
    --mct-container: 1200px;

    --mct-shadow:
        0 8px 24px rgba(180, 70, 0, 0.10);

    --mct-shadow-hover:
        0 14px 34px rgba(200, 80, 0, 0.16);

    width: 100%;
    margin: 0;
    padding: 0;

    background: var(--mct-page-bg);
    color: var(--mct-text);

    font-family: inherit;
    line-height: 1.7;
}


/* =========================================================
   02. GLOBAL RESET
========================================================= */

.okg-money-trend-page,
.okg-money-trend-page *,
.okg-money-trend-page *::before,
.okg-money-trend-page *::after {
    box-sizing: border-box;
}

.okg-money-trend-page img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.okg-money-trend-page a {
    color: inherit;
    text-decoration: none;
}

.okg-money-trend-page button,
.okg-money-trend-page input,
.okg-money-trend-page select {
    font: inherit;
}

.okg-money-trend-page h1,
.okg-money-trend-page h2,
.okg-money-trend-page h3,
.okg-money-trend-page h4,
.okg-money-trend-page p,
.okg-money-trend-page ul,
.okg-money-trend-page ol {
    margin-top: 0;
}

.okg-money-trend-page h1,
.okg-money-trend-page h2,
.okg-money-trend-page h3,
.okg-money-trend-page h4 {
    color: var(--mct-title);
    line-height: 1.2;
}

.okg-money-trend-page p {
    color: var(--mct-text);
}


/* =========================================================
   03. SHARED SECTION
========================================================= */

.mct-section,
.mct-hero,
.mct-summary,
.mct-cta {
    width: calc(100% - 1px);
    max-width: var(--mct-container);

    margin: 0 auto var(--mct-section-gap);

    overflow: hidden;

    border: 1px solid var(--mct-border);
    border-radius: var(--mct-radius);

    background: var(--mct-card-bg);

    box-shadow: var(--mct-shadow);
}

.mct-section:last-child,
.mct-cta:last-child {
    margin-bottom: 0;
}

.mct-section-inner {
    width: 100%;
    padding: 20px;
}

.mct-section-heading {
    max-width: 800px;
    margin: 0 auto 22px;
    text-align: center;
}

.mct-section-label,
.mct-eyebrow {
    display: inline-flex;
    min-height: 28px;

    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-bottom: 10px;
    padding: 5px 10px;

    border: 1px solid rgba(212, 85, 0, 0.20);
    border-radius: 10px;

    background: var(--mct-brand-light);
    color: var(--mct-brand);

    font-size: 12px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.mct-section-title {
    margin-bottom: 10px;

    font-size: clamp(20px, 3vw, 30px);
    font-weight: 900;
    letter-spacing: -0.6px;
}

.mct-section-description {
    max-width: 760px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   04. SHARED BUTTONS
========================================================= */

.mct-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 20px;
}

.mct-button {
    display: inline-flex;
    min-width: 150px;
    min-height: 44px;

    align-items: center;
    justify-content: center;

    padding: 9px 20px;

    border: 1px solid transparent;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease;
}

.mct-button:hover {
    transform: translateY(-2px);
}

.mct-button--primary,
.mct-button--primary:link,
.mct-button--primary:visited {
    border-color: var(--mct-brand);

    background:
        linear-gradient(
            135deg,
            #FF6B2F,
            var(--mct-brand)
        );

    color: #FFFFFF !important;

    box-shadow:
        0 8px 18px rgba(212, 85, 0, 0.25);
}

.mct-button--primary:hover,
.mct-button--primary:focus {
    border-color: var(--mct-brand-hover);

    background:
        linear-gradient(
            135deg,
            var(--mct-brand),
            var(--mct-brand-hover)
        );

    color: #FFFFFF !important;

    box-shadow:
        0 11px 24px rgba(212, 85, 0, 0.30);
}

.mct-button--secondary,
.mct-button--secondary:link,
.mct-button--secondary:visited {
    border-color: var(--mct-border-strong);

    background: #FFFFFF;
    color: var(--mct-brand) !important;
}

.mct-button--secondary:hover,
.mct-button--secondary:focus {
    border-color: var(--mct-brand);

    background: var(--mct-brand-light);
    color: var(--mct-brand-hover) !important;
}

.mct-button:focus-visible {
    outline: 3px solid rgba(212, 85, 0, 0.28);
    outline-offset: 3px;
}


/* =========================================================
   05. HERO
========================================================= */

.mct-hero {
    position: relative;

    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(255, 255, 255, 0.25),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 90%,
            rgba(255, 180, 40, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #D45500 0%,
            #E8682A 55%,
            #FF8A4A 100%
        );
}

.mct-hero::before {
    position: absolute;
    top: -100px;
    right: -70px;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.mct-hero::after {
    position: absolute;
    right: 28%;
    bottom: -135px;

    width: 230px;
    height: 230px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;

    content: "";
    pointer-events: none;
}

.mct-hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(220px, 0.6fr);

    min-height: 430px;
    align-items: center;
    gap: 30px;

    padding: 30px;
}

.mct-hero-content {
    max-width: 660px;
}

.mct-hero .mct-eyebrow {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.mct-hero-title {
    margin-bottom: 12px;

    color: #FFFFFF !important;

    font-size: clamp(30px, 5vw, 40px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -1.3px;
}

.mct-hero-description {
    max-width: 630px;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.9) !important;

    font-size: 17px;
    line-height: 1.75;
}

.mct-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin: 18px 0 0;
    padding: 0;

    list-style: none;
}

.mct-hero-tags li {
    display: inline-flex;
    min-height: 30px;

    align-items: center;
    gap: 6px;

    padding: 5px 9px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.13);
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 750;
    line-height: 1.2;
}

.mct-hero-tags li::before {
    color: var(--mct-gold);
    content: "✓";
    font-weight: 900;
}

.mct-hero-media {
    position: relative;

    display: flex;
    min-width: 0;
    min-height: 350px;

    align-items: center;
    justify-content: center;
}

.mct-hero-media::before {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);

    content: "";
    filter: blur(4px);
}

.mct-hero-image {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 250px;
    height: 250px;

    object-fit: contain;

    border-radius: 10px;

    filter:
        drop-shadow(
            0 18px 28px rgba(120, 40, 0, 0.25)
        );
}

.mct-hero-note {
    display: flex;
    width: 100%;

    align-items: flex-start;
    gap: 10px;

    margin-top: 16px;
    padding: 10px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);

    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
}

.mct-hero-note-icon {
    display: inline-flex;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.16);
    color: var(--mct-gold);

    font-weight: 900;
}


/* =========================================================
   06. LIVE TREND SUMMARY
========================================================= */

.mct-summary {
    background:
        linear-gradient(
            135deg,
            #FFFFFF,
            #FDF5EF
        );
}

.mct-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 10px;

    padding: 20px;
}

.mct-summary-card {
    position: relative;

    min-width: 0;
    min-height: 150px;

    padding: 16px 10px;
    overflow: hidden;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;

    text-align: center;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.mct-summary-card::after {
    position: absolute;
    right: -32px;
    bottom: -32px;

    width: 92px;
    height: 92px;

    border-radius: 50%;

    background: rgba(212, 85, 0, 0.05);

    content: "";
}

.mct-summary-card:hover {
    border-color: var(--mct-border-strong);
    box-shadow: var(--mct-shadow-hover);
    transform: translateY(-3px);
}

.mct-summary-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    margin-bottom: 9px;

    border-radius: 10px;

    background: var(--mct-brand-light);
    color: var(--mct-brand);

    font-size: 19px;
    font-weight: 900;
}

.mct-summary-label {
    display: block;
    margin-bottom: 5px;

    color: var(--mct-muted);

    font-size: 11px;
    font-weight: 750;
    line-height: 1.3;
    text-transform: uppercase;
}

.mct-summary-value {
    display: block;

    color: var(--mct-title);

    font-size: clamp(20px, 3vw, 20px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -0.6px;
}

.mct-summary-status {
    display: inline-flex;
    min-height: 24px;

    align-items: center;
    justify-content: center;
    gap: 5px;

    margin-top: 8px;
    padding: 3px 8px;

    border-radius: 999px;

    background: var(--mct-success-bg);
    color: var(--mct-success);

    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
}

.mct-summary-status::before {
    content: "↑";
}


/* =========================================================
   07. WINNER METER (TIGER MOMENTUM)
========================================================= */

.mct-meter-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.75fr)
        minmax(0, 1.25fr);

    align-items: center;
    gap: 30px;
}

.mct-meter-score-box {
    display: flex;
    min-height: 280px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background:
        radial-gradient(
            circle at center,
            #FFFFFF 0%,
            #FDF0E8 72%,
            #FADDCB 100%
        );

    text-align: center;
}

.mct-meter-score-ring {
    position: relative;

    display: flex;
    width: 190px;
    height: 190px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        conic-gradient(
            var(--mct-brand) 0deg 334deg,
            #F0DCCE 334deg 360deg
        );

    box-shadow:
        0 14px 28px rgba(212, 85, 0, 0.15);
}

.mct-meter-score-ring::before {
    position: absolute;
    inset: 17px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #FFF2E8
        );

    content: "";
}

.mct-meter-score {
    position: relative;
    z-index: 1;

    color: var(--mct-brand);

    font-size: 48px;
    font-weight: 950;
    line-height: 1;
}

.mct-meter-score-label {
    position: relative;
    z-index: 1;

    display: block;
    margin-top: 4px;

    color: var(--mct-muted);

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.mct-meter-level {
    display: inline-flex;
    min-height: 28px;

    align-items: center;
    justify-content: center;

    margin-top: 14px;
    padding: 5px 10px;

    border-radius: 999px;

    background: var(--mct-success-bg);
    color: var(--mct-success);

    font-size: 12px;
    font-weight: 850;
}

.mct-meter-content h2 {
    margin-bottom: 10px;

    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
}

.mct-meter-content > p {
    margin-bottom: 18px;
}

.mct-meter-bar {
    width: 100%;
    margin-bottom: 14px;
}

.mct-meter-bar-track {
    position: relative;

    width: 100%;
    height: 18px;

    overflow: visible;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #FADDCB,
            #F0D0B8
        );
}

.mct-meter-bar-fill {
    display: block;
    width: var(--mct-meter-value, 93%);
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #16A765 0%,
            #FFB428 55%,
            #EF3D45 100%
        );

    box-shadow:
        0 0 14px rgba(212, 85, 0, 0.18);
}

.mct-meter-bar-pointer {
    position: absolute;
    top: -8px;
    left: var(--mct-meter-value, 93%);

    width: 3px;
    height: 34px;

    border-radius: 999px;

    background: var(--mct-title);

    transform: translateX(-50%);
}

.mct-meter-bar-pointer::before {
    position: absolute;
    top: -7px;
    left: 50%;

    width: 12px;
    height: 12px;

    border: 3px solid #FFFFFF;
    border-radius: 50%;

    background: var(--mct-title);

    box-shadow:
        0 3px 8px rgba(100, 40, 0, 0.24);

    content: "";
    transform: translateX(-50%);
}

.mct-meter-scale {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    margin-top: 8px;
}

.mct-meter-scale span {
    color: var(--mct-muted);

    font-size: 10px;
    font-weight: 750;
    text-align: center;
}

.mct-meter-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin-top: 18px;
    padding: 10px;

    border: 1px solid #FFD993;
    border-radius: 10px;

    background: var(--mct-warning-bg);

    color: #74581F;

    font-size: 13px;
    line-height: 1.6;
}

.mct-meter-disclaimer-icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #FFFFFF;
    color: var(--mct-warning);

    font-weight: 900;
}


/* =========================================================
   08. ACTIVITY CHART
========================================================= */

.mct-chart-section {
    background:
        linear-gradient(
            135deg,
            #FFFFFF,
            #FDF5EF
        );
}

.mct-chart-toolbar {
    display: flex;
    width: 100%;

    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 16px;
}

.mct-chart-toolbar-copy {
    min-width: 0;
}

.mct-chart-toolbar h2 {
    margin-bottom: 4px;

    font-size: clamp(27px, 3vw, 38px);
    font-weight: 900;
}

.mct-chart-toolbar p {
    margin-bottom: 0;
    font-size: 14px;
}

.mct-chart-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.mct-chart-tab {
    display: inline-flex;
    min-height: 34px;

    align-items: center;
    justify-content: center;

    padding: 6px 11px;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;
    color: var(--mct-text);

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.mct-chart-tab:hover {
    border-color: var(--mct-brand);
    color: var(--mct-brand);
}

.mct-chart-tab.is-active,
.mct-chart-tab[aria-selected="true"] {
    border-color: var(--mct-brand);

    background: var(--mct-brand);
    color: #FFFFFF;
}

.mct-chart-wrap {
    position: relative;

    width: 100%;
    min-height: 390px;

    padding: 14px;
    overflow: hidden;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;
}

#mctActivityChart,
.mct-activity-chart {
    display: block;
    width: 100%;
    height: 330px;
}

.mct-chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 12px;
}

.mct-chart-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--mct-text);

    font-size: 11px;
    font-weight: 750;
}

.mct-chart-legend-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;
}

.mct-chart-legend-dot--activity {
    background: var(--mct-brand);
}

.mct-chart-legend-dot--winner {
    background: var(--mct-success);
}

.mct-chart-legend-dot--popularity {
    background: var(--mct-gold);
}

.mct-chart-note {
    margin: 10px 0 0;

    color: var(--mct-muted);

    font-size: 11px;
    font-style: italic;
}


/* =========================================================
   09. PERFORMANCE TABLE
========================================================= */

.mct-table-wrap {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;
}

.mct-performance-table {
    width: 100%;
    min-width: 820px;

    border-collapse: collapse;
}

.mct-performance-table th,
.mct-performance-table td {
    padding: 13px 12px;

    border-bottom: 1px solid var(--mct-border);

    text-align: left;
    vertical-align: middle;
}

.mct-performance-table th {
    background: var(--mct-brand);
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.mct-performance-table td {
    color: var(--mct-text);

    font-size: 13px;
}

.mct-performance-table tr:last-child td {
    border-bottom: 0;
}

.mct-performance-table tbody tr:hover td {
    background: var(--mct-soft-bg);
}

.mct-table-period {
    color: var(--mct-title);
    font-weight: 850;
}

.mct-table-level {
    display: inline-flex;
    min-height: 25px;

    align-items: center;
    justify-content: center;

    padding: 4px 8px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 850;
}

.mct-table-level--very-high {
    background: var(--mct-danger-bg);
    color: var(--mct-danger);
}

.mct-table-level--high {
    background: var(--mct-warning-bg);
    color: var(--mct-warning);
}

.mct-table-level--active {
    background: var(--mct-brand-light);
    color: var(--mct-brand);
}

.mct-table-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    color: var(--mct-success);
    font-weight: 850;
}

.mct-table-trend--stable {
    color: var(--mct-muted);
}


/* =========================================================
   10. POPULAR PLAYING TIMES
========================================================= */

.mct-times-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.mct-time-card {
    min-width: 0;
    min-height: 210px;

    padding: 16px 10px;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #FDF5EF
        );
}

.mct-time-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 10px;

    background: var(--mct-brand-light);
    color: var(--mct-brand);

    font-size: 21px;
}

.mct-time-card h3 {
    margin-bottom: 4px;

    font-size: 18px;
    font-weight: 850;
}

.mct-time-period {
    display: block;
    margin-bottom: 12px;

    color: var(--mct-muted);

    font-size: 13px;
    font-weight: 750;
}

.mct-time-level {
    display: inline-flex;
    min-height: 26px;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;
    padding: 4px 9px;

    border-radius: 999px;

    background: var(--mct-success-bg);
    color: var(--mct-success);

    font-size: 11px;
    font-weight: 850;
}

.mct-time-bar {
    width: 100%;
    height: 10px;

    overflow: hidden;

    border-radius: 999px;

    background: #F0E8E0;
}

.mct-time-bar span {
    display: block;
    width: var(--mct-time-value, 75%);
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--mct-brand),
            #FF6B2F
        );
}

.mct-time-note {
    margin-top: 16px;
    margin-bottom: 0;

    color: var(--mct-muted);

    font-size: 12px;
    text-align: center;
}


/* =========================================================
   11. TWO-COLUMN SECTIONS
========================================================= */

.mct-two-column {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(330px, 0.92fr);

    align-items: center;
    gap: 28px;
}

.mct-two-column--reverse {
    grid-template-columns:
        minmax(330px, 0.92fr)
        minmax(0, 1fr);
}

.mct-two-column-content {
    min-width: 0;
}

.mct-two-column-content h2 {
    margin-bottom: 10px;

    font-size: clamp(27px, 3vw, 40px);
    font-weight: 900;
}

.mct-two-column-content > p {
    margin-bottom: 0;
}

.mct-image-box {
    min-width: 0;

    padding: 10px;
    overflow: hidden;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: var(--mct-soft-bg);
}

.mct-section-image {
    width: 100%;
    height: 360px;

    object-fit: cover;
    object-position: center;

    border-radius: 10px;
}


/* =========================================================
   12. GAME OVERVIEW FACTS
========================================================= */

.mct-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 18px;
}

.mct-fact-card {
    padding: 10px;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;
}

.mct-fact-label {
    display: block;
    margin-bottom: 3px;

    color: var(--mct-muted);

    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.mct-fact-value {
    display: block;

    color: var(--mct-title);

    font-size: 14px;
    font-weight: 850;
}


/* =========================================================
   13. GAME FEATURES
========================================================= */

.mct-features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 10px;
}

.mct-feature-card {
    min-width: 0;
    min-height: 190px;

    padding: 16px 10px;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #FDF5EF 100%
        );

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.mct-feature-card:hover {
    border-color: var(--mct-border-strong);
    box-shadow: var(--mct-shadow-hover);
    transform: translateY(-3px);
}

.mct-feature-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 10px;

    background: var(--mct-brand-light);
    color: var(--mct-brand);

    font-size: 22px;
    font-weight: 900;
}

.mct-feature-card h3 {
    margin-bottom: 7px;

    font-size: 18px;
    font-weight: 850;
}

.mct-feature-card p {
    margin-bottom: 0;

    font-size: 14px;
    line-height: 1.65;
}


/* =========================================================
   14. HOW TO PLAY
========================================================= */

.mct-steps {
    display: grid;
    gap: 10px;

    counter-reset: mctStep;
}

.mct-step {
    position: relative;

    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);

    gap: 12px;

    padding: 12px 10px;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: var(--mct-soft-bg);

    counter-increment: mctStep;
}

.mct-step::before {
    display: inline-flex;
    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--mct-brand);
    color: #FFFFFF;

    content: counter(mctStep, decimal-leading-zero);

    font-size: 14px;
    font-weight: 900;
}

.mct-step-content h3 {
    margin-bottom: 4px;

    font-size: 17px;
    font-weight: 850;
}

.mct-step-content p {
    margin-bottom: 0;

    font-size: 14px;
}


/* =========================================================
   15. TREND INTERPRETATION GUIDE
========================================================= */

.mct-trend-guide {
    display: grid;
    gap: 10px;
}

.mct-trend-guide-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);

    gap: 12px;

    padding: 12px 10px;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;
}

.mct-trend-guide-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--mct-brand-light);
    color: var(--mct-brand);

    font-size: 18px;
    font-weight: 900;
}

.mct-trend-guide-content h3 {
    margin-bottom: 4px;

    font-size: 16px;
    font-weight: 850;
}

.mct-trend-guide-content p {
    margin-bottom: 0;

    font-size: 14px;
}


/* =========================================================
   16. MOBILE EXPERIENCE
========================================================= */

.mct-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 18px;
}

.mct-mobile-card {
    padding: 10px;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;
}

.mct-mobile-card strong {
    display: block;
    margin-bottom: 3px;

    color: var(--mct-title);

    font-size: 14px;
    font-weight: 850;
}

.mct-mobile-card span {
    display: block;

    color: var(--mct-text);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   17. RESPONSIBLE PLAY
========================================================= */

.mct-responsible {
    background:
        linear-gradient(
            135deg,
            #FFFDF7,
            #FFF6E4
        );
}

.mct-responsible-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 16px;
    padding: 14px 12px;

    border: 1px solid #FFD993;
    border-radius: 10px;

    background: #FFFFFF;
}

.mct-responsible-notice-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--mct-warning-bg);
    color: var(--mct-warning);

    font-size: 20px;
    font-weight: 900;
}

.mct-responsible-notice h2 {
    margin-bottom: 5px;

    font-size: 24px;
    font-weight: 900;
}

.mct-responsible-notice p {
    margin-bottom: 0;
    color: #74581F;
}

.mct-responsible-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.mct-responsible-card {
    min-width: 0;
    min-height: 170px;

    padding: 16px 10px;

    border: 1px solid #FFD993;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.9);
}

.mct-responsible-card h3 {
    margin-bottom: 7px;

    color: #8B5A00;

    font-size: 18px;
    font-weight: 850;
}

.mct-responsible-card p {
    margin-bottom: 0;

    color: #74581F;

    font-size: 14px;
}


/* =========================================================
   18. RELATED TRENDING GAMES
========================================================= */

.mct-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.mct-related-card {
    min-width: 0;
    overflow: hidden;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.mct-related-card:hover {
    border-color: var(--mct-border-strong);
    box-shadow: var(--mct-shadow-hover);
    transform: translateY(-3px);
}

.mct-related-link {
    display: block;
    height: 100%;
}

.mct-related-image {
    width: 100%;
    height: 190px;

    object-fit: cover;
}

.mct-related-content {
    padding: 10px;
}

.mct-related-content h3 {
    margin-bottom: 5px;

    font-size: 18px;
    font-weight: 850;
}

.mct-related-content p {
    margin-bottom: 8px;

    font-size: 14px;
}

.mct-related-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--mct-brand);

    font-size: 13px;
    font-weight: 850;
}


/* =========================================================
   19. FAQ
========================================================= */

.mct-faq-list {
    display: grid;
    gap: 10px;
}

.mct-faq-item {
    overflow: hidden;

    border: 1px solid var(--mct-border);
    border-radius: 10px;

    background: #FFFFFF;
}

.mct-faq-item summary {
    position: relative;

    display: block;

    padding: 12px 46px 12px 12px;

    color: var(--mct-title);

    font-size: 16px;
    font-weight: 850;
    line-height: 1.5;

    cursor: pointer;
    list-style: none;
}

.mct-faq-item summary::-webkit-details-marker {
    display: none;
}

.mct-faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 10px;

    display: inline-flex;
    width: 26px;
    height: 26px;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--mct-brand-light);
    color: var(--mct-brand);

    content: "+";

    font-size: 18px;
    font-weight: 900;

    transform: translateY(-50%);
}

.mct-faq-item[open] summary::after {
    content: "−";
}

.mct-faq-content {
    padding: 0 12px 12px;
}

.mct-faq-content p {
    margin-bottom: 0;
    padding-top: 12px;

    border-top: 1px solid var(--mct-border);

    font-size: 14px;
}


/* =========================================================
   20. FINAL CTA
========================================================= */

.mct-cta {
    position: relative;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(255, 255, 255, 0.2),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #D45500 0%,
            #E8682A 100%
        );
}

.mct-cta::before {
    position: absolute;
    top: -85px;
    right: -60px;

    width: 230px;
    height: 230px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    content: "";
}

.mct-cta-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, 0.42fr);

    align-items: center;
    gap: 24px;

    padding: 28px;
}

.mct-cta-content h2 {
    margin-bottom: 8px;

    color: #FFFFFF;

    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
}

.mct-cta-content p {
    max-width: 680px;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 16px;
}

.mct-cta .mct-eyebrow {
    border-color: rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.mct-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mct-cta-actions .mct-button {
    width: 100%;
}

.mct-cta .mct-button--secondary {
    border-color: #FFFFFF;
    background: #FFFFFF;
    color: var(--mct-brand) !important;
}


/* =========================================================
   21. SCREEN READER UTILITY
========================================================= */

.mct-sr-only {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;

    border: 0 !important;
}


/* =========================================================
   22. LARGE TABLET
========================================================= */

@media (max-width: 1024px) {
    .mct-hero-inner {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.85fr);

        gap: 22px;
        min-height: 400px;
        padding: 24px;
    }

    .mct-hero-title {
        font-size: clamp(30px, 5vw, 40px);
    }

    .mct-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mct-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mct-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mct-related-card:last-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   23. TABLET
========================================================= */

@media (max-width: 900px) {
    .mct-hero-inner,
    .mct-two-column,
    .mct-two-column--reverse,
    .mct-meter-layout,
    .mct-cta-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .mct-hero-content {
        max-width: none;
    }

    .mct-hero-media {
        min-height: 300px;
    }

    .mct-hero-image {
        height: 290px;
    }

    .mct-meter-score-box {
        min-height: 250px;
    }

    .mct-times-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mct-time-card:last-child {
        grid-column: 1 / -1;
    }

    .mct-responsible-grid {
        grid-template-columns: 1fr;
    }

    .mct-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mct-cta-actions .mct-button {
        width: auto;
        flex: 1 1 180px;
    }
}


/* =========================================================
   24. MOBILE
========================================================= */

@media (max-width: 767px) {
    .okg-money-trend-page {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .mct-section,
    .mct-hero,
    .mct-summary,
    .mct-cta {
        width: calc(100% - 1px);
        max-width: 100%;

        margin-right: auto;
        margin-bottom: 20px;
        margin-left: auto;
    }

    .mct-section-inner {
        padding: 15px;
    }

    .mct-section-heading {
        margin-bottom: 18px;
        text-align: left;
    }

    .mct-section-title {
        font-size: 20px;
    }

    .mct-section-description {
        font-size: 14px;
    }

    .mct-hero-inner {
        min-height: 0;
        padding: 20px 15px;
    }

    .mct-hero-title {
        font-size: 30px;
    }

    .mct-hero-description {
        font-size: 15px;
    }

    .mct-hero-media {
        min-height: 250px;
    }

    .mct-hero-image {
        max-width: 290px;
        height: 250px;
    }

    .mct-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mct-button {
        width: 100%;
        min-width: 0;
    }

    .mct-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        padding: 15px;
    }

    .mct-summary-card {
        min-height: 135px;
        padding: 13px 8px;
    }

    .mct-summary-value {
        font-size: 24px;
    }

    .mct-meter-score-ring {
        width: 165px;
        height: 165px;
    }

    .mct-meter-score {
        font-size: 42px;
    }

    .mct-meter-scale span {
        font-size: 8px;
    }

    .mct-chart-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .mct-chart-tabs {
        width: 100%;
    }

    .mct-chart-tab {
        flex: 1 1 0;
        min-width: 0;
    }

    .mct-chart-wrap {
        min-height: 320px;
        padding: 10px;
    }

    #mctActivityChart,
    .mct-activity-chart {
        height: 270px;
    }

    .mct-times-grid,
    .mct-features-grid,
    .mct-related-grid,
    .mct-facts-grid,
    .mct-mobile-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .mct-time-card:last-child,
    .mct-related-card:last-child {
        grid-column: auto;
    }

    .mct-section-image {
        height: 280px;
    }

    .mct-step,
    .mct-trend-guide-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 10px;
    }

    .mct-step::before,
    .mct-trend-guide-icon {
        width: 40px;
        height: 40px;
    }

    .mct-responsible-notice {
        flex-direction: column;
    }

    .mct-related-image {
        height: 200px;
    }

    .mct-cta-inner {
        padding: 22px 15px;
    }

    .mct-cta-content h2 {
        font-size: 30px;
    }
}


/* =========================================================
   25. SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .mct-section-inner {
        padding: 10px;
    }

    .mct-hero-inner {
        padding: 18px 10px;
    }

    .mct-hero-title {
        font-size: 30px;
    }

    .mct-hero-tags {
        gap: 6px;
    }

    .mct-hero-tags li {
        font-size: 10px;
    }

    .mct-summary-grid {
        padding: 10px;
        gap: 8px;
    }

    .mct-summary-card {
        min-height: 125px;
    }

    .mct-summary-label {
        font-size: 8px;
    }

    .mct-summary-value {
        font-size: 20px;
    }

    .mct-summary-status {
        font-size: 8px;
    }

    .mct-meter-score-ring {
        width: 145px;
        height: 145px;
    }

    .mct-meter-score {
        font-size: 37px;
    }

    .mct-meter-bar-track {
        height: 15px;
    }

    .mct-meter-scale span {
        font-size: 7px;
    }

    .mct-chart-tab {
        padding-right: 6px;
        padding-left: 6px;
        font-size: 10px;
    }

    .mct-performance-table th,
    .mct-performance-table td {
        padding: 11px 9px;
    }

    .mct-section-image {
        height: 230px;
    }

    .mct-related-image {
        height: 175px;
    }

    .mct-faq-item summary {
        font-size: 14px;
    }

    .mct-cta-content h2 {
        font-size: 27px;
    }
}


/* =========================================================
   26. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .mct-button,
    .mct-summary-card,
    .mct-feature-card,
    .mct-related-card,
    .mct-chart-tab {
        transition: none;
    }

    .mct-button:hover,
    .mct-summary-card:hover,
    .mct-feature-card:hover,
    .mct-related-card:hover {
        transform: none;
    }
}


/* =========================================================
   27. FORCED COLORS
========================================================= */

@media (forced-colors: active) {
    .mct-section,
    .mct-hero,
    .mct-summary,
    .mct-cta,
    .mct-summary-card,
    .mct-feature-card,
    .mct-time-card,
    .mct-related-card,
    .mct-faq-item,
    .mct-performance-table,
    .mct-table-wrap {
        border: 1px solid CanvasText;
    }

    .mct-button {
        border: 1px solid ButtonText;
    }
}


/* =========================================================
   28. PRINT
========================================================= */

@media print {
    .okg-money-trend-page {
        background: #FFFFFF;
    }

    .mct-section,
    .mct-hero,
    .mct-summary,
    .mct-cta {
        box-shadow: none;
        break-inside: avoid;
    }

    .mct-buttons,
    .mct-chart-tabs,
    .mct-cta-actions {
        display: none;
    }
}