* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #030506;
    color: #e9e9e9;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

.wrap {
    width: min(1080px, 92%);
    margin: auto;
}


/* =========================
   TOP WARNING
========================= */

.top-warning {
    background: #F1B417;
    border-bottom: 1px solid #4c4a25;
    color: #000000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 7px 12px;
}


/* =========================
   HEADER / NAVBAR
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 5, 6, 0.95);
    border-bottom: 1px solid #263136;
    backdrop-filter: blur(10px);
}

.nav-wrap {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #c99c2a;
    border-radius: 7px;
    background: #17130b;
    color: #e4b93c;
    font-weight: 900;
    font-size: 16px;
}

.brand b {
    display: block;
    font-size: 21px;
}

.brand small {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #8a8d88;
}

nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-btn {
    background: #e3af28;
    color: #0a0a08;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 800;
    border: 1px solid #f2cf63;
}

.nav-btn:hover,
.nav-btn.active {
    background: #f2cf63;
}


/* =========================
   SITE MARQUEE
========================= */

.site-marquee {
    background: #000000;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 1px solid #263136;
}

.marquee-track {
    display: inline-block;
    padding-left: 100%;
    animation: gnp-marquee-scroll 32s linear infinite;
    color: #e3af28;
    font-weight: 600;
    font-size: 14px;
}

@keyframes gnp-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* =========================
   HERO SECTION
========================= */

.hero {
    padding: 36px 0 18px;
}

.hero-inner {
    max-width: 760px;
    margin: auto;
    text-align: center;
    padding: 40px 24px 30px;
    background: radial-gradient( circle at 50% 20%, #1c2828, #0b1011 62%, #050606);
    border: 1px solid #1f3b3d;
    border-radius: 8px;
    box-shadow: 0 0 35px #000;
}

.eyebrow {
    color: #d6b33d;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.hero h1 {
    font-size: 45px;
    line-height: 1.02;
    margin: 10px 0 12px;
    color: #fff;
}

.hero h1 strong {
    color: #f4c93c;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 20px;
    color: #aab0ad;
    font-size: 19px;
}

.hero-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
}


/* =========================
   BUTTONS
========================= */

.gold-btn,
.dark-btn,
.primary-cta,
.row-btn,
.bookmark button {
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    padding: 9px 16px;
    font-weight: 800;
    font-size: 17px;
}

.gold-btn,
.primary-cta,
.bookmark button {
    background: #e3af28;
    color: #080909;
    border: 1px solid #f2cf63;
}

.dark-btn {
    border: 1px solid #45504e;
    color: #eee;
    background: #0d1314;
}


/* =========================
   MARKET PILLS
========================= */

.market-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 18px;
}

.market-pills span {
    font-size: 23px;
    font-weight: 700;
    padding: 4px 8px;
    background: #101c1e;
    border: 1px solid #244244;
    border-radius: 4px;
    color: #8dd2d0;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-box {
    display: flex;
    justify-content: center;
}

.whatsapp-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
}

.whatsapp-fab {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 500;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    animation: wa-pulse 2.2s infinite;
}

@keyframes wa-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 6px 18px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 6px 18px rgba(37, 211, 102, 0.5);
    }
}


/* =========================
   NOTICE
========================= */

.notice {
    margin-top: 18px;
    background: #0b1b1c;
    border: 1px solid #184044;
    border-radius: 5px;
    padding: 14px;
}

.notice-title {
    font-weight: 900;
    color: #f14141;
    font-size: 23px;
}

