* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

body {
    font-family: 'Outfit', sans-serif;
    background: #F8F5EF;
    color: #3A2A00;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════
   HEADER
   ══════════════════════════════════ */
.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E8D7B0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 14px;
}

.header-container a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-container h1 {
    color: #C98A12;
    font-size: 1.1rem;
    font-weight: 800;
}

.header-logo {
    height: 50px;
    width: auto;
}

.announcement-bar {
    background: linear-gradient(135deg, #C98A12, #E5A93D, #F4C76B);
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════
   HERO BANNER
   ══════════════════════════════════ */
.hero-banner { width: 100%; }
.main-banner-img { width: 100%; display: block; }

/* ══════════════════════════════════
   DOWNLOAD SECTION
   ══════════════════════════════════ */
.top-download-section {
    padding: 20px 16px;
    background: #F4F8FF;
    text-align: center;
}

.top-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #C98A12, #E5A93D, #F4C76B);
    color: #fff;
    padding: 14px 32px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(201, 138, 18, 0.25);
    transition: transform 0.2s;
}

.top-download-btn:hover { transform: scale(1.03); }

/* ══════════════════════════════════
   CTA CONTACT SECTION
   ══════════════════════════════════ */
.cta-contact-section {
    text-align: center;
    padding: 36px 16px;
    background: #fff;
}

.download-container { margin-bottom: 28px; }

.btn-download, .btn-fixed-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.2s;
}

.btn-download, .btn-fixed-download, .btn-action.call-bg {
    background: linear-gradient(135deg, #C98A12, #E5A93D, #F4C76B);
    color: #fff;
}

.btn-download:hover, .btn-fixed-download:hover { transform: scale(1.03); }

.section-heading {
    font-size: 20px;
    margin-bottom: 6px;
    color: #3A2A00;
}

.section-subtext {
    color: #8A6A2F;
    margin-bottom: 20px;
    font-size: 13px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s;
}

.btn-action:hover { transform: scale(1.03); }
.whatsapp-bg { background: #25D366; }

/* ══════════════════════════════════
   LIVE RESULTS
   ══════════════════════════════════ */
.live-results-wrapper {
    padding: 20px 14px;
}

.results-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 18px;
}

.result-category-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E8D7B0;
    box-shadow: 0 4px 16px rgba(183, 121, 31, 0.08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #fff;
    background: linear-gradient(135deg, #C98A12, #E5A93D, #F4C76B);
}

.category-header h2 {
    font-size: 16px;
    font-weight: 700;
}

.category-header i { font-size: 16px; }

/* ── Table Layout ── */
.table-head, .table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 90px;
    align-items: center;
    padding: 12px 16px;
}

.table-head {
    background: #FFF5DD;
    font-weight: 700;
    color: #5B3A00;
    border-bottom: 1px solid #E8D7B0;
    font-size: 13px;
}

.table-row {
    border-bottom: 1px solid #F3E8D0;
    font-size: 14px;
}

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

.game-title {
    font-weight: 600;
    color: #3A2A00;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-result {
    font-weight: 800;
    color: #B7791F;
    letter-spacing: 1px;
    font-size: 15px;
}

.status-badge-live, .status-badge-close {
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    white-space: nowrap;
}

.status-badge-live { background: #FFF0CC; color: #B7791F; }
.status-badge-close { background: #FEE2E2; color: #DC2626; }

/* ══════════════════════════════════
   FEATURES
   ══════════════════════════════════ */
.features-section {
    padding: 36px 16px;
}

.features-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    border: 1px solid #E8D7B0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-card h3 {
    margin-bottom: 4px;
    font-size: 15px;
    color: #3A2A00;
}

.feature-card p {
    color: #8A6A2F;
    font-size: 13px;
    line-height: 1.4;
}

/* ══════════════════════════════════
   DISCLAIMER
   ══════════════════════════════════ */
.disclaimer-section {
    padding: 0 16px 36px;
}

.disclaimer-card {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid #E8D7B0;
}

.disclaimer-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #B7791F;
    font-size: 16px;
}

.age-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #B7791F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #B7791F;
    flex-shrink: 0;
}

