/* =====================================================
   KOLKATA RESULTS
   MODERN GLASSMORPHIC DESIGN
===================================================== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Inter",
        "Noto Sans Bengali",
        Arial,
        sans-serif;

    min-height: 100vh;

    color: #ffffff;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(0, 174, 255, .30),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 25%,
            rgba(255, 0, 128, .30),
            transparent 30%
        ),

        radial-gradient(
            circle at 50% 90%,
            rgba(0, 255, 200, .15),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #07152f,
            #101c46 40%,
            #25124a 70%,
            #071c3d
        );

    background-attachment: fixed;

}


/* =====================================================
   HEADER
===================================================== */


.main-header {

    background:
        linear-gradient(
            135deg,
            #ffc400,
            #ffca28,
            #ffb300
        );

    min-height: 105px;

    border-bottom: 2px solid
        rgba(255,255,255,.5);

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.35);

}


.header-container {

    width: 94%;

    max-width: 1200px;

    min-height: 105px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo-area {

    display: flex;

    align-items: center;

    gap: 15px;

    text-decoration: none;

    color: #080808;

}


.logo-box {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    font-weight: 900;

    font-style: italic;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ff6d00,
            #f50057
        );

    border: 5px solid #111;

    box-shadow:
        0 5px 15px
        rgba(0,0,0,.35);

}


.logo-text h1 {

    font-size: 30px;

    font-weight: 900;

    letter-spacing: 1px;

}


.logo-text p {

    margin-top: 4px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

}


.admin-login {

    padding: 12px 22px;

    border-radius: 30px;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            #050b18,
            #172554
        );

    border: 1px solid
        rgba(255,255,255,.35);

    box-shadow:
        0 7px 20px
        rgba(0,0,0,.35);

    transition: .25s;

}


.admin-login:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.5);

}


.user-icon {

    margin-right: 6px;

}


/* =====================================================
   NAVIGATION
===================================================== */


.navigation {

    background:
        rgba(2, 8, 25, .94);

    border-bottom:
        1px solid
        rgba(255,255,255,.15);

    position: sticky;

    top: 0;

    z-index: 100;

    backdrop-filter:
        blur(15px);

}


.nav-container {

    max-width: 1200px;

    width: 94%;

    margin: auto;

    min-height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

}


.nav-item {

    padding: 9px 16px;

    border-radius: 9px;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: .25s;

    border: 1px solid transparent;

}


.nav-item:hover {

    background:
        rgba(255,255,255,.08);

    color: #ffd000;

}


.nav-item.active {

    border:
        1px solid #ffd000;

    color: #ffd000;

}


/* =====================================================
   MAIN
===================================================== */


.main-container {

    width: 94%;

    max-width: 1200px;

    margin: 35px auto 70px;

}


/* =====================================================
   LIVE SECTION
===================================================== */


.live-section {

    min-height: 95px;

    padding: 20px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-radius: 22px;

    background:
        linear-gradient(
            100deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.04)
        );

    border:
        1px solid
        rgba(255,255,255,.35);

    box-shadow:
        0 0 25px
        rgba(120,100,255,.35);

    backdrop-filter:
        blur(18px);

}


.live-title {

    font-size: 29px;

    font-weight: 700;

}


.live-badge {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 20px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ff0000,
            #d40000
        );

    box-shadow:
        0 0 25px
        rgba(255,0,0,.65);

}


.live-dot {

    width: 17px;

    height: 17px;

    background: #ffffff;

    border-radius: 50%;

    animation:
        livePulse 1s infinite;

}


@keyframes livePulse {

    0% {

        transform: scale(.8);

        opacity: .6;

    }

    50% {

        transform: scale(1.15);

        opacity: 1;

    }

    100% {

        transform: scale(.8);

        opacity: .6;

    }

}


.live-badge strong {

    font-size: 22px;

    letter-spacing: 1px;

}


.current-time {

    display: flex;

    align-items: center;

    gap: 10px;

    padding-left: 20px;

    border-left:
        1px solid
        rgba(255,255,255,.25);

}


.clock-icon {

    font-size: 32px;

}


.current-time strong {

    display: block;

    font-size: 18px;

}