.notice p {
    font-size: 20px;
    color: #adb7b3;
    margin: 5px 0 12px;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.notice-grid div {
    border: 1px solid #213638;
    background: #081112;
    padding: 9px;
}

.notice-grid b,
.notice-grid span {
    display: block;
}

.notice-grid b {
    color: #66c6b8;
    font-size: 16px;
}

.notice-grid span {
    font-size: 15px;
    color: #999;
}


/* =========================
   HIGHLIGHT
========================= */

.highlight {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 14px 18px;
    background: linear-gradient( 90deg, #102417, #16170e);
    border: 1px solid #344326;
    border-radius: 4px;
}

.highlight h2 {
    font-size: 21px;
    margin: 2px 0;
}

.highlight p {
    margin: 0;
    color: #999;
    font-size: 16px;
}


/* =========================
   TAGS
========================= */

.tag,
.mini-tag {
    display: inline-block;
    background: #e6b932;
    color: #171205;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 900;
}


/* =========================
   SECTION
========================= */

.section {
    margin-top: 28px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.section-head h2,
.section-title h2 {
    margin: 2px 0;
    font-size: 28px;
}

.section-head p,
.chart-box .section-head p {
    font-size: 16px;
    color: #8f9896;
    margin: 3px 0;
}


/* =========================
   CLOCK
========================= */

.clock {
    min-width: 115px;
    text-align: right;
}

.clock span {
    display: block;
    font-size: 21px;
    color: #e9bf3a;
    font-weight: 900;
}

.clock small {
    color: #777;
    font-size: 15px;
}


/* =========================
   RESULT CARDS
========================= */

.result-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.result-card {
    position: relative;
    background: linear-gradient( 145deg, #122021, #080c0d);
    border: 1px solid #284245;
    border-radius: 5px;
    padding: 12px;
    text-align: center;
    min-height: 170px;
    box-shadow: inset 0 0 25px #000;
}

.result-card:nth-child(3n) {
    border-color: #3e4a25;
}

.card-top {
    display: flex;
    justify-content: space-between;
    color: #81908e;
    font-size: 14px;
}

.result-card h3 {
    font-size: 19px;
    margin: 14px 0 3px;
    color: #f1f1e8;
}

.result-card p {
    font-size: 15px;
    color: #8f9692;
    margin: 0;
}

.big-number {
    display: block;
    color: #f2cf42;
    font-size: 44px;
    line-height: 1;
    margin: 10px 0;
}

.card-foot {
    border-top: 1px solid #263334;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    color: #707a78;
    font-size: 14px;
}

.card-foot a {
    color: #e2b532;
    text-decoration: none;
}


/* =========================
   BOARD
========================= */

.board,
.chart-box {
    background: #070a0a;
    border: 1px solid #4c431d;
    border-radius: 6px;
    overflow: hidden;
}

.board-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 18px 12px;
    background: linear-gradient( 120deg, #142427, #1b1a10);
}

.board-head h2 {
    margin: 2px 0;
    font-size: 28px;
    color: #eee0a1;
}

.board-head p {
    font-size: 16px;
    color: #7d8884;
    margin: 0;
}

.board-switch {
    display: flex;
    gap: 4px;
}

.board-switch button,
.month-nav button {
    border: 1px solid #46463b;
    background: #101414;
    color: #aaa;
    padding: 7px 11px;
    border-radius: 4px;
    font-size: 15px;
}

.board-switch button.active {
    background: #d9aa2b;
    color: #0a0a08;
}


/* =========================
   RESULT TABLE
   (white background per request — dark theme stays
   on the rest of the page, only the data tables go white
   like a real result board)
========================= */

.table-scroll {
    overflow: auto;
    background: #ffffff;
    border-radius: 0 0 6px 6px;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    background: #ffffff;
}

.result-table thead {
    background: #12a893;
}

.result-table th {
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    padding: 14px 12px;
    letter-spacing: 0.4px;
}

.result-table td {
    border-top: 1px solid #ececec;
    padding: 13px 12px;
    font-size: 17px;
    color: #17181a;
}

.result-table td:first-child {
    width: 34%;
}

.result-table td small {
    display: block;
    color: #8a8f93;
    font-size: 14px;
}

.result-table tbody tr:hover td {
    background: #f6f7f8;
}

.result-table tr.hot td {
    background: #F1B417;
    color: #14150f;
    font-weight: 700;
}

.result-table tr.hot td small {
    color: #4a4212;
}


/* =========================
   CHIPS
   (kept as colored badges so they still pop against the
   new white table rows)
========================= */

.time-chip {
    background: #e7f8f5;
    color: #0e7c6c;
    border: 1px solid #bfe9e1;
    padding: 5px 11px;
    border-radius: 10px;
    font-size: 14px;
}

.number-chip {
    display: inline-grid;
    place-items: center;
    min-width: 48px;
    padding: 6px 11px;
    background: #eaf6d9;
    border: 1px solid #b9d98a;
    color: #3f6a12;
    border-radius: 6px;
    font-weight: 900;
    font-size: 17px;
}

.number-chip.muted {
    color: #a3a7ab;
    background: #f1f2f3;
    border-color: #dfe1e3;
}

.status {
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 9px;
}

.status.green {
    background: #e3f7ea;
    color: #1e8a48;
}

.status.blue {
    background: #e5f4fb;
    color: #1587a3;
}

.row-btn {
    padding: 7px 13px;
    background: #dcae2e;
    color: #10100a;
    font-size: 14px;
}


/* =========================
   INFO CARD
========================= */

.info-card {
    margin-top: 28px;
    padding: 18px;
    background: linear-gradient( 130deg, #11150f, #070a0b);
    border: 1px solid #59491c;
    border-radius: 6px;
}

.info-card h2 {
    margin: 3px 0;
    font-size: 26px;
}

.info-card p {
    font-size: 16px;
    color: #999;
}


/* =========================
   TIMING
========================= */

.timing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 12px;
}

.timing-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    background: #0b1112;
    border: 1px solid #1c2c2d;
    border-left: 2px solid #2f7473;
    font-size: 15px;
}

.timing-row span {
    color: #e1b738;
}


/* =========================
   CHART
========================= */

.chart-box {
    padding: 18px;
}

.month-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.month-nav strong {
    font-size: 17px;
    color: #ddd;
}

.chart-scroll {
    max-height: 60vh;
    background: #ffffff;
    border-radius: 0 0 6px 6px;
}

.chart-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
    background: #ffffff;
}

.chart-table th {
    position: sticky;
    top: 0;
    background: #191410;
    color: #e6c13e;
    font-size: 16px;
    padding: 12px 10px;
}

.chart-table td {
    text-align: center;
    border: 1px solid #ececec;
    padding: 11px 9px;
    color: #26282b;
    font-size: 17px;
}

.chart-table td:first-child {
    color: #8a8f93;
    text-align: left;
}

.chart-table tr:nth-child(even) td {
    background: #f7f8f9;
}

.chart-table tr.chart-today td {
    background: #fff3d0;
}


/* =========================
   MONTHLY CHART — 3 GROUPS
   12 markets split into 3 tables of 4 columns each so no
   single table gets too wide; every group has its own
   month navigator.
========================= */

.chart-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.chart-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px 4px;
}

.chart-group-head h3 {
    margin: 0;
    font-size: 19px;
    color: #eee0a1;
}

.chart-group-head .month-nav strong {
    min-width: 84px;
    text-align: center;
    display: inline-block;
}


/* =========================
   LONG INFORMATION
========================= */

.long-info {
    margin-top: 34px;
}

.section-title {
    margin-bottom: 12px;
}

.prose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.prose-grid article {
    background: #0a1112;
    border: 1px solid #1c2b2c;
    padding: 16px;
    border-radius: 5px;
}

.prose-grid h3 {
    margin: 0 0 7px;
    color: #e3c449;
    font-size: 19px;
}

.prose-grid p {
    margin: 7px 0;
    color: #929b98;
    font-size: 17px;
}


/* =========================
   QUICK LINKS
========================= */

.quick-links {
    margin-top: 32px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.link-grid a {
    position: relative;
    text-decoration: none;
    color: #eee;
    background: linear-gradient( 135deg, #0c1718, #120d18);
    border: 1px solid #283638;
    padding: 14px;
    border-radius: 5px;
}

.link-grid a:nth-child(2n) {
    border-color: #3b263e;
}

.link-grid b,
.link-grid span {
    display: block;
}

.link-grid b {
    font-size: 18px;
    color: #e9c440;
}

.link-grid span {
    font-size: 15px;
    color: #8c9491;
}

.link-grid i {
    position: absolute;
    right: 12px;
    top: 17px;
    color: #e3b72f;
    font-style: normal;
}


/* =========================
   FAQ
========================= */

.faq {
    margin-top: 34px;
}

.faq details {
    background: #0a1011;
    border: 1px solid #1e2a2b;
    margin: 6px 0;
    border-radius: 4px;
    padding: 0 13px;
}

.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 12px 0;
    font-size: 17px;
    color: #ddd;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary span {
    float: right;
    color: #e0b635;
    font-size: 21px;
}

.faq p {
    border-top: 1px solid #1b2728;
    margin: 0;
    padding: 10px 0;
    color: #8e9895;
    font-size: 16px;
}


/* =========================
   TWO COLUMN
========================= */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
}


/* =========================
   LEGAL BOX
========================= */

.legal-box {
    background: #0a1112;
    border: 1px solid #1e3030;
    border-radius: 5px;
    padding: 17px;
}

.legal-box h2 {
    margin: 2px 0 8px;
    font-size: 23px;
}

.legal-box p,
.legal-box li {
    font-size: 16px;
    color: #929a97;
}

.legal-box ul {
    padding-left: 18px;
}


/* =========================
   BOOKMARK
========================= */

.bookmark {
    margin-top: 30px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient( 90deg, #161b0e, #0b1112);
    border: 1px solid #3d3c21;
    border-radius: 5px;
}

.bookmark h2 {
    font-size: 22px;
    margin: 3px 0;
}

.bookmark p {
    font-size: 16px;
    color: #8d9693;
    margin: 0;
}

.bookmark button {
    cursor: pointer;
}


/* =========================
   CONTACT / KHAIWALI PROMO CARD
   (matches the "अपनी खाईवाली का पर्चा डलवाना हो" banner —
   built with real HTML/CSS so it works today; swap the
   inner .contact-card-art block for an <img> tag once you
   have the final graphic ready.)
========================= */

.contact-card {
    margin-top: 22px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(160deg, #14171a, #05070a);
    border: 2px solid #e3af28;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
}

.contact-card-pill {
    display: inline-block;
    background: linear-gradient(90deg, #f4c93c, #e3af28);
    color: #1a1300;
    font-weight: 900;
    font-size: 15px;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.contact-card-line {
    background: #0b0d10;
    border: 1px solid #3a3120;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 10px;
}

.contact-card-line b {
    color: #f4c93c;
    font-size: 21px;
}

.contact-card-line p {
    color: #dcdcdc;
    font-size: 17px;
    margin: 4px 0 0;
}

.contact-card-divider {
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    margin: 4px 0;
}

.contact-card-sites {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 14px 0;
}

.contact-card-sites span {
    background: #101414;
    border: 1px solid #2c3a3a;
    color: #8dd2d0;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
}

.contact-card .whatsapp-btn {
    margin-top: 6px;
}

.contact-card-time {
    color: #777;
    font-size: 13px;
    margin-top: 12px;
}


/* =========================
   CONTACT STRIP
   (matches the green "खाईवाल का पर्चा लगवाने के लिए
   मैसेज करे" bar)
========================= */

.contact-strip {
    margin: 26px auto;
    max-width: 900px;
    background: linear-gradient(180deg, #1c6b2c, #0e3517);
    border: 1px solid #2f6d3f;
    box-shadow: inset 0 0 0 1px #3a86ff33;
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
}

.contact-strip p {
    color: #eafff0;
    font-weight: 700;
    font-size: 16px;
    margin: 4px 0;
}


/* =========================
   MARKET HERO BOX
   (single-market spotlight box — used on the
   Disawar page, reusable for any other single-market page)
========================= */

.market-hero {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(160deg, #14171a, #05070a);
    border: 2px solid #e3af28;
    border-radius: 12px;
    padding: 26px 22px;
    text-align: center;
}

.market-hero h2 {
    font-size: 28px;
    color: #f4c93c;
    margin: 0 0 4px;
    letter-spacing: 0.5px;
}

.market-hero .market-number {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin: 10px 0;
    line-height: 1;
}

.market-hero .market-number small {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #9aa39e;
    margin-bottom: 6px;
}

.market-hero .market-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 10px 0 18px;
}

.market-hero .market-meta span {
    background: #101414;
    border: 1px solid #2c3a3a;
    color: #8dd2d0;
    font-size: 15px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 20px;
}


/* =========================
   RATE CARDS
========================= */

.rate-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.rate-card {
    background: #0e1214;
    border: 1px solid #2c3a3a;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
}

.rate-card b {
    display: block;
    color: #8dd2d0;
    font-size: 16px;
    margin-bottom: 6px;
}

.rate-card strong {
    font-size: 26px;
    color: #f4c93c;
}


/* =========================
   GLOW PROMO
   (glowing WhatsApp CTA for offer-style banners)
========================= */

.glow-promo {
    max-width: 640px;
    margin: 22px auto 0;
    background: linear-gradient(160deg, #1a1206, #06070a);
    border: 2px solid #f4c93c;
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}

.glow-promo p {
    color: #f1f1e8;
    font-size: 19px;
    font-weight: 800;
    margin: 6px 0;
}

.glow-promo .rate-line {
    color: #ffd23f;
    font-size: 20px;
    font-weight: 900;
    margin: 10px 0;
}

.glow-promo .whatsapp-btn {
    margin-top: 10px;
    animation: gnp-glow 1.6s ease-in-out infinite;
}

@keyframes gnp-glow {
    0%,
    100% {
        box-shadow: 0 0 8px 0 rgba(37, 211, 102, 0.55);
    }
    50% {
        box-shadow: 0 0 22px 6px rgba(37, 211, 102, 0.85);
    }
}


/* =========================
   SINGLE-MARKET CHART
   (used on per-market pages — two independent tables,
   each with its own month + year selector)
========================= */

.single-charts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 760px) {
    .single-charts {
        grid-template-columns: 1fr 1fr;
    }
}

.single-chart-box {
    background: #0e1214;
    border: 1px solid #2c3a3a;
    border-radius: 10px;
    overflow: hidden;
}

.single-chart-head {
    padding: 14px 16px;
    border-bottom: 1px solid #2c3a3a;
}

.single-chart-head h3 {
    margin: 0 0 10px;
    color: #eee0a1;
    font-size: 17px;
}

.single-chart-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.single-chart-form select {
    background: #101414;
    color: #e9e9e9;
    border: 1px solid #3a4646;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 15px;
}

.single-chart-form button {
    background: #d9aa2b;
    color: #0a0a08;
    border: none;
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.single-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.single-table th {
    background: #12a893;
    color: #ffffff;
    font-size: 16px;
    padding: 12px;
    text-align: left;
}

.single-table td {
    padding: 12px;
    font-size: 17px;
    color: #17181a;
    border-top: 1px solid #ececec;
}

.single-table tr:nth-child(even) td {
    background: #f7f8f9;
}

.single-table tr.chart-today td {
    background: #fff3d0;
}

.contact-strip .whatsapp-btn {
    margin-top: 12px;
    background: #16a34a;
}


/* =========================
   FULL SEO ARTICLE
   Long-form informative content block — separate from
   .prose-grid so it can be styled/edited on its own.
========================= */

.content-intro {
    max-width: 900px;
    margin: 0 auto 22px;
    text-align: center;
}

.content-intro h2 {
    font-size: 30px;
    color: #f1f1e8;
    margin: 0 0 10px;
}

.content-intro p {
    font-size: 18px;
    color: #b7bdb9;
    line-height: 1.7;
    margin: 0;
}

.full-article {
    margin-top: 34px;
    background: #0a1112;
    border: 1px solid #1c2b2c;
    border-radius: 6px;
    padding: 20px 20px 8px;
}

.full-article h2 {
    font-size: 26px;
    margin: 2px 0 6px;
    color: #f1f1e8;
}

.full-article>p.lead {
    color: #939c98;
    font-size: 17px;
    margin: 0 0 16px;
}

.article-item {
    border-top: 1px solid #182122;
    padding: 16px 0;
}

.article-item:first-of-type {
    border-top: none;
}

.article-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.icon-badge {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 18px;
    background: #e3af28;
}


/* Cycles through 8 accent colors so the guide doesn't look flat —
   edit these 8 hex values to change the whole palette at once */

.article-item:nth-of-type(8n+1) .icon-badge {
    background: #e3af28;
}

.article-item:nth-of-type(8n+2) .icon-badge {
    background: #2fb8a6;
}

.article-item:nth-of-type(8n+3) .icon-badge {
    background: #4d8ef2;
}

.article-item:nth-of-type(8n+4) .icon-badge {
    background: #9b6fe0;
}

.article-item:nth-of-type(8n+5) .icon-badge {
    background: #e0637a;
}

.article-item:nth-of-type(8n+6) .icon-badge {
    background: #5cb85c;
}

.article-item:nth-of-type(8n+7) .icon-badge {
    background: #e0943f;
}

.article-item:nth-of-type(8n+0) .icon-badge {
    background: #3fb0c9;
}

.article-item-head h3 {
    margin: 0;
    font-size: 20px;
    color: #e9c542;
}

.article-item p {
    font-size: 18px;
    color: #a9b1ad;
    margin: 0 0 6px;
}

.article-item p b,
.article-item p strong {
    color: #f1f1e8;
}


/* =========================
   FOOTER
========================= */

footer {
    margin-top: 45px;
    border-top: 1px solid #20292a;
    background: #050707;
    padding-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.footer-grid p,
.footer-grid a {
    font-size: 16px;
    color: #777;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.footer-grid h4 {
    font-size: 16px;
    color: #dcb63a;
    margin: 0 0 8px;
}

.footer-bottom {
    width: min(1080px, 92%);
    margin: 25px auto 0;
    padding: 12px 0;
    border-top: 1px solid #151c1d;
    display: flex;
    justify-content: space-between;
    color: #5c6462;
    font-size: 14px;
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 800px) {
    .nav-wrap {
        height: auto;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 10px 0;
    }
    .site-logo {
        width: 40px;
        height: 40px;
    }
    nav {
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    nav::-webkit-scrollbar {
        display: none;
    }
    .nav-btn {
        padding: 7px 12px;
        font-size: 13px;
        white-space: nowrap;
        flex: 0 0 auto;
    }
    .hero h1 {
        font-size: 34px;
    }
    .result-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .timing-grid,
    .prose-grid,
    .two-col {
        grid-template-columns: 1fr;
    }
    .link-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .notice-grid {
        grid-template-columns: 1fr;
    }
    .highlight {
        flex-direction: column;
        align-items: flex-start;
    }
    .board-head,
    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .clock {
        text-align: left;
    }
    .chart-scroll {
        max-height: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid>div:first-child {
        grid-column: 1 / -1;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .wrap {
        width: 94%;
    }
    .site-logo {
        width: 34px;
        height: 34px;
    }
    .nav-btn {
        padding: 6px 9px;
        font-size: 12px;
    }
    .hero-inner {
        padding: 28px 14px;
    }
    .result-cards {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .result-card {
        padding: 9px;
        min-height: 155px;
    }
    .big-number {
        font-size: 34px;
    }
    .link-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        display: block;
    }
    .footer-bottom span {
        display: block;
        margin: 4px 0;
    }
}


/* =========================
   SITE LOGO
========================= */

.site-logo {
    width: 58px;
    height: 58px;
    display: block;
    object-fit: contain;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}