/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 60px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   MAIN CONTAINER (responsive width)
======================================== */
.main-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ========================================
   HEADER / LOGO
======================================== */
.site-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
    padding: 25px 20px;
    border-bottom: 4px solid #e94560;
}

.site-header img {
    height: 70px;
    width: auto;
    margin: 0 auto;
}

.site-header .tagline {
    color: #ffd700;
    font-size: 15px;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================================
   WELCOME BANNER
======================================== */
.welcome-banner {
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    text-align: center;
    padding: 14px 20px;
    border-bottom: 2px solid #ffc107;
}

.welcome-banner p {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

/* ========================================
   SEO INTRO
======================================== */
.seo-intro {
    background: #fff;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.seo-intro h1 {
    font-size: 20px;
    color: #b32424;
    text-align: center;
    margin-bottom: 10px;
}

.seo-intro h2 {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
}

/* ========================================
   LUCKY NUMBER SECTION
======================================== */
.lucky-section {
    background: #fff;
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.lucky-section h3 {
    background: linear-gradient(135deg, #e94560, #b32424);
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 20px;
    letter-spacing: 1px;
}

.lucky-grid {
    display: flex;
    flex-wrap: wrap;
}

.lucky-card {
    padding: 15px;
    text-align: center;
}

.lucky-card.golden {
    width: 35%;
    border-right: 2px solid #e94560;
}

.lucky-card.final {
    width: 65%;
}

.lucky-card h4 {
    font-size: 16px;
    color: #b32424;
    margin-bottom: 8px;
    font-weight: 700;
}

.lucky-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

/* ========================================
   FINAL ANK MARQUEE (Bottom to Top Scroll) - FIXED
======================================== */
.final-ank-marquee {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.final-ank-marquee .marquee-track {
    display: flex;
    flex-direction: column;
    will-change: transform;
    animation: finalAnkScroll var(--final-ank-duration, 12s) linear infinite;
}

.final-ank-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.final-ank-marquee .marquee-block p {
    margin: 0;
    padding: 4px 0;
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    color: #333;
}

@keyframes finalAnkScroll {
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
}

/* responsive heights */
@media (min-width: 600px) {
    .final-ank-marquee { height: 140px; }
}
@media (min-width: 900px) {
    .final-ank-marquee { height: 160px; }
}

/* ========================================
   NOTICE BOX
======================================== */
.notice-box {
    border: 2px solid #b32424;
    background: #fff5ee;
    border-radius: 10px;
    margin: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.notice-box__header {
    background: #b32424;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.notice-box__body {
    padding: 18px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
}

.notice-box__body a {
    color: #6e0b94;
    font-weight: 700;
}

.notice-box__footer {
    text-align: center;
    padding: 10px;
    font-style: italic;
    color: #888;
    border-top: 1px solid #f0d0d0;
}

/* ========================================
   LIVE RESULT
======================================== */
.live-section {
    background: #fff;
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.live-section > h4 {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 22px;
    letter-spacing: 1px;
}

.live-promo {
    background: #b80000;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 15px;
    line-height: 1.7;
    margin: 12px;
    border-radius: 8px;
}

.live-promo a {
    display: inline-block;
    background: #011e76;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 6px 25px;
    margin-top: 10px;
    font-weight: 600;
    transition: background 0.3s;
}

.live-promo a:hover {
    background: #1a3aa0;
}

.live-content {
    padding: 15px;
    text-align: center;
}

.live-content > p {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.live-item {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.live-item:last-child {
    border-bottom: none;
}

.live-item .gn {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #b32424;
}

.live-item .gr {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #006400;
    margin: 5px 0;
    letter-spacing: 2px;
}

/* ========================================
   BUTTONS
======================================== */
.btn-refresh {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
    transition: background 0.3s;
}

.btn-refresh:hover {
    background: linear-gradient(135deg, #2980b9, #1a6fa0);
}

.btn-play {
    display: block;
    max-width: 320px;
    margin: 15px auto;
    padding: 14px;
    text-align: center;
    background: linear-gradient(45deg, #ff6b6b, #ffd166, #06d6a0, #118ab2);
    background-size: 300% 300%;
    animation: gradientMove 4s ease infinite;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-panel-chart {
    display: block;
    max-width: 320px;
    margin: 15px auto;
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s;
}

.btn-panel-chart:hover {
    background: #0056b3;
}

.btn-chart {
    display: inline-block;
    padding: 7px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.3s;
}

.btn-chart:hover {
    opacity: 0.85;
}

.btn-jodi {
    background: #e94560;
}

.btn-panel {
    background: #3498db;
}

/* ========================================
   CONTACT STRIP
======================================== */
.contact-strip {
    background: #fff;
    margin: 15px;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-strip a {
    color: #522f92;
    font-weight: 700;
    font-size: 18px;
}

/* ========================================
   KEYWORDS STRIP
======================================== */
.keywords-strip {
    background: #1a1a2e;
    color: #ffd700;
    text-align: center;
    padding: 14px 20px;
    margin: 15px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 2;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========================================
   SECTION BANNER
======================================== */
.section-banner {
    background: linear-gradient(135deg, #e94560, #b32424);
    color: #fff;
    text-align: center;
    padding: 14px;
    margin: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ========================================
   RESULT CARDS GRID
======================================== */
.results-container {
    margin: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.result-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.result-card.highlighted {
    background: linear-gradient(135deg, #fff9c4, #fff176);
    border-color: #f9a825;
}

.result-card h4 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.result-card .result-number {
    font-size: 26px;
    font-weight: 800;
    color: #b32424;
    margin: 10px 0;
    letter-spacing: 3px;
}

.result-card .result-time {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.result-card .chart-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   STAR BAZAR TABLE
======================================== */
.star-bazar {
    margin: 15px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.star-bazar h4 {
    background: #87ceeb;
    text-align: center;
    padding: 12px;
    font-size: 20px;
    color: #1a1a2e;
}

.star-bazar table {
    width: 100%;
    border-collapse: collapse;
}

.star-bazar thead tr {
    background: #ffd700;
}

.star-bazar th,
.star-bazar td {
    padding: 10px 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 14px;
}

.star-bazar tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* ========================================
   AUTH SECTION
======================================== */
.auth-section {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 15px;
}

.auth-section a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    text-align: center;
    transition: transform 0.2s, opacity 0.3s;
    min-width: 140px;
}

.auth-section a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.auth-section a:first-child {
    background: linear-gradient(135deg, #28a745, #20913d);
}

.auth-section a:nth-child(2) {
    background: linear-gradient(135deg, #6f42c1, #5a2d82);
}

.auth-section a:last-child {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

/* ========================================
   SUPPORT BOX
======================================== */
.support-box {
    text-align: center;
    margin: 15px;
    padding: 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.support-box a {
    color: #6e0b94;
    font-weight: 700;
    font-size: 16px;
}

/* ========================================
   TRICK ZONE
======================================== */
.trick-zone {
    background: linear-gradient(135deg, #6f42c1, #5a2d82);
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.trick-zone h4 {
    text-align: center;
    padding: 14px;
    font-size: 16px;
}

.trick-zone h4 a {
    color: #ffd700;
}

/* ========================================
   LINK GRID
======================================== */
.link-grid {
    background: #fff;
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.link-grid h4 {
    background: #1a73e8;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 17px;
}

.link-grid a {
    display: block;
    padding: 11px 18px;
    border-bottom: 1px solid #eee;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, padding-left 0.2s;
}

.link-grid a:last-child {
    border-bottom: none;
}

.link-grid a:hover {
    background: #f0f7ff;
    padding-left: 25px;
}

/* ========================================
   CHART SECTION
======================================== */
.chart-section {
    background: #fff;
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.chart-section h6 {
    background: #7b1fa2;
    color: #ffd700;
    text-align: center;
    padding: 12px;
    font-size: 17px;
}

.chart-section a {
    display: block;
    padding: 11px 18px;
    border-bottom: 1px solid #f0e6f6;
    color: #7b1fa2;
    font-size: 14px;
    transition: background 0.2s, padding-left 0.2s;
}

.chart-section a:last-child {
    border-bottom: none;
}

.chart-section a:hover {
    background: #f3e5f5;
    padding-left: 25px;
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    margin: 15px;
}

.faq-card {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-card label {
    display: block;
    padding: 14px 18px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a2e;
    border-left: 4px solid #e94560;
    transition: background 0.2s;
}

.faq-card label:hover {
    background: #f0f0f0;
}

.faq-card .card-body {
    padding: 14px 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* ========================================
   CONTENT SECTION
======================================== */
.content-section {
    background: #fff;
    margin: 15px;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.content-section .section-title {
    background: linear-gradient(135deg, #e94560, #b32424);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    margin: 20px 0 12px;
    text-align: center;
}

.content-section .section-title:first-child {
    margin-top: 0;
}

.content-section p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-section i {
    display: block;
    color: #b32424;
    font-size: 14px;
    margin-bottom: 12px;
    font-style: italic;
}

.content-section a {
    color: #1a73e8;
    font-weight: 600;
}

/* ========================================
   ABOUT SCROLL BOX
======================================== */
.about-scroll {
    height: 200px;
    overflow-y: auto;
    background: #f8f9fa;
    padding: 18px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin: 15px 0;
}

.about-scroll p {
    margin-bottom: 10px;
}

.about-scroll b {
    color: #1a1a2e;
}

/* ========================================
   DISCLAIMER
======================================== */
.disclaimer {
    background: #fff3cd;
    margin: 15px;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #ffc107;
}

.disclaimer h6 {
    text-align: center;
    color: #b32424;
    margin-bottom: 10px;
    font-size: 16px;
}

.disclaimer p {
    font-size: 12px;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    text-align: center;
    padding: 20px;
    margin: 15px;
}

.site-footer .brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.site-footer p {
    font-size: 13px;
    color: #777;
    line-height: 2;
}

.site-footer a {
    color: #1a73e8;
}

.powered-by {
    background: #1a1a2e;
    color: #ffd700;
    text-align: center;
    padding: 12px;
    margin: 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   WHATSAPP FLOAT
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ========================================
   BOTTOM REFRESH BUTTON
======================================== */
.bottom-refresh {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e94560, #b32424);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    z-index: 999;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.bottom-refresh:hover {
    background: linear-gradient(135deg, #b32424, #8a000c);
}

/* ========================================
   RESPONSIVE — TABLET (min-width: 600px)
======================================== */
@media (min-width: 600px) {
    .site-header img {
        height: 85px;
    }

    .site-header .tagline {
        font-size: 17px;
    }

    .seo-intro h1 {
        font-size: 24px;
    }

    .seo-intro h2 {
        font-size: 15px;
    }

    .lucky-section h3 {
        font-size: 22px;
    }

    .lucky-card h4 {
        font-size: 18px;
    }

    .lucky-card p,
    .final-ank-marquee .marquee-inner p {
        font-size: 15px;
    }

    .final-ank-marquee {
        height: 140px;
    }

    .results-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .result-card .result-number {
        font-size: 28px;
    }

    .star-bazar th,
    .star-bazar td {
        padding: 12px 18px;
        font-size: 15px;
    }

    .auth-section a {
        padding: 14px 35px;
        font-size: 16px;
    }

    .link-grid a,
    .chart-section a {
        font-size: 15px;
        padding: 13px 20px;
    }

    .content-section .section-title {
        font-size: 19px;
    }

    .content-section p {
        font-size: 15px;
    }

    .faq-card label {
        font-size: 16px;
    }

    .faq-card .card-body {
        font-size: 15px;
    }
}

/* ========================================
   RESPONSIVE — DESKTOP (min-width: 900px)
======================================== */
@media (min-width: 900px) {
    .main-wrapper {
        padding: 0 20px;
    }

    .site-header {
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 25px;
    }

    .site-header img {
        height: 90px;
    }

    .site-header .tagline {
        font-size: 18px;
        margin-top: 0;
    }

    .seo-intro {
        padding: 30px 40px;
    }

    .seo-intro h1 {
        font-size: 28px;
    }

    .seo-intro h2 {
        font-size: 16px;
        max-width: 800px;
        margin: 0 auto;
    }

    .lucky-grid {
        flex-wrap: nowrap;
    }

    .lucky-card.golden {
        width: 30%;
    }

    .lucky-card.final {
        width: 70%;
    }

    .lucky-card h4 {
        font-size: 20px;
    }

    .final-ank-marquee {
        height: 160px;
    }

    .final-ank-marquee .marquee-inner p {
        font-size: 16px;
    }

    .notice-box {
        max-width: 650px;
        margin: 20px auto;
    }

    .live-section {
        max-width: 800px;
        margin: 20px auto;
    }

    .live-item .gr {
        font-size: 28px;
    }

    .results-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .result-card {
        padding: 22px;
    }

    .result-card h4 {
        font-size: 19px;
    }

    .result-card .result-number {
        font-size: 30px;
    }

    .star-bazar {
        max-width: 700px;
        margin: 20px auto;
    }

    .star-bazar th,
    .star-bazar td {
        font-size: 16px;
        padding: 14px 20px;
    }

    .auth-section {
        gap: 15px;
    }

    .auth-section a {
        padding: 14px 40px;
        font-size: 16px;
        min-width: 180px;
    }

    /* Two-column layout for link grids */
    .link-grid-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 15px;
    }

    .link-grid-row .link-grid,
    .link-grid-row .chart-section {
        margin: 0;
    }

    .content-section {
        padding: 35px 40px;
    }

    .content-section .section-title {
        font-size: 20px;
    }

    .content-section p {
        font-size: 15px;
        max-width: 800px;
    }

    .disclaimer {
        max-width: 800px;
        margin: 20px auto;
    }

    .disclaimer p {
        font-size: 13px;
    }

    .faq-section {
        max-width: 900px;
        margin: 20px auto;
    }

    .bottom-refresh {
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 10px 10px 0 0;
    }
}

/* ========================================
   RESPONSIVE — LARGE DESKTOP (min-width: 1200px)
======================================== */
@media (min-width: 1200px) {
    .results-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .seo-intro h1 {
        font-size: 32px;
    }

    .section-banner {
        font-size: 22px;
        padding: 18px;
    }

    .site-header img {
        height: 95px;
    }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE (max-width: 400px)
======================================== */
@media (max-width: 400px) {
    .lucky-grid {
        flex-direction: column;
    }

    .lucky-card.golden {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #e94560;
    }

    .lucky-card.final {
        width: 100%;
    }

    .result-card .result-number {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .result-card h4 {
        font-size: 15px;
    }

    .auth-section a {
        width: 100%;
        min-width: auto;
    }

    .chart-links {
        flex-direction: column;
        gap: 8px;
    }

    .btn-chart {
        width: 100%;
        padding: 10px;
    }

    .site-header .tagline {
        font-size: 13px;
    }

    .live-item .gr {
        font-size: 20px;
    }
}
/* ========================================
   MOBILE REFRESH BUTTON (Bottom-Left Corner)
======================================== */
.mobile-refresh {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #b32424);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 22px;
    line-height: 1;
}

.mobile-refresh:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.mobile-refresh:active {
    transform: scale(0.95);
}

/* Spin animation on tap */
.mobile-refresh .refresh-icon {
    display: inline-block;
    transition: transform 0.5s ease;
}

.mobile-refresh:active .refresh-icon {
    transform: rotate(360deg);
}

/* ===== Show/Hide based on screen ===== */

/* Mobile: show circular button, hide full-width bar */
@media (max-width: 768px) {
    .mobile-refresh {
        display: flex;
    }

    .bottom-refresh {
        display: none;
    }

    /* Adjust WhatsApp to right side so no overlap */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        left: auto;
    }
}

/* Desktop: hide circular button, show full-width bar */
@media (min-width: 769px) {
    .mobile-refresh {
        display: none;
    }

    .bottom-refresh {
        display: block;
    }
}