.disclaimer-card p {
    text-align: center;
    margin-bottom: 6px;
    font-size: 13px;
    color: #8A6A2F;
    line-height: 1.5;
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.main-footer {
    background: #fff;
    text-align: center;
    padding: 30px 16px 90px;
    border-top: 1px solid #E8D7B0;
}

.footer-logo {
    height: 45px;
    margin: 0 auto 12px;
    display: block;
}

.copyright-text {
    color: #8A6A2F;
    font-size: 12px;
}

/* ══════════════════════════════════
   FIXED FOOTER BAR
   ══════════════════════════════════ */
.fixed-footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #E8D7B0;
    padding: 10px 12px;
    z-index: 9999;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.08);
}

.fixed-footer-container {
    display: flex;
    justify-content: center;
}

.btn-fixed-download {
    width: 92%;
    max-width: 500px;
    justify-content: center;
    font-size: 15px;
    padding: 12px 20px;
}

/* ══════════════════════════════════
   MOBILE (default - < 480px)
   ══════════════════════════════════ */
.table-head { display: none; }

.table-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 14px;
}

.game-result { font-size: 16px; }

/* ══════════════════════════════════
   TABLET (481px - 768px)
   ══════════════════════════════════ */
@media (min-width: 481px) {
    .header-logo { height: 55px; }
    .header-container h1 { font-size: 1.2rem; }
    .announcement-bar { font-size: 13px; padding: 10px; }

    .table-head { display: grid; }
    .table-row { grid-template-columns: 1.5fr 1fr 90px; gap: 0; }
    .game-result { font-size: 15px; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .action-buttons { flex-direction: row; }
    .btn-action { min-width: 160px; }

    .btn-download { font-size: 16px; padding: 15px 34px; }
    .btn-fixed-download { width: 70%; font-size: 16px; }
}

/* ══════════════════════════════════
   DESKTOP (769px+)
   ══════════════════════════════════ */
@media (min-width: 769px) {
    .header-logo { height: 60px; }
    .header-container h1 { font-size: 1.4rem; }
    .header-container { padding: 14px 20px; }
    .announcement-bar { font-size: 14px; letter-spacing: 1px; }

    .table-head, .table-row { padding: 14px 20px; }
    .table-head { font-size: 14px; }
    .table-row { font-size: 15px; }
    .game-result { font-size: 16px; }
    .category-header h2 { font-size: 18px; }
    .category-header { padding: 16px 20px; }

    .results-container { grid-template-columns: 1fr; gap: 22px; }

    .features-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .feature-card { padding: 24px; }
    .feature-card h3 { font-size: 16px; }
    .feature-card p { font-size: 14px; }

    .section-heading { font-size: 22px; }
    .section-subtext { font-size: 14px; }

    .btn-download { font-size: 17px; padding: 16px 38px; }
    .btn-action { padding: 14px 28px; font-size: 15px; }
    .btn-fixed-download { width: auto; padding: 12px 50px; font-size: 17px; }

    .disclaimer-card { padding: 30px; }
    .disclaimer-title { font-size: 18px; }
    .disclaimer-card p { font-size: 14px; }
}

/* ══════════════════════════════════
   SMALL PHONES (< 360px)
   ══════════════════════════════════ */
@media (max-width: 360px) {
    .header-logo { height: 40px; }
    .header-container h1 { font-size: 0.9rem; }
    .announcement-bar { font-size: 10px; padding: 6px 8px; }

    .category-header { padding: 12px 14px; }
    .category-header h2 { font-size: 14px; }

    .table-row { padding: 10px 12px; }
    .game-title { font-size: 13px; }
    .game-result { font-size: 14px; }
    .status-badge-live, .status-badge-close { font-size: 9px; padding: 4px 8px; }

    .feature-card { padding: 16px; }
    .feature-icon { font-size: 20px; }
    .feature-card h3 { font-size: 13px; }
    .feature-card p { font-size: 12px; }

    .section-heading { font-size: 18px; }
    .btn-download { font-size: 13px; padding: 12px 22px; }
    .btn-action { font-size: 12px; padding: 10px 18px; min-width: auto; }
    .btn-fixed-download { font-size: 13px; padding: 10px 16px; }

    .disclaimer-card { padding: 18px 14px; }
    .disclaimer-title { font-size: 14px; }
    .disclaimer-card p { font-size: 12px; }
    .age-badge { width: 28px; height: 28px; font-size: 10px; }

    .copyright-text { font-size: 11px; }
}