.current-time small {

    display: block;

    margin-top: 3px;

    opacity: .75;

}


/* =====================================================
   RESULT CARD
===================================================== */


.result-card {

    margin-top: 32px;

    padding: 12px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.04)
        );

    border:
        1px solid
        rgba(255,255,255,.45);

    box-shadow:

        0 0 25px
        rgba(0,183,255,.35),

        0 0 45px
        rgba(255,0,128,.15);

    backdrop-filter:
        blur(18px);

}


.result-header {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius:
        18px 18px 0 0;

    background:
        linear-gradient(
            135deg,
            #e31331,
            #a50018
        );

    font-size: 30px;

    font-weight: 800;

    box-shadow:
        inset 0 -1px
        rgba(255,255,255,.3);

}


.calendar-icon {

    font-size: 26px;

}


/* =====================================================
   RESULT GRID
===================================================== */


.result-grid {

    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

    overflow: hidden;

    border-radius:
        0 0 15px 15px;

}


.result-column {

    min-width: 0;

    text-align: center;

    background:
        rgba(255,255,255,.90);

    color: #111;

    border-right:
        1px solid
        rgba(255,255,255,.8);

}


.result-column:last-child {

    border-right: none;

}


.result-market {

    min-height: 52px;

    padding: 15px 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            #090909,
            #1b1b1b
        );

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

}


.result-value {

    padding: 25px 5px;

    font-size: 32px;

    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #ece9f4
        );

}


.result-time {

    padding: 8px;

    font-size: 11px;

    font-weight: 700;

    color: #555;

}


/* =====================================================
   TRUST MESSAGE
===================================================== */


.trust-message {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius:
        0 0 18px 18px;

    background:
        linear-gradient(
            90deg,
            #008b16,
            #00a91a,
            #008b16
        );

    font-family:
        "Noto Sans Bengali",
        sans-serif;

    font-size: 18px;

    font-weight: 600;

    box-shadow:
        0 8px 20px
        rgba(0,150,30,.3);

}


/* =====================================================
   NO RESULT
===================================================== */


.no-result {

    min-height: 220px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    color: #ffffff;

    background:
        rgba(255,255,255,.05);

}


.waiting-icon {

    font-size: 45px;

    animation:
        waiting 1.5s infinite;

}


@keyframes waiting {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


.no-result h2 {

    margin-top: 10px;

}


.no-result p {

    margin-top: 8px;

    opacity: .7;

}


.bengali-text {

    font-family:
        "Noto Sans Bengali",
        sans-serif;

}


/* =====================================================
   REFRESH
===================================================== */


.refresh-area {

    display: flex;

    justify-content: center;

    margin: 25px 0;

}


.refresh-button {

    border: none;

    cursor: pointer;

    padding: 13px 27px;

    border-radius: 30px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #000000,
            #101010
        );

    font-size: 16px;

    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.5);

    transition: .25s;

}


.refresh-button span {

    color: #ffd500;

    font-size: 25px;

    margin-right: 7px;

}


.refresh-button:hover {

    transform:
        translateY(-3px)
        scale(1.03);

}


/* =====================================================
   GLASS SECTIONS
===================================================== */


.glass-section {

    margin-top: 30px;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.04)
        );

    border:
        1px solid
        rgba(255,255,255,.35);

    box-shadow:
        0 0 30px
        rgba(0,150,255,.18);

    backdrop-filter:
        blur(15px);

}


/* =====================================================
   SECTION TITLE
===================================================== */


.section-title {

    min-height: 70px;

    padding: 12px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:
        linear-gradient(
            90deg,
            rgba(180,0,190,.6),
            rgba(70,0,130,.35)
        );

    border-bottom:
        1px solid
        rgba(255,255,255,.25);

}


.section-title > div {

    display: flex;

    align-items: center;

    gap: 15px;

}


.section-title h2 {

    font-size: 21px;

}


.section-icon {

    font-size: 32px;

}


.view-button {

    border: none;

    padding: 10px 15px;

    border-radius: 8px;

    color: #ffffff;

    background:
        rgba(0,0,0,.35);

    cursor: pointer;

}


/* =====================================================
   OLD RESULTS
===================================================== */


.old-result-list {

    padding: 10px 20px;

}


.old-result-row {

    min-height: 60px;

    display: flex;

    align-items: center;

    gap: 18px;

    border-bottom:
        1px solid
        rgba(255,255,255,.15);

    overflow-x: auto;

}


.old-date {

    min-width: 125px;

    font-weight: 700;

}


.old-number {

    min-width: 65px;

    text-align: center;

    font-weight: 800;

    font-size: 17px;

}


.old-number:nth-child(even) {

    color: #ffd000;

}


.empty-old {

    padding: 30px;

    text-align: center;

    opacity: .7;

}


/* =====================================================
   TIME TABLE
===================================================== */


.timetable-section {

    padding-bottom: 20px;

}


.time-grid {

    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

    gap: 8px;

    padding: 15px;

}


.time-box {

    text-align: center;

    overflow: hidden;

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #061329,
            #10255d
        );

    border:
        1px solid
        rgba(0,180,255,.25);

    box-shadow:
        0 5px 15px
        rgba(0,0,0,.25);

}


.time-name {

    padding: 10px 4px;

    color: #ffd000;

    font-size: 13px;

    font-weight: 800;

    border-bottom:
        1px solid
        rgba(255,255,255,.12);

}


.time-value {

    padding: 14px 3px;

    font-size: 16px;

    font-weight: 700;

}


/* =====================================================
   FOOTER
===================================================== */


.footer {

    margin-top: 50px;

    background:
        linear-gradient(
            135deg,
            #030b21,
            #071b42
        );

    border-top:
        1px solid
        rgba(255,255,255,.2);

}


.footer-container {

    width: 94%;

    max-width: 1200px;

    min-height: 130px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    align-items: center;

    gap: 20px;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-logo {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #ffca00,
            #ff6200
        );

    color: #111;

    font-size: 20px;

    font-weight: 900;

}


.footer-brand h3 {

    font-size: 16px;

}


.footer-brand p {

    margin-top: 3px;

    font-size: 10px;

    letter-spacing: 2px;

}


.footer-message {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    text-align: center;

    font-family:
        "Noto Sans Bengali",
        sans-serif;

}


.copyright {

    text-align: right;

    line-height: 1.8;

    font-size: 13px;

    opacity: .8;

}


.footer-bottom {

    min-height: 55px;

    padding: 12px 4%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,.15);

    font-size: 12px;

    opacity: .7;

}


/* =====================================================
   MOBILE
===================================================== */


@media (max-width: 900px) {

    .result-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }

    .time-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }

}


@media (max-width: 700px) {


    .main-header {

        min-height: 80px;

    }


    .header-container {

        min-height: 80px;

    }


    .logo-box {

        width: 50px;

        height: 50px;

        font-size: 21px;

    }


    .logo-text h1 {

        font-size: 18px;

    }


    .logo-text p {

        font-size: 8px;

        letter-spacing: 1.5px;

    }


    .admin-login {

        padding: 9px 12px;

        font-size: 11px;

    }


    .nav-container {

        justify-content: flex-start;

        overflow-x: auto;

        padding: 7px 0;

    }


    .nav-item {

        white-space: nowrap;

        font-size: 12px;

    }


    .live-section {

        flex-wrap: wrap;

        padding: 20px;

    }


    .live-title {

        width: 100%;

        font-size: 21px;

    }


    .current-time {

        margin-left: auto;

    }


    .result-header {

        font-size: 22px;

        min-height: 65px;

    }


    .result-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }


    .result-market {

        font-size: 10px;

    }


    .result-value {

        font-size: 24px;

        padding: 18px 3px;

    }


    .trust-message {

        font-size: 14px;

        padding: 12px;

        text-align: center;

    }


    .time-grid {

        grid-template-columns:
            repeat(4, 1fr);

    }


    .footer-container {

        grid-template-columns: 1fr;

        padding: 25px 0;

        text-align: center;

    }


    .footer-brand {

        justify-content: center;

    }


    .copyright {

        text-align: center;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

        text-align: center;

    }

}


@media (max-width: 450px) {


    .logo-text h1 {

        font-size: 15px;

    }


    .logo-text p {

        display: none;

    }


    .admin-login {

        font-size: 0;

        padding: 10px 13px;

    }


    .admin-login .user-icon {

        font-size: 18px;

        margin: 0;

    }


    .result-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .time-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .live-section {

        gap: 12px;

    }


    .live-badge {

        padding: 7px 14px;

    }


    .live-badge strong {

        font-size: 18px;

    }


    .current-time {

        padding-left: 10px;

    }


    .current-time strong {

        font-size: 14px;

    }


    .section-title h2 {

        font-size: 16px;

    }


    .view-button {

        font-size: 10px;

        padding: 8px;

    }

/* =========================
   RESULT TOTAL
========================= */

.result-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.result-equal {
    opacity: 0.55;
    font-size: 18px;
    font-weight: 700;
}

.result-total {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 34px;
    height: 34px;

    padding: 0 8px;

    border-radius: 9px;

    background: rgba(255, 193, 7, 0.15);

    border: 1px solid rgba(255, 193, 7, 0.35);

    font-size: 18px;
    font-weight: 900;
}

/* =========================================
   KOLKATA RESULTS - HOLIDAY NOTICE
========================================= */

.kr-holiday-alert {
    width: 100% !important;

    margin: 0 0 28px 0 !important;
    padding: 20px 24px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 15px !important;

    position: relative !important;

    overflow: hidden !important;

    border-radius: 16px !important;

    border: 2px solid #ffe082 !important;

    background: linear-gradient(
        135deg,
        #ffca28 0%,
        #ff9800 50%,
        #ff6f00 100%
    ) !important;

    box-shadow:
        0 10px 30px rgba(255, 111, 0, 0.35),
        0 0 20px rgba(255, 193, 7, 0.20) !important;

    color: #251300 !important;
}


/* ICON */

.kr-holiday-icon {
    width: 48px !important;
    height: 48px !important;

    min-width: 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    color: #ff6f00 !important;

    font-size: 25px !important;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.18) !important;

    animation:
        krNoticePulse 1.2s infinite !important;
}


/* TEXT */

.kr-holiday-text {
    position: relative !important;
    z-index: 5 !important;

    color: #1f1200 !important;

    font-family:
        "Noto Sans Bengali",
        Arial,
        sans-serif !important;

    font-size: 21px !important;

    font-weight: 800 !important;

    line-height: 1.7 !important;

    text-align: center !important;

    text-shadow:
        0 1px 0 rgba(255,255,255,0.30) !important;
}


/* SHINE */

.kr-holiday-alert::after {
    content: "" !important;

    position: absolute !important;

    top: 0 !important;
    left: -120% !important;

    width: 60% !important;
    height: 100% !important;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    ) !important;

    animation:
        krNoticeShine 3s infinite !important;
}


/* ICON ANIMATION */

@keyframes krNoticePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}


/* SHINE ANIMATION */

@keyframes krNoticeShine {

    0% {
        left: -120%;
    }

    60%,
    100% {
        left: 130%;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .kr-holiday-alert {
        padding: 15px 14px !important;
        gap: 10px !important;
    }

    .kr-holiday-icon {
        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;

        font-size: 21px !important;
    }

    .kr-holiday-text {
        font-size: 17px !important;
        line-height: 1.6 !important;
    }
/* =========================
   OLD RESULT WITH TOTAL
========================= */

.old-number {
    min-width: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    font-weight: 800;
    font-size: 17px;
}

.old-main-result {
    color: #ffffff;
    font-weight: 900;
}

.old-equal {
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

.old-total-result {
    min-width: 26px;
    height: 26px;

    padding: 0 6px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: rgba(255,193,7,.18);

    border: 1px solid rgba(255,193,7,.35);

    color: #ffd000;

    font-weight: 900;

.view-button {
    text-decoration: none;

/* =========================
   TODAY RESULT FINAL
========================= */

.result-waiting {
    min-height: 85px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 8px;

    color: rgba(255,255,255,.65);

    font-size: 13px;

    font-weight: 700;
}

.waiting-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #ffc107;

    box-shadow:
        0 0 0 5px rgba(255,193,7,.15);

    animation: waitingPulse 1.4s infinite;
}

@keyframes waitingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .55;
    }
}


.result-value {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    flex-wrap: wrap;
}


.result-total {
    min-width: 30px;
    height: 30px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 7px;

    border-radius: 8px;

    background:
        rgba(255,193,7,.18);

    border:
        1px solid
        rgba(255,193,7,.35);

    color: #ffd000;

    font-weight: 900;
}


.result-equal {
    opacity: .55;

    font-weight: 800;
}


@media (max-width: 700px) {

    .result-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 420px) {

    .result-grid {
        grid-template-columns:
            1fr;
    }

.result-vertical {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.main-result-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.result-total-vertical {
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #111;
}

/* MARKET MANAGEMENT BAZI TIMES */

.bazi-times-cell {
    min-width: 210px;
    vertical-align: middle;
}

.bazi-times-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 6px;
}

.bazi-time-row {
    display: grid;
    grid-template-columns: 75px 105px;
    align-items: center;
    gap: 8px;
}

.bazi-label {
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.bazi-time-row input[type="time"] {
    width: 105px;
    height: 34px;
    padding: 3px 6px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 12px;
}

@media(max-width:700px) {

    .bazi-times-cell {
        min-width: 180px;
    }

    .bazi-time-row {
        grid-template-columns: 65px 95px;
    }

    .bazi-time-row input[type="time"] {
        width: 95px;
    }

/* =========================
   RESULT ACTION AREA
========================= */

.result-action-area {
    margin: 24px auto;
    text-align: center;
}

.result-action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.refresh-result-btn,
.tips-open-btn {
    min-width: 170px;
    min-height: 50px;
    padding: 12px 22px;

    border: none;
    border-radius: 25px;

    cursor: pointer;

    font-size: 15px;
    font-weight: 800;
}

.refresh-result-btn {
    background: #171717;
    color: #fff;
}

.tips-open-btn {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #f97316
        );

    color: #fff;
}


/* =========================
   SHARE AREA
========================= */

.share-area {
    margin-top: 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}

.share-area span {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
}

.share-btn,
.download-now-btn {
    padding: 9px 13px;

    border: none;
    border-radius: 9px;

    text-decoration: none;
    cursor: pointer;

    font-size: 12px;
    font-weight: 800;
}

.share-btn {
    background: rgba(255,255,255,.12);
    color: #fff;
}

.download-now-btn {
    background: #16a34a;
    color: #fff;
}


/* =========================
   TIPS PANEL
========================= */

.tips-panel {
    display: none;

    width: calc(100% - 24px);
    max-width: 1050px;

    margin: 20px auto 30px;

    padding: 20px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(30,41,59,.97),
            rgba(15,23,42,.97)
        );

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.25);
}

.tips-panel.show {
    display: block;
}

.tips-panel-header {
    margin-bottom: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;
}

.tips-panel-header h2 {
    color: #fff;
    font-size: 21px;
}

.tips-panel-header small {
    color: #94a3b8;
}

.tips-close-btn {
    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    cursor: pointer;

    background: #ef4444;
    color: #fff;

    font-weight: 900;
}


/* =========================
   TIPS BAZI
========================= */

.tips-bazi-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tips-bazi-card {
    padding: 12px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.06);
}

.tips-bazi-title {
    margin-bottom: 9px;

    color: #fbbf24;

    font-size: 14px;
    font-weight: 900;
}

.tips-box-row {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(55px, 1fr))
        minmax(90px, 1.3fr);

    gap: 8px;
}

.tip-number-box,
.tip-status-box {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    font-size: 15px;
    font-weight: 900;
}

.tip-number-box {
    background: #fff;
    color: #111827;
}

.tip-status-box {
    background: #16a34a;
    color: #fff;
}


/* MOBILE */

@media(max-width:700px) {

    .tips-box-row {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .tip-status-box {
        grid-column: span 1;
    }

    .refresh-result-btn,
    .tips-open-btn {
        min-width: 145px;
    }

.tips-panel {
    display: none;
}

.tips-panel.show {
    display: block;
}
}
