@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

:root {
    --primary-orange: #ED7300;
    --primary-green: #187E00;
    --bg-dark: #0a0a0a;
    --card-white: #ffffff;
    --option-bg: #EDEDED;
    --text-gray: #2E2E2E;
    --text-black: #000000;
    --unique-primary: #EB5A1A;
    --unique-bg: #fffbf5;
    --unique-text-gray: #505050;
    --app-height: 100%;

}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    background: url(../img/wrapper-bg.webp) no-repeat center/cover;
    height: 100%;
}

.main-container {
    background-image: url(../img/bg.webp);
    width: 100%;
    margin: 0 auto;
    padding: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    background-position: top center;
    background-size: cover;
    position: relative;
    height: 100vh;
    transition: padding 0.3s ease;
}

.qureka-logo {
    padding-top: 18px;
}

.qureka-logo,
.real-icon {
    display: flex;
    justify-content: center;
}

.qureka-logo img {
    width: 265px;
}

.real-icon img {
    width: 240px;
}

h1 {
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin: 26px 0 0;
}

.redirection-stripe {
    border: 2px solid #707070;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    width: 210px;
    text-align: center;
    padding: 6px;
    background: #000000;
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 500px) {
    .main-container {
        width: 360px;
    }
}

.ads-area {
    /* width: 100%; */
    /* height: 260px; */
    /*border: 1px solid #ccc;*/
}

.card {
    background: var(--card-white);
    border-radius: 24px;
    width: 100%;
    text-align: center;
    position: relative;
}


.header {
    width: 100%;
    margin-bottom: 18px;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h2 {
    font-size: 17px;
    margin-bottom: 5px;
    color: #fff;
    text-align: left;
    margin: 0 0 4px;
}

.header p {
    font-size: 13px;
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

.gift-box {
    width: 80px;
}

/* Quiz Card */
.quiz-card {
    background: var(--card-white);
    color: #000;
    border-radius: 24px;
    width: 100%;
    padding: 40px 20px 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 0px #333;
    margin-bottom: 25px;
}

.progress-circle {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    background: url(../img/sample-count.png) no-repeat center / contain;
}

.question {
    color: var(--primary-orange);
    font-size: 19px;
    font-weight: 800;
    margin: 0px 0 15px;
    line-height: 1.2;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.options-container .option {
    background: var(--option-bg);
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    padding-right: 44px;
    cursor: pointer;
    transition: transform 0.1s;
    border: 0 !important;
    position: relative;

}

.option:active {
    transform: scale(0.98);
}

.option-letter {
    background: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #807B7B;
    margin-right: 15px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    font-size: 12px;
}

.option-text {
    flex-grow: 1;
    font-weight: 500;
    color: var(--text-gray);
    text-align: center;
    margin-right: 45px;
    font-size: 11px;
}

.option.correct {
    background: #56930E;
    /* padding-right: 44px; */
}

.option.correct .option-letter,
.option.correct .circle {
    background: #fff;
    box-shadow: inset -2px 3px 11px #00000029;
    color: #5F942D;
}

.option.correct .option-text,
.option.correct span {
    color: #fff;
    font-weight: 600;
}

.option.wrong {
    background: #CE3333;
    /* padding-right: 44px; */
}

.option.wrong::after,
.option.correct::after {
    content: "";
    background: url("../img/wrong-check.png") no-repeat center / contain;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 8px;
}

.option.correct::after {
    background: url("../img/correct-check.png") no-repeat center / contain;
}


.option.wrong .option-letter,
.option.wrong .circle {
    background: #fff;
    box-shadow: inset -2px 3px 11px #00000029;
    color: #CE3333;
}

.option.wrong .option-text,
.option.wrong span {
    color: #fff;
    font-weight: 600;
}

.info-card {
    background: var(--card-white);
    border-radius: 20px;
    width: 100%;
    padding: 16px;
}

.info-card h2 {
    color: var(--primary-orange);
    margin-top: 0;
    font-size: 16px;
    text-align: left;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 12px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1px;
    font-size: 14px;
    line-height: 14px;
    color: var(--text-black);
    margin-top: 12px;
}

/* .info-item span{
    line-height: 17px; 
} */

.icon {
    width: 14px;
    margin-right: 8px;
    text-align: center;
    line-height: 0;
    height: 14px;
}

.info-item img {
    width: 14px;
    height: 14px;
}

/* SCREEN 2: SUCCESS VIEW */
.success-screen {
    color: #000;
    padding: 18px 20px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.success-title {
    font-size: 30px;
    font-weight: 900;
}

.earned-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.coin-icon {
    color: var(--primary-orange);
}


.coin-icon img {
    width: 21px;
}

.rewards-showcase {
    width: 100%;
    margin: 10px 0;
}

.footer-text {
    font-size: 13px;
    color: var(--text-black);
    line-height: 1.4;
}

.btn-start {
    width: 166px;
    border: 0;
    background-color: transparent;
    outline: none;
    margin-top: 14px;
    cursor: pointer;
}

.btn-start img {
    width: 100%;
}

.signin-card {
    margin-top: -20px;
    padding: 20px;
    margin-bottom: 10px;
}

.badge-container {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.main-coin {
    width: 70px;
    top: -8px;
    position: relative;
}

.signin-card h2 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
    margin-top: 38px;
}

.signin-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.sub-text {
    color: var(--text-black);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 14px;
    border-radius: 15px;
    background: white;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    box-shadow: 0px 9px 18px #00000026;
    border: 2px solid #E5E5E5;
    margin-bottom: 20px;
    cursor: pointer;
    text-decoration: none;
}

.google-icon {
    width: 24px;
}

.terms-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.terms-container input {
    accent-color: #8b2c15;
}

.terms-container div {
    font-size: 9px;
    font-weight: 500;
}

.terms-container a {
    color: #333;
    text-decoration: underline;
}

.top-bg-area {
    width: calc(100% + 24px);
    margin-top: -12px;
    margin-left: -12px;
}

.top-bg-area img {
    width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    /* padding: 15px; */
    justify-content: space-between;
    /* margin-top: 46px; */
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-icon {
    width: 26px;
    cursor: pointer;
    line-height: 0;
}

.menu-icon img {
    width: 100%;
}

.logo {
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}

.navbar .middle img {
    width: 28px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-wallet-link {
    text-decoration: none;
}

.nav-right>div:first-child {
    line-height: 0;
    position: relative;
}

.nav-right .middle {
    position: relative;
}

.nav-right .middle span {
    color: #fff;
    width: 16px;
    height: 16px;
    background: #810909;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    position: absolute;
    right: -3px;
    font-size: 10px;
    font-weight: 300;
    top: 1px;
}


.coin-wallet {
    /* border: 2px solid var(--primary-orange); */
    border-radius: 39px;
    padding: 6px 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #fff;
    padding-right: 40px;
    margin-right: -36px;
    position: relative;
}


.coin-wallet::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle),
            var(--primary-orange),
            #000,
            var(--primary-orange),
            #000,
            var(--primary-orange));

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 3s linear infinite;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    to {
        --angle: 360deg;
    }
}


.coin-wallet img {
    width: 25px;
}

.coin-wallet div {
    display: flex;
    flex-direction: column;
}

.coin-wallet span {
    font-size: 10px;
    font-weight: 300;
}

.coin-wallet div strong {
    font-size: 14px;
}

.category-slider {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    margin: 20px 0;
    outline: none;
    position: relative;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.home-category-slider {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding: 0px 0 18px;
    margin: 20px 0 0;
}

.category-item {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 20px;
}

.category-item.active {
    background: white;
    color: black;
    border-radius: 20px;
}

/* --- FEATURED REWARDS ROW --- */
.rewards-row {
    display: flex;
    gap: 15px;
    overflow: hidden;
    margin: 12px 0;
}

.reward-card {
    flex: 1;
    background: var(--card-white);
    border-radius: 12px;
    overflow: hidden;
    color: black;
    text-align: center;
}

.reward-card .reward-header {
    height: 120px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.reward-header img {
    width: 100%;
    height: 100%;
}

.reward-body {
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.reward-body::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 20%;
    height: 100%;
    background: linear-gradient(110deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 215, 0, 0.15) 40%,
            rgba(255, 235, 120, 0.35) 50%,
            rgba(255, 215, 0, 0.15) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shimmerOnce 1.2s ease forwards;
    animation-delay: 5s;
    pointer-events: none;
}

@keyframes shimmerOnce {
    from {
        left: -120%;
    }

    to {
        left: 140%;
    }
}

.reward-body h4 {
    font-size: 12px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.live-status {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}


span.live {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #187E00;
    border: 2px solid #A9EA99;
    animation: livePulse 1.6s ease-in-out infinite;

}

@keyframes livePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(24, 126, 0, 0.25);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 3px rgba(24, 126, 0, 0.10);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(24, 126, 0, 0);
    }
}

.live-status span.live {
    top: 1.5px;
    position: relative;

}

.how-to-win {
    border: 1px solid #707070;
    border-radius: 15px;
    padding: 4px 14px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text-black);
}

.how-to-win img {
    width: 14px;
}

/* --- CONTEST CARDS --- */

.contest-section {
    padding-bottom: 100px;
}

.mega-contest {
    background: transparent linear-gradient(180deg, #9989F5 0%, #0089A2 100%);
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 6px;
    color: white;
}

.contest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 9px;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 15px;
    background-color: var(--card-white);
    color: #000;
    padding: 8px;
    position: relative;
}

.mini-contest .contest-header {
    margin: 0;
}

.contest-header .top {
    display: flex;
    align-items: center;
    gap: 7px;
}

.contest-header span {
    color: #1D7BBF;
    font-size: 12px;
}


.contest-header .top span {
    color: var(--text-black);
    font-size: 12px;
    display: flex;
    gap: 6px;
    font-weight: 500;
}

.mega-contest .contest-header .top span:last-child {
    width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;

}

.contest-header .top span img {
    width: 15px;
}

.contest-header .top p {
    display: flex;
    align-items: center;
    line-height: 8px;
    gap: 4px;
    color: var(--primary-green);
}

.contest-main {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.contest-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contest-icon {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 50%;
    padding: 8px;
}

.contest-icon img {
    width: 100%;
}

.prize-pool {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.prize-pool img {
    width: 24px;
}

.play-btn {
    outline: none;
    border: 0;
    background-color: transparent;
    width: 106px;
    cursor: pointer;
}

.play-btn img {
    width: 100%;
}

.mini-contest .play-btn {
    width: 96px;
}

.contest-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    opacity: 0.9;
}

.contest-footer>div {
    display: flex;
    align-items: center;
    gap: 3px;
    line-height: 9px;
    font-size: 12px;
    font-weight: 500;
}

.contest-footer span {
    display: flex;
    align-items: flex-start;
    gap: 3px;
}

.contest-footer img {
    width: 12px;
    margin-top: -3px;
}

.mini-contest {
    background: white;
    color: black;
    border-radius: 10px;
    padding: 0 8px 8px;
    margin-bottom: 8px;
}

.mini-contest .contest-header .top {
    justify-content: space-between;
}

.contest-footer .winner-announcement {
    font-size: 10px;
}

.mini-contest .prize-pool {
    font-size: 18px;
    color: var(--primary-orange);
}

.mini-contest .prize-pool img {
    width: 18px;
}

.mini-contest .contest-header .top-span {
    color: var(--text-black);
    background: #FFF7E6;
    padding: 2px 12px;
    border-radius: 10px;
}

.contest-header p.live-tag {
    display: flex;
    align-items: center;
    color: var(--primary-green);
    gap: 4px;
    font-size: 12px;
}


.mini-contest .contest-icon {
    background-color: transparent;
    padding: 5px;
}

.playwin {
    font-size: 14px;
}

.mini-contest .playwin {
    color: var(--text-black);
    font-weight: bold;
}

.mini-contest .contest-footer {
    color: var(--text-black);
    font-weight: 600;
}

.mini-contest .winner-announcement {
    color: #3B3939;
}

.footer-box {
    display: flex;
    align-items: baseline;
    position: fixed;
    background-color: #fff;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 10px;
    border-radius: 25px 25px 0 0;
    box-shadow: 0px -17px 26px #0000004D;
    border: 1px solid #F5F2F2;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
    z-index: 100;
}

.footer-box.footer-hide {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.footer-box>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-box>div img {
    width: 25px;
}

.footer-box>div a {
    font-size: 10px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #3B3939;
    font-weight: 600;
    gap: 3px;
}

.footer-box .home-tabs span {
    background: #9D3320;
    box-shadow: 0px 3px 6px #00000029;
    border: 4px solid #F5F2F2;
    border-radius: 50%;
    padding: 8px;
    width: 50px;
    height: 50px;
}

.footer-box {
    display: flex;
    align-items: flex-start;
    position: fixed;
    background-color: #fff;
    border-radius: 25px 25px 0 0;
    box-shadow: 0px -17px 26px #0000004D;
    border: 1px solid #F5F2F2;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
    z-index: 100;
    justify-content: space-around;
}

.footer-box>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.footer-home-tab-wrapper {
    margin-top: -27px;
    z-index: 2;
}

.footer-home-tab {
    background: #8d3a1e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px #00000022;
    border: 3px solid #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.footer-home-label {
    color: #8d3a1e;
    font-size: 10px;
    font-weight: 600
}


.footer-box>div:not(.footer-home-tab-wrapper) .footer-home-label {
    display: none;
}


.header-card {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 10px;
    font-size: 16px;
    padding: 6px 0 16px;
}

.header-card button {
    background-color: transparent;
    outline: none;
    border: 0;
    line-height: 0;
    cursor: pointer;
}

.header-card button img {
    width: 22px;
}


.task-card {
    background: var(--card-white);
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner {
    width: 100%;
    height: 96px;
    background: linear-gradient(to bottom, #0072ff, #00c6ff);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    padding: 20px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.title-area h2 {
    margin: 0;
    font-size: 18px;
    color: var(--text-black);
    font-weight: bold;
}

.date-range {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 18px;
}

.status-badge {
    font-weight: 600;
    font-size: 10px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.status-dot {
    height: 8px;
    width: 8px;
    background-color: var(--green);
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}

.description {
    font-size: 12px;
    color: var(--text-black);
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 500;
}

.task-box {
    background-color: #FFF4DE;
    border: 1px solid #97690F;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.task-top {
    display: flex;
    padding: 12px;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #55555438;
}

.icon-circle {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.icon-circle img {
    width: 20px;
}

.task-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-black);
    width: calc(100% - 50px);
}

.task-bottom {
    padding: 10px 12px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 6px;
}

.progress-bar-bg {
    height: 6px;
    background: var(--grey-light);
    border-radius: 10px;
    width: 100%;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
}

.green-fill {
    background-color: var(--green);
}

.orange-fill {
    background-color: #FFA726;
}

.base-rule {
    margin-top: 20px;
}

.base-rule h4 {
    margin: 0 0 5px 0;
    font-size: 12px;
}

.base-rule p {
    font-size: 12px;
    color: #4D4D4D;
    margin: 0;
    line-height: 18px;
}

.task-info-row {
    padding: 12px 15px;
}

.status-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-black);
}

.check-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.check-circle::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.completed .check-circle {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.progress-container {
    padding-left: 26px;
}

.progress-track {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary-green);
    width: 0%;
    transition: width 1s ease-in-out;
    border-radius: 10px;
}

.count-text {
    color: var(--text-black);
    font-size: 11px;
    font-weight: bold;
}

.coin-box {
    box-shadow: inset 0px 3px 6px #00000029;
    border-radius: 154px;
    color: #000;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    margin: 15px auto;
    width: 85%;
    text-transform: capitalize;
}

.coin-box img {
    width: 22px;
    top: -1px;
    position: relative;
}

.coin-box span {
    font-size: 22px;
    font-weight: bold;
}

.sidebar {
    position: absolute;
    top: 0;
    left: -320px;
    width: 230px;
    height: 100vh;
    height: var(--app-height);
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    /* transition: 0.3s ease-in-out; */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
    scrollbar-width: none;
    transition: left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sidebar.active {
    left: 0;
}

.main-container.overflow-hidden {
    overflow: hidden;
    height: 100vh;
}

.sidebar-header {
    background: url(../img/sidebar-header-bg.png) no-repeat center/cover;
    padding: 40px 20px;
    position: relative;
    border-bottom-right-radius: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: -9px;
}

.user-info h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.user-info span {
    font-weight: 400;
}

.edit-profile {
    color: #EB5A1A;
    font-size: 12px;
    font-weight: 400;
}

.profile-img-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 23px 20px #0000004B;
    border: 5px solid #FFFFFF;
    position: absolute;
    right: 15px;
    bottom: -3px;
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;

}

.menu-list {
    margin-top: 40px;
    padding: 0 36px;
}

.menu-item {
    display: flex;
    align-items: center;
    margin: 32px 0;
    color: var(--text-black);
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    gap: 12px;
    text-decoration: none;
}

.menu-item img {
    width: 15px;
}


.menu-item span {
    font-size: 15px;
    font-weight: 500;
}

.delete-text {
    color: #AC3939;
    padding: 0 36px;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000db;
    z-index: 999;
    overflow: hidden;
    display: none;
}

.overlay.active {
    display: block;
}


@media (min-width:500px) {
    .footer-box {
        width: 360px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.tabs {
    display: flex;
    padding: 4px;
    margin-bottom: 16px;
    width: 84%;
    border-bottom: 1px solid #ffffff36;
    margin: 0 auto 16px;
    padding-bottom: 12px;
}

.reward-store-tabs {
    padding: 4px 50px 12px;
    width: calc(100% + 24px);
    margin-left: -10px;
}

.tab {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
}

.tab.active {
    background: #fff;
    color: #000;
    font-weight: 600;
}

.winnner-card {
    background: #FFF5D9;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 16px;
}



.eligibility h3 {
    margin-bottom: 12px;
    font-size: 13px;
    color: #000;
    font-weight: 600;
}


.eligibility li {
    margin-bottom: 15px;
    color: var(--text-black);
    font-size: 12px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;

}

.eligibility li:last-child {
    margin: 0;
}

.eligibility li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(../img/polygon.png) no-repeat center/contain;
}

.prize {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 8px;
}

.prize-card .rank {
    color: #EB5A1A;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prize-card .rank img {
    width: 16px;
}

.prize-card .title {
    font-weight: 400;
    margin: 14px 0;
    font-size: 12px;

}

.prize-card .claim {
    font-size: 10px;
    color: #000;
    font-weight: 600;
}

.prize-card .coins {
    margin-top: 6px;
    background: #FFF5DB;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 10px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    gap: 7px;
}

.prize-card .coins img {
    width: 30px;
}

.prize-card .right img {
    width: 85px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.leaderboard {
    width: 100%;
    padding-bottom: 80px;

}

.leaderboard-header {
    background: #EB5A1A;
    color: #fff;
    display: grid;
    grid-template-columns: 74px 1fr 70px;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 14px;
}

.leader-card {
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 50px 1fr 70px;
    align-items: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: #000;
}

.leader-card .rank {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    padding-left: 13px;

}

.leader-card .user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.leader-card .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #e0e0e0;
}

.leader-card .name {
    font-size: 15px;
    font-weight: 500;
}

.leader-card .score {
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: #EB5A1A;
}

.your-leader-card {
    position: fixed;
    left: 0;
    background-color: #FFF5D9;
    border-radius: 0;
    width: 100%;
    bottom: 0;
    margin: 0;
}

.your-leader-card .score {
    color: var(--text-black);
}


@media (min-width:500px) {
    .your-leader-card {
        left: 50%;
        transform: translateX(-50%);
        width: 360px;
    }
}

.quiz-container {
    background-color: var(--card-white);
    border-radius: 20px;
    padding: 27px 18px;
    margin-top: 72px;
    position: relative;
    box-shadow:
        0 12px 0 #444,
        0 22px 0 #222,
        0 25px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.45s ease, opacity 0.45s ease;
    position: absolute;
    width: 92%;
}



.quiz-container.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    z-index: 5;
}

.quiz-container.stack-1 {
    transform: scale(0.96) translateY(14px);
    opacity: 0.9;
    z-index: 4;
}

.quiz-container.stack-2 {
    transform: scale(0.92) translateY(28px);
    opacity: 0.8;
    z-index: 3;
}

.quiz-container.exit {
    transform: translateX(-130%) rotate(-6deg);
    opacity: 0;
}

.quiz-container:not(.active) {
    pointer-events: none;
}

.quiz-container h5 {
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    margin-top: -12px;
}

.quiz-container .question-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
}

.quiz-container .question-count {
    color: var(--text-black);
    font-weight: 500;
    font-size: 15px;
}


.quiz-container .score-card {
    background-color: #FFF4DE;
    border-radius: 15px;
    font-size: 14px;
    color: var(--text-black);
    font-weight: 500;
    padding: 5px 12px;
}

.progress-bar {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 16px 0;
}

.progress-bar span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 500;
    background-color: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-bar span.wrong::before,
.progress-bar span.right::before {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    background-image: url(../img/close_wrong.png);
    background-color: #CE3333;
    top: 0;
    left: 0;
    position: absolute;
    border-radius: 50%;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.progress-bar span.right::before {
    background-image: url(../img/check_right.png);
    background-color: #56930E;
}


.quiz-content h2 {
    font-size: 20px;
    font-weight: bold;
}

.quizoptions-container {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.quiz-image {
    width: 120px;
    height: 90px;
    background: #fff;
    margin-top: -52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -80px auto 0;
}

.quiz-image img {
    width: 56px;
    margin-top: -8px;
}

.option {
    display: flex;
    align-items: center;
    padding: 8px 44px;
    background: linear-gradient(to bottom, #ffffff, #fff2e0);
    border: 2px solid #ffcc80;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.2s;
}


.option .circle {
    width: 30px;
    height: 30px;
    background-color: #ffcc80;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 12px;
}

.option span {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0 !important;
}

.quiz-progress-container {
    width: 100%;
    max-width: 600px;
    height: 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 15px;
    position: relative;
    margin: 26px auto;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.progress-bar-card {
    width: 0%;
    height: 100%;
    border-radius: 15px;
    position: relative;
    transition: width 0.5s ease-in-out;

    background: repeating-linear-gradient(125deg,
            #ff8c00,
            #ff8c00 18px,
            #e67e00 12px,
            #e67e00 20px)
}

.stopwatch-icon {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.stopwatch-icon img {
    width: 28px;
}

.quiz-container:not(.active) .quiz-progress-container {
    display: none;
}


.main-card {
    background: white;
    border-radius: 16px;
    padding: 20px 15px 15px;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.notch-container {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 120px;
    height: 66px;
    border-radius: 60px 60px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cricket-icon {
    margin-bottom: -6px;
}

.notch-container img {
    width: 56px;
}

.quiz-label {
    font-weight: bold;
    font-size: 14px;
    color: #000;
    margin-top: 10px;
    display: block;
}

.title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    margin: 10px 0 20px;
    color: #000;
}

.inner-card {
    background: #FFF4DE;
    border-radius: 25px;
    padding: 14px 20px;
    position: relative;
}

.reward-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 10px;
}

.gold-coin {
    width: 62px;
}

.gold-coin img {
    width: 100%;
}

.reward-amount {
    font-size: 32px;
    font-weight: 700;
    color: #ED7300;
    text-align: left;
    line-height: 36px;
}

.entry-fee {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.entry-fee img {
    width: 18px;
    vertical-align: sub;
}

.info-bullets {
    text-align: left;
    display: inline-block;
    font-size: 13px;
    color: var(--text-black);
    font-weight: 600;
    margin-bottom: 13px;
}

.info-bullets div {
    margin-bottom: 6px;
    font-size: 12px;
}

.info-bullets span {
    color: #E2A46A;
    margin-right: 8px;
    font-size: 12px;
}

.play-quiz {
    background-color: transparent;
    border: 0;
    outline: none;
    width: 144px;
    display: inline-block;
}

.play-quiz img {
    width: 100%;
}

.rank-link {
    font-size: 12px;
    font-weight: 500;
    text-decoration: underline;
    color: #000;
    cursor: pointer;
    margin-top: 15px;
}

.rank-link a {
    color: #000;
}

.rules-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-top: 10px;
}

.rule-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.rule-item:last-child {
    margin-bottom: 0;
}

.rule-icon img {
    width: 18px;
}

.rule-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    color: #000;
}

.footer-link {
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-link a {
    color: #fff;
    display: flex;
    gap: 10px;
    text-decoration: none;
    border-bottom: 1px solid #ffffffd1;

}

.footer-link a img {
    width: 20px;
}

.back-container {
    position: absolute;
}

.back-container img {
    width: 22px;
}


.profile-container {
    width: 360px;
    margin: 0 auto;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    background: white;

}

.unique-card {
    width: 100%;
    position: relative;
    height: 100%;
}

.unique-header {
    background: url(../img/profile-bg.png) no-repeat center;
    height: 188px;
    background-position: center;
    display: flex;
    background-size: cover;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    margin-top: -50px;
}

.unique-img-container {
    position: relative;
}

.unique-back-btn {
    position: absolute;
    top: 60px;
    left: 8px;
    color: var(--unique-primary);
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    z-index: 9;
}

.unique-back-btn img {
    width: 20px;
}

.unique-profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    display: block;

}

.unique-img-edit-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: var(--unique-primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.unique-img-edit-badge img {
    width: 16px;
}

.unique-content {
    margin-top: 40px;
    padding: 0 40px;
}

.unique-field-group {
    margin-bottom: 30px;
}

.unique-label {
    display: block;
    color: var(--unique-text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.unique-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    border: none;
    width: 100%;
    padding: 5px 0;
    background: transparent;
}

.unique-input {
    display: none;
    width: 100%;
    font-size: 14px;
    padding: 8px;
    border: 1px solid #707070;
    border-radius: 6px;
    box-sizing: border-box;
}

.unique-editing .unique-value {
    display: none;
}

.unique-editing .unique-input {
    display: block;
}

.unique-edit-btn {
    display: block;
    margin: 80px auto 0;
    background: none;
    border: none;
    color: var(--unique-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.2s;
}

.unique-edit-btn:hover {
    opacity: 0.8;
}

.unique-editing .unique-edit-btn {
    color: #068A0F;
}



.qa_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}



.qa_popup {
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border-radius: 22px;
    padding: 20px 16px 22px;
    text-align: center;
    position: relative;
}


.qa_popup_close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
}


.qa_popup_icon img {
    width: 64px;
    margin-bottom: 12px;
}


.qa_popup_title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
    padding-top: 50px;
}


.qa_popup_subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}


.qa_streak_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}


.qa_streak_day {
    height: 74px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.qa_streak_day span {
    font-size: 11px;
}

.qa_streak_day strong {
    font-size: 20px;
}

.qa_day_active {
    background: #1bbf3b;
    color: #fff;
}

.qa_day_failed {
    background: #e53935;
    color: #fff;
}

.qa_day_pending {
    background: #ffc27a;
    color: #5a3b00;
}

.qa_day_disabled {
    background: #e6e6e6;
    color: #666;
}


.qa_watch_btn {
    width: 100%;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #ff9a2f, #ff6a00);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}


.qa_ad_label {
    font-size: 11px;
    color: #666;
    display: block;
    margin-top: 6px;
}

.qa_popup_icon {
    position: absolute;
    top: -30px;
    left: 0px;
    right: 0px;
}


.qa_streak_popup {
    width: 320px;
    max-width: 90%;
    background: #fff;
    border-radius: 28px;
    padding: 24px 18px 26px;
    text-align: center;
    position: relative;
}


.qa_streak_icon {
    width: 70px;
    margin-bottom: 10px;
}


.qa_streak_title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    margin-top: 50px;
}

.qa_streak_subtitle {
    font-size: 20px;
    color: #000;
    margin-bottom: 18px;
    line-height: 1;
}



.qa_streak_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 14px;
}


.qa_streak_pill {
    width: 60px;
    height: 105px;
    border-radius: 42px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 800;
    border: 5px solid #cfd8dc;
    border: 5px solid #cfd8dc;


    box-shadow:
        inset 0 0 0 3px rgba(255, 255, 255, 0.35),
        inset 0 -8px 12px rgba(0, 0, 0, 0.18);
}


.qa_streak_pill::before {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 12px;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 30px 50px 30px 50px;
}

.qa_day_text {
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.qa_day_text_bg {
    background-color: #008400;
    padding: 10px 5px 5px 5px;
    margin-top: 10px;
    border-radius: 50px 50px 0px 0px;
}

.qa_red_bg {
    background-color: #e8000e;
    padding: 10px 5px 5px 5px;
    margin-top: 10px;
    border-radius: 50px 50px 0px 0px;
}

.qa_orange_bg {
    background-color: #FFCE95;
    padding: 10px 5px 5px 5px;
    margin-top: 10px;
    border-radius: 50px 50px 0px 0px;
}

.qa_grey_bg {
    background-color: #d4dcdf;
    padding: 10px 5px 5px 5px;
    margin-top: 10px;
    border-radius: 50px 50px 0px 0px;
}



.qa_day_num {
    font-size: 24px;
    line-height: 1;
}


.qa_popup_close img {
    width: 20px;
}



.qa_green {
    background: linear-gradient(180deg, #2bd63a, #179f25);
    color: #fff;
}


.qa_red {
    background: linear-gradient(180deg, #ff4b4b, #d92b2b);
    color: #fff;
}


.qa_orange {
    background: linear-gradient(180deg, #ffd39b, #ffb15c);
    color: #5a3300;
}


.qa_grey {
    background: #eeeeee;
    color: #6b6b6b;
}

.qa-popup-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 250px;
    height: 70px;
    background-image: url(../img/btn.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    border-radius: 14px;
    margin: 30px auto 20px;

}

.qa_ad_text {
    font-size: 11px;
    color: #666;
    margin-top: 6px;
    display: block;
    position: absolute;
    right: -15px;
    top: -8px;
}

.qa-popup-play img {
    width: 30px;
}


.qa_delete_popup,
.congratulations_popup {
    width: 320px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 26px;
    padding: 27px 31px 29px;
    text-align: center;
    position: relative;
}


.congratulations_popup {
    border-radius: 18px;
    padding-bottom: 34px;
}

.qa_popup_close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}


.qa_delete_icon {
    width: 72px;
    height: 72px;
    margin: -52px auto 10px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.qa_delete_icon img {
    width: 50px;
}

.congratulations_popup .qa_delete_icon {
    width: 80px;
    height: 80px;
    margin: -67px auto 10px;
}

.qa_delete_title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 22px;
    line-height: 1.3;
}


.congratulations_popup .qa_delete_title {
    font-size: 26px;
    margin-bottom: 15px;
}

.congratulations_popup p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.congratulations_popup p img {
    width: 17px;
    vertical-align: text-top;
}

.qa_delete_title span {
    color: #f26a21;
}


.qa_delete_actions {
    display: flex;
    gap: 14px;
}


.qa_btn_yes {
    flex: 1;
    height: 48px;
    border-radius: 14px;
    border: 2px solid #f26a21;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}


.qa_btn_no {
    flex: 1;
    height: 48px;
    border-radius: 14px;
    border: none;
    background: #f26a21;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.congratulations_popup .qa_popup_close {
    top: 8px;
    right: 15px;
}

.congratulations_popup .qa_popup_close img {
    width: 15px;
}


/* stracke page css */


.qa_streakpg_header {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    gap: 5px;
}


.qa_streakpg_card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.qa_streakpg_hint {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 18px;
}

.qa_streakpg_circle_wrap {
    display: flex;
    justify-content: center;
}


.qa_streakpg_card_top {
    background: #fff;
    border-radius: 16px;
    padding: 22px 18px 26px;
    text-align: center;
}

.qa_streakpg_header img {
    width: 30px;
}

.qa_streakpg_hint {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #000;
}


.qa_streakpg_progress_wrap {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}


.qa_streakpg_svg {
    width: 160px;
    height: 160px;
    transform: rotate(-102deg);
}


.qa_streakpg_base {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 4;
}


.qa_streakpg_arc {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke: url(#qaStreakGrad);
    stroke-dasharray: 360;
    stroke-dashoffset: 170;
}


.qa_streakpg_center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa_streakpg_gem {
    width: 55px;
}

.qa_streakpg_value {
    font-size: 46px;
    font-weight: 800;
    color: #f26a21;
}

.qa_streakpg_day_num {
    font-size: 33px;
    line-height: 1;
    font-weight: 600;
}

.qa_streakpg_grey {
    background: #eee;
    color: #777;
}

.qa_streakpg_footer_text {
    text-align: center;
    margin-top: 22px;
    font-weight: 400;
}


.qa_streakpg_title {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.qa_streakpg_subtitle {
    text-align: center;
    margin-top: 20px;
    text-decoration: underline;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 14px;
    cursor: pointer;
}

.qa_streakpg_week {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 22px 6px;
    max-width: 274px;
    width: 100%;
    margin: 0 auto;
}


.qa_streakpg_pill {
    width: 64px;
    height: 110px;
    border-radius: 42px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 800;
    border: 5px solid #cfd8dc;
    border: 5px solid #cfd8dc;
    box-shadow:
        inset 0 0 0 3px rgba(255, 255, 255, 0.35),
        inset 0 -8px 12px rgba(0, 0, 0, 0.18);
}


.qa_streakpg_pill::before {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 12px;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 30px 50px 30px 50px;
}


.qa_streakpg_green {
    background: linear-gradient(180deg, #2bd63a, #179f25);
    color: #fff;
}

.qa_streakpg_red {
    background: linear-gradient(180deg, #ff4b4b, #d92b2b);
    color: #fff;
}

.qa_streakpg_orange {
    background: linear-gradient(180deg, #ffd39b, #ffb15c);
    color: #5a3300;
}

.qa_streakpg_grey {
    background: #F0F0F0;
    color: #5C6E7C;
}

.qa_streakpg_grey_bg {
    background-color: #d4dcdf;
    padding: 10px 5px 5px 5px;
    margin-top: 10px;
    border-radius: 50px 50px 0px 0px;
}


.qa_streakpg_green_bg {
    background-color: #008400;
    padding: 10px 5px 5px 5px;
    margin-top: 10px;
    border-radius: 50px 50px 0px 0px;
}

.qa_streakpg_day_text {
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 700;
}

.qa_streakpg_day_text_bg {
    background-color: #008400;
    padding: 12px 5px 8px 6px;
    margin-top: 10px;
    border-radius: 50px 50px 0px 0px;
    text-align: center;
}

.qa_streakpg_list {
    margin-top: 0px;
    padding-left: 0px;
    font-weight: 600;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.qa_streakpg_list img {
    width: 15px;
}

.qa_streakpg_list li {
    font-size: 14px;
    align-items: center;
    display: flex;
    gap: 5px;
    margin-top: 8px;
}


.qa_level_row {
    display: flex;
    gap: 12px 8px;
    flex-wrap: wrap;
    /* width: 100%; */
    width: 300px;
    margin: 0 auto;
}


.qa_level_outer {
    border-radius: 26px;
    background: transparent;
    border: solid 2px #fff4db;
    width: 93px;
    padding: 3px;
}

.qa_level_inner {
    border-radius: 22px;
    padding: 16px 10px 18px;
    text-align: center;
    /* margin: 5px; */
    background: transparent linear-gradient(180deg, #FFF2CC 0%, #FFE1C2 100%) 0% 0% no-repeat padding-box;
}


.qa_level_title {
    color: #f26a21;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

.qa_level_badge img {
    height: 32px;
}

.qa_level_name {
    font-size: 10px;
    font-weight: 600;
    color: #111;
    line-height: 1;
    margin-top: 11px;
}

.qa_level6_inner {
    border-radius: 22px;
    padding: 16px 10px 18px;
    text-align: center;
    margin: 5px;
    background: transparent linear-gradient(180deg, #EAFAE0 0%, #C8F0C8 100%) 0% 0% no-repeat padding-box;
}

.qa_level6_inner_disabled {
    border-radius: 22px;
    padding: 12px 10px 12px;
    text-align: center;
    /* margin: 3px; */
    height: 96%;
    background: transparent linear-gradient(180deg, #F8F8F8 0%, #DEDEDE 100%);
    height: 100%;
}

.qa_level_title_disabled {
    color: #939393;
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 10px;
}

.qa_level_name_disabled {
    font-size: 10px;
    font-weight: 600;
    color: #939393;
    line-height: 1;
    margin-top: 11px;
    text-align: center;
}

.result-card-container {
    padding-top: 44px;
}

.result-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    margin-bottom: 18px;
}

.star-wrapper {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.star img {
    width: 125px;
}

.ribbon {
    background: #ff6a00;
    color: #fff;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 14px;
    margin-top: -6px;
}

.quiz-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 5px;
}

.quiz-title img {
    width: 20px;
    height: auto;
}

.quiz-title span {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    line-height: 22px;
}

.score-label {
    color: #EB5A1A;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

.score {
    font-size: 52px;
    color: #EB5A1A;
    margin: 6px 0;
    font-weight: bold;
}

.reward-text {
    margin-bottom: 10px;
    /* display: flex; */
    /* align-items: center; */
}

.reward-text p {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    line-height: 20px;
    display: inline;
}

.reward-text img {
    width: 22px;
    height: auto;
    margin-right: 0px;
    vertical-align: bottom;
}

.reward-text strong {
    font-size: 16px;
    color: #000000;
    font-weight: bold;
    line-height: 20px;
    display: inline;
}

.reward-text strong span {
    padding-right: 2px;
}

.quiz-win {
    background: #fff3db;
    border-radius: 15px;
    padding: 10px 15px 20px;
}

.up-next {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #310F26;
}

.main-title {
    background: #fff;
    border-radius: 14px;
    padding: 8px 10px;
}

.next-inner {
    display: flex;
    justify-content: space-between;
}

.next-left {
    text-align: left;
}

.small-title {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    background-color: #FFF7E6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 5px 10px;
    margin-bottom: 15px;
    width: 130px;
}

.small-title span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    text-align: center;
}

.entry-card {
    display: flex;
    gap: 6px;
}


.entry-label {
    width: 38px;
    height: 38px;
}

.entry-card .entry-label img {
    width: 100%;
    height: 100%;
}

.entry-card .play-label img {
    width: 22px;
    height: auto;
    margin-right: 0px;
}

.entry-card .play-label h4 {
    font-size: 14px;
    padding-left: 4px;
    font-weight: bold;
    line-height: 10px;
    color: #000000;
}

.coins {
    color: #ED7300;
    font-weight: bold;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.coins img {
    width: 15px;
    height: auto;
}

.next-right {
    text-align: right;
}

.result-card .live-section {
    font-size: 12px;
    color: #187E00;
    font-weight: 500;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 3px;
}

/* .play-btn {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    margin-top: 6px;
    cursor: pointer;
} */

.play-btn:active {
    transform: scale(0.95);
}

.countdown {
    color: red;
    font-size: 12px;
    margin-top: 4px;
}

.rewardBtn-screen {
    display: flex;
    justify-content: center;
}

.rewardBtn-screen .btn {
    margin-top: 39px;
    background-color: transparent;
    outline: none;
    border: 0;
    width: 84px;
}

.rewardBtn-screen .btn img {
    width: 100%;
}

.winner-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 9px;
}

.entry {
    font-size: 11px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: inherit;
}

.entry img {
    width: 12px;
    height: auto;
    margin: 0 2px;
    margin-top: 0px;
}

.winner-data .announce {
    color: #3B3939;
    font-size: 8px;
    font-weight: 500;
}

.result-card .footer-text {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    max-width: 180px;
    margin: 22px auto 12px;
}

.countdown {
    font-size: 14px;
    font-weight: 600;
    color: #810909;
}

.qa_rw_header {
    margin-bottom: 40px;
}

.qa_rw_header .category-slider {
    margin-top: 0;
    border-bottom: 1px solid #ffffff52;
    padding-bottom: 18px;
}


.qa_rw_top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.qa_rw_back {
    font-size: 22px;
}


.qa_rw_tabs {
    display: flex;
    gap: 10px;
    overflow-x: hidden;
    padding-bottom: 16px;
    border-bottom: solid 1px #666;
    margin-left: -20px;
    margin-right: -20px;

}

.qa_rw_tab {
    white-space: nowrap;
    margin-left: 20px;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;

    color: #fff;
    opacity: 0.85;

    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.qa_rw_tab_active {
    background: #fff;
    color: #111;
    opacity: 1;
}


.qa_sq_header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.qa_sq_back {
    font-size: 22px;
}


.qa_sq_card {
    background: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
    margin-top: 40px;
}


.qa_sq_name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 0px;

}

.qa_sq_time {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.qa_sq_badge {
    display: inline-block;
    background: #ffe6db;
    color: #f26a21;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 18px;
    margin-bottom: 10px;
}

.qa_sq_coins {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.qa_sq_coins img {
    width: 20px;
    margin-top: -3px;
}


.qa_sq_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.qa_sq_avatars {
    display: flex;
    position: relative;
    right: 0px;
    top: -38px;
}

.qa_sq_avatars img {
    width: 130px;
}

.qa_ad_img_wrap {
    margin-bottom: 16px;
}

.qa_ad_img {
    width: 100%;
    height: auto;
    display: block;
}

.qa_sq_btn {
    min-width: 90px;
    height: 38px;

}

.qa_sq_btn img {
    width: 120px;
}

.ad img {
    width: 100%;
}


.qa_coinwallet_reward_item {
    flex: 1;
}

.qa_coinwallet_reward_item img {
    width: 100% !important;
    border-radius: 8px;
    height: 100%;
    display: block;
}


.qa_coinwallet_header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.qa_coinwallet_back {
    font-size: 22px;
}


.qa_coinwallet_balance {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin: 18px 0 25px;
}

.qa_coinwallet_coin_icon {
    width: 40px;
    margin-top: -8px;
}

.qa_coinwallet_amount {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}


.qa_coinwallet_ad_wrap {
    margin: 20px 0px;
}

.qa_coinwallet_ad_img {
    width: 100%;
    display: block;
}


.qa_coinwallet_card {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 16px;
}

.qa_coinwallet_card_title {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 14px;
}


.qa_coinwallet_rewards img {
    width: 50px;
}


.qa_coinwallet_history_card {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    margin-top: 16px;
    overflow: hidden;
}


.qa_coinwallet_tabs {
    display: flex;
}

.qa_coinwallet_tab {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    opacity: 0.6;
}

.qa_coinwallet_tab_active {
    color: #f26a21;
    opacity: 1;
    border-bottom: 3px solid #f26a21;
}


.qa_coinwallet_divider {
    height: 1px;
    background: #e5e5e5;
}


.qa_coinwallet_history_item {
    background: #EFEFEF;
    border-radius: 12px;
    padding: 14px;
    margin: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qa_coinwallet_history_left b {
    font-size: 15px;
    display: block;
}

.qa_coinwallet_history_left p {
    font-size: 12px;
    color: #666;
    margin-bottom: 0px;
}

.qa_coinwallet_history_right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.qa_coinwallet_plus {
    color: #1aa84b;
    font-weight: 800;
}

.qa_coinwallet_history_right img {
    width: 18px;
}

.qa_coinwallet_load_more {
    width: calc(100% - 24px);
    margin: 12px;
    height: 48px;
    background: #f26a21;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
}

.qa_coinwallet_history_list {
    display: none;
}

.qa_coinwallet_history_active {
    display: block;
}

.qa_dailyreward_split {
    display: flex;
    gap: 12px;
}


.qa_dailyreward_box {
    flex: 1;
    padding: 16px 12px;
    position: relative;
    text-align: center;
    border: solid 1px #f2b28a;
    border-radius: 22px;
    background-image: url(../img/coinssss.png);
    border-radius: 22px;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}


.qa_dailyreward_box+.qa_dailyreward_box.qa_dailyreward_lose {
    border: solid 1px #f2b28a;
    ;
    background-image: url(../img/scratch_card_bg.png);
    border-radius: 22px;
}


.qa_dailyreward_badge {
    position: absolute;
    top: -10px;
    left: 10px;
    background: #ff4fd8;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
}

.qa_dailyreward_title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 0px;
}

.qa_dailyreward_title span {
    color: #f26a21;
}

.qa_dailyreward_img {
    width: 80px;
    margin-top: 8px;
}

.qa_dailyreward_emoji {
    font-size: 42px;
    margin-bottom: 6px;

}

.qa_dailyreward_subtext {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;

}

.qa_dailyreward_unlock {
    text-align: center;
    font-size: 14px;
    color: #f26a21;
    font-weight: 700;
    margin-top: 10px;
    display: block;
}




.modal {
    background: #fff;
    width: 94%;
    max-width: 320px;
    margin: auto;
    border-radius: 24px;
    padding: 20px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: 95vh;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.close img {
    width: 20px;
}

.modal h2 {
    text-align: center;
    margin: 10px 0 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    margin-top: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.dailystreak-card {
    background: #fff3db;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dailystreak-card.locked {
    background: #eee;
    color: #000000;
}

.day {
    font-size: 14px;
    margin-bottom: 6px;
}

.coins {
    display: flex;
    align-items: center;
}

.coins img {
    width: 24px;
    height: auto;
    margin-right: 8px;
}

.coins span {
    font-size: 20px;
    line-height: 22px;
    font-weight: 500;
}

.check img {
    width: 28px;
    height: auto;
}

.lock img {
    width: 28px;
    height: auto;
}

.watchBtn-screen {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.watchBtn-screen .btn {
    margin-top: 10px;
    background-image: url(../img/btn.png);
    padding: 14px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    height: 65px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 215px;
}



.insufficient-popup .top-icon {
    width: 75px;
    height: 75px;
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.insufficient-popup .top-icon img {
    width: 48px;
    margin-top: -10px;
}

#insufficientCoinsPopup .close {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

#insufficientCoinsPopup .close img {
    width: 15px;
    height: auto;
}

#insufficientCoinsPopup h2 {
    margin: 10px 0 14px;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 32px;
    color: #000000;
}

#insufficientCoinsPopup p {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}

#insufficientCoinsPopup .watchBtn-screen {
    display: flex;
    justify-content: center;
}

#insufficientCoinsPopup .watchBtn-screen .btn {
    margin-top: 13px;
    background-image: url(../img/btn.png);
    padding: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    height: 65px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 215px;
}

#insufficientCoinsPopup .btn span {
    background: #fff;
    color: #ff7a18;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding-left: 3px;
}

#insufficientCoinsPopup .ad {
    position: absolute;
    right: -15px;
    top: -5px;
    font-size: 12px;
    color: #666;
}

#insufficientCoinsPopup h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 12px;
}


.levelcomplete-modal {
    background: #fff;
    width: 360px;
    border-radius: 22px;
    padding: 40px 30px 24px;
    position: relative;
    text-align: center;
}

.levelcomplete-modal .top-icon {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50%;
    padding: 16px 18px;
}

.levelcomplete-modal .top-icon img {
    width: 50px;
}

.levelcomplete-modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.levelcomplete-modal .close img {
    width: 17px;
    height: auto;
}

.levelcomplete-modal h2 {

    font-size: 30px;
    font-weight: bold;
    line-height: 34px;
    margin-top: 15px;
    color: #000000;
}

.levelcomplete-modal h2 span {
    color: #EB5A1A;
}

.levelcomplete-modal .streak-lead h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #000000;
}

.levelcomplete-modal .streak-lead h4 img {
    width: 16px;
    height: auto;
    margin-right: 5px;
}

.levelcomplete-modal p {
    font-size: 16px;
    color: #494949;
    line-height: 26px;
    font-weight: 500;
    margin-top: 20px;
}


.levelcomplete-modal .btn {
    width: 170px;
    margin: 0px auto;
    background-color: transparent;
    border: 0;
    outline: none;
    margin-top: 28px;
    display: block;
    cursor: pointer;
}

.levelcomplete-modal .btn img {
    width: 100%;
}

.levelcomplete-modal .btn span {
    background: #fff;
    color: #ff7a18;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.levelcomplete-modal .ad {
    position: absolute;
    right: -15px;
    top: -5px;
    font-size: 12px;
    color: #666;
}


.extrascratch-modal {
    background: #fff;
    width: 360px;
    border-radius: 22px;
    padding: 40px 20px 24px;
    position: relative;
    text-align: center;
}

.extrascratch-modal .top-icon {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50%;
    padding: 10px;
}

.extrascratch-modal .top-icon img {
    width: 56px;
}

/* Close */

.extrascratch-modal .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.extrascratch-modal .close img {
    width: 20px;
    height: auto;
}

.extrascratch-modal h2 {
    margin: 10px 0 14px;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    margin-top: 25px;
    color: #000000;
}

.extrascratch-modal p {
    font-size: 23px;
    color: #000000;
    line-height: 32px;
    font-weight: 400;
}

/* Button */

.extrascratch-modal .watchBtn-screen {
    display: flex;
    justify-content: center;
}

.extrascratch-modal .watchBtn-screen .btn {
    margin-top: 10px;
    background-image: url(../img/btn.png);
    padding: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    height: 65px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 215px;
}

.extrascratch-modal .btn span {
    background: #fff;
    color: #ff7a18;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.extrascratch-modal .ad {
    position: absolute;
    right: -15px;
    top: -5px;
    font-size: 12px;
    color: #666;
}


.invite-modal {
    background: #fff;
    width: 360px;
    border-radius: 22px;
    position: relative;
    text-align: center;
    /* height: 68vh; */
    /* overflow: scroll; */
    /* scrollbar-width: none; */
}

.invite-modal .top-screen img {
    width: 100%;
    height: auto;
}

.invite-modal .model-content {
    padding: 25px 20px 24px;
}

.invite-modal .close {
    position: absolute;
    top: -19px;
    right: 0px;
    cursor: pointer;
}

.invite-modal .close img {
    width: 12px;
    height: auto;
}

.invite-modal h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 24px;
    color: #000000;
    margin: 0;
}

.invite-modal p {
    font-size: 17px;
    color: #000000;
    line-height: 24px;
    font-weight: 400;
    margin: 15px 0;
}

.invite-modal p span {
    color: #EB5A1A;
    font-weight: 600;
}

.invite-modal .watchBtn-screen {
    display: flex;
    justify-content: center;
}

.invite-modal .btn {
    margin-top: 10px;
    background-color: transparent;
    border: 0;
    outline: none;
    width: 150px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

.invite-modal .btn img {
    width: 100%;
}

.invite-modal .btn span {
    background: #fff;
    color: #ff7a18;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;

}

.invite-modal .ad {
    position: absolute;
    right: -15px;
    top: -5px;
    font-size: 12px;
    color: #666;
}


.congratulations-modal {
    width: 360px;
    background: #fff;
    border-radius: 22px;
    padding: 20px 18px 24px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: none;
}

@media (max-width: 600px) {
    .congratulations-modal {
        max-height: 78vh;
    }
}

.congratulations-modal h1 {
    margin: 10px 0 8px;
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    color: #000000;
    font-weight: bold;
}

.congratulations-modal .subtitle {
    text-align: center;
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 28px;
}

.congratulations-modal .reward-img img {
    width: 100%;
}

.congratulations-modal p {
    font-size: 20px;
    color: #000000;
    margin-bottom: 30px;
    line-height: 28px;
}

.congratulations-modal .label {
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 8px;
    display: block;
}

.congratulations-modal input {
    width: 100%;
    padding: 15px 15px;
    border-radius: 8px;
    border: 1px solid #707070;
    margin-bottom: 16px;
    font-size: 14px;
    outline: none;
}

.congratulations-modal .rewardBtn-screen {
    display: flex;
    justify-content: center;
}

.congratulations-modal .rewardBtn-screen .btn {
    margin-top: 15px;
    background-image: url(../img/btn.png);
    padding: 14px;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    height: 65px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 215px;
}

.rank-popup {
    width: 380px;
    background: #ffffff;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    padding: 8px 0px 24px 0px;
}

.rank-popup .close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    cursor: pointer;
}

.rank-popup .close-btn img {
    width: 18px;
    display: block;
}

.rank-popup .title {
    margin: 22px 0;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #ff7a00;
}

.rank-popup .rank-list {
    border-top: 1px solid #eeeeee;
}

.rank-popup .rank-list .rank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 27px;
    font-size: 18px;
}

.rank-popup .rank-list .rank-row.active {
    background: #f2f2f2;
}

.rank-popup .rank-list .rank-row .coin {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    width: 52px;
}

.rank-popup .rank-list .rank-row span {
    color: #000;
    font-weight: 500;
}

.rank-popup .rank-list .rank-row .coin img {
    width: 26px;
    height: auto;
}

.rank-popup .rank-list .rank-row .coin span {
    width: 23px;
    text-align: right;
    font-weight: 700;
}


.level-modal {
    background: #fff;
    border-radius: 22px;
    padding: 40px 20px 32px;
    position: relative;
    text-align: center;
}


.level-modal .top-icon {
    position: absolute;
    top: -49px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50%;
    padding: 22px;
}

.level-modal .top-icon img {
    width: 56px;
}

.level-modal .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

.level-modal .close img {
    width: 20px;
}


.level-modal h2 {
    margin: 10px 0 14px;
    font-size: 30px;
    font-weight: 600;
    line-height: 47px;
    color: #000;
}

.level-modal>p {
    font-size: 15px;
    font-weight: 400;
    line-height: 34px;
    color: #000;
    margin-top: -18px;
}

.level-modal .badge-wrapper {
    position: relative;
    height: 160px;
    margin: -15px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-wrapper .badge-bg {
    position: absolute;
    inset: 0;
    background-image: url("../img/Badge-Bacground-Img.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
}

.badge-wrapper .badge-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding-top: 14px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.badge-content .badge-title {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    margin-top: 6px;
}

.badge-content .badge-icon {
    width: 56px;
    margin: 0 auto;
}

.badge-content .badge-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 6px;
}

.level-modal .checkpoints {
    margin-top: 24px;
}

.checkpoints .checkpoint {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 10px;
    margin-left: 2px;
}

.checkpoint img {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.checkpoint p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    padding-top: 4px;
    text-align: left;
}

.modal .watchBtn-screen {
    display: flex;
    justify-content: center;
}

.watchBtn-screen .btn {
    margin-top: 15px;
    width: 215px;
    height: 65px;
    background-image: url("../img/btn.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.open-btn {
    margin: 40px auto;
    display: block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background: #ff7a18;
    color: #fff;
    cursor: pointer;
}

.level-modal.what-will-get>p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.level-modal.what-will-get .checkpoints {
    margin-top: 8px;
}

.level-modal.what-will-get .watchBtn-screen {
    margin: 0;
}


#levelCompletePopup .levelcomplete-modal,
#extraScratchPopup .extrascratch-modal,
#invitePopup .invite-modal,
.congratulations-modal,
.rank-popup,
.level-modal,
.congratulations_popup {
    width: 94%;
    max-width: 320px;
    margin: 0 auto;
}



#qaDeletePopup,
#qaStreakPopup,
#dailyStreakBonus,
#insufficientCoinsPopup,
#levelCompletePopup,
#extraScratchPopup,
#invitePopup,
#congratulationsPopup,
#rankBreakupPopup,
#levelOneUnlocked,
#levelTwoUnlocked,
#levelThreeUnlocked,
#levelFourUnlocked,
#levelFiveUnlocked,
#levelSixUnlocked,
#levelSevenUnlocked,
#levelEightUnlocked,
#levelNineUnlocked,
#levelTenUnlocked,
#whatWillUget1,
#whatWillUget2,
#whatWillUget3,
#whatWillUget4,
#whatWillUget5,
#whatWillUget6,
#whatWillUget7,
#whatWillUget8,
#whatWillUget9,
#whatWillUget10,
#newCongratulationsPopup {
    display: none;
    align-items: center;
}

#qaDeletePopup.show,
#qaStreakPopup.show,
#dailyStreakBonus.show,
#insufficientCoinsPopup.show,
#levelCompletePopup.show,
#extraScratchPopup.show,
#invitePopup.show,
#congratulationsPopup.show,
#rankBreakupPopup.show,
#levelOneUnlocked.show,
#levelTwoUnlocked.show,
#levelThreeUnlocked.show,
#levelFourUnlocked.show,
#levelFiveUnlocked.show,
#levelSixUnlocked.show,
#levelSevenUnlocked.show,
#levelEightUnlocked.show,
#levelNineUnlocked.show,
#levelTenUnlocked.show,
#whatWillUget1.show,
#whatWillUget2.show,
#whatWillUget3.show,
#whatWillUget4.show,
#whatWillUget5.show,
#whatWillUget6.show,
#whatWillUget7.show,
#whatWillUget8.show,
#whatWillUget9.show,
#whatWillUget10.show,
#newCongratulationsPopup.show {
    display: flex;
}



#pageLoader {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 77%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #e0e0e0;
    border-top: 5px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.leaderboard-page {
    padding-bottom: 0;
}

.leaderboard {
    padding: 5px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.lb_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lb_left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lb_left button {
    background-color: transparent;
    outline: none;
    border: 0;
    line-height: 0;
    cursor: pointer;
}

.lb_back {
    font-size: 22px;
}

.lb_title {
    font-size: 14px;
}

.lb_select_wrap {
    position: relative;
}

.lb_select {
    -webkit-appearance: none;
    padding: 8px 0;
    border-radius: 75px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-align-last: center;
    outline: none;
    width: 110px;
}


.lb_select_wrap::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 11px;
    height: 11px;
    background: url("../img/filter.svg") no-repeat center/contain;
    pointer-events: none;
}


.lb_select_wrap::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 52%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: url("../img/arrow_drop_down.svg") no-repeat center/contain;
    pointer-events: none;
}



.lb_tabs {
    display: flex;
    gap: 10px;
    /* overflow-x: hidden; */
    margin: 16px -20px 6px;
    border-bottom: 1px solid #666;
    justify-content: center;
}

.lb_tab {
    font-size: 12px;
    color: #fff;
    padding: 8px 22px;
    border-radius: 22px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 20px;
}

.lb_tab_active {
    background: #fff;
    color: #000;
}



.lb_podium_section {
    position: relative;
    padding-top: 0px;
    text-align: center;
}

.lb_podium img {
    width: 500px;
}

.lb_arc {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 260px;
    background: rgba(0, 0, 0, .45);
    border-radius: 0 0 260px 260px;
    z-index: 0;
}



.lb_users {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    left: 0px;
    right: 0px;
    top: 15px;
    gap: 18px;
}

.lb_user {
    text-align: center;
}

.lb_user.center {
    margin-bottom: 18px;
}

.lb_avatar {
    width: 70px;
    height: 70px;
    position: relative;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
}

.lb_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lb_crown {
    position: absolute;
    top: -20px;
    left: 60%;
    transform: rotate(19deg);
    width: 50px !important;
    height: 50px !important;
    border-radius: 0 !important;
}

.lb_name {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    width: 70px;
    overflow: hidden;
    text-wrap-mode: nowrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb_coin {
    margin-top: 4px;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-weight: 500;
}

.lb_coin img {
    width: 18px;
    height: 18px;
    margin-top: -2px;
}

.lb_podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -70px;
    padding-top: 22px;
}


.lb_block {
    position: relative;
    width: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 800;
    color: #fff;

}

.lb_list_parent {
    width: 111%;
}

.lb_list {
    background: #fff;
    border-radius: 26px 26px 0 0;
    padding: 20px;
    position: relative;
    z-index: 5;
    bottom: 0;
    height: 350px;
    overflow: hidden;
}

/* inner scroll area */
.lb_list_body {
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
    padding-bottom: 68px;
}

.lb_list_header {
    display: grid;
    grid-template-columns: 70px 1fr 110px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    gap: 16px;
}

.row_avatar img {
    width: 40px;
}

.lb_list_coins {
    text-align: right;
    padding-left: 0px !important;
}

.lb_list_header span {
    /* padding-left: 10px; */
    /* padding-right: 50px; */
    text-align: center;
}

.lb_list_header span:nth-child(2) {
    text-align: left;
    padding-left: 15px;

}

.lb_row {
    display: grid;
    grid-template-columns: 53px 1fr 77px;
    align-items: center;
    background: #EEEEEE;
    border-radius: 12px;
    padding: 15px 10px;
    margin-bottom: 10px;
}

.lb_left img {
    width: 22px;
    cursor: pointer;
}


.lb_rank {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-align: center;
}


.lb_user_cell {
    display: flex;
    align-items: center;
    gap: 13px;
}

.lb_row_avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}


.lb_row_avatar.default {

    position: relative;
}

.lb_row_name {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}

.lb_row_name.you {
    font-weight: 800;
}


.lb_row_coins {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    text-align: center;
}

.lb_row_coins img {
    width: 16px;
    margin-top: 0px;
}

.lb_row_avatar img {
    width: 40px;
    height: 40px;
}

.coin_red {
    color: #f97316;
    font-weight: 700;
}

.coin_black {
    color: #000;
    font-weight: 700;
}


.you_row {
    position: fixed;
    bottom: -10px;
    display: grid;
    grid-template-columns: 50px 1fr 80px;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 360px;
    padding: 15px 32px;
    margin-bottom: 10px;
    z-index: 5;
    background: #fff4d6;
    box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.08);
}

.leaderboard-cards .you_row {
    border-radius: 0;
}

.you_row .lb_row_coins {
    text-align: left;
    justify-content: start;
    padding-left: 10px;
}

.addtohome-overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 25%);
    display: none;
    z-index: 999;
}

.bottom-sheet {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 22px 22px 0 0;
    padding: 26px 35px 25px;
    transition: transform 0.35s ease-out;
}

@media (max-width:500px) {
    .bottom-sheet {
        max-width: 100%;
    }
}

.bottom-sheet.show {
    transform: translate(-50%, 0);
}

.bottom-sheet h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin: 0;
    margin-bottom: 24px;
}

.bottom-sheet .brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.bottom-sheet .brand .logo img {
    width: 230px;
    height: auto;
}

.brand-text {
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-text .name {
    font-size: 20px;
    font-weight: 900;
}

.brand-text .tag {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    background: #ffd15c;
    border-radius: 12px;
}

.bottom-sheet .buttons {
    display: flex;
    gap: 14px;
}

.bottom-sheet .buttons button {
    flex: 1;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    cursor: pointer;
}

.bottom-sheet .buttons .cancel {
    background: #fff;
    border: 2px solid #EB5A1A;
    color: #000;
}

.bottom-sheet .buttons .add {
    background: #EB5A1A;
    border: none;
    color: #fff;
}

.bg-screen .users {
    background: #ffffff;
    border-radius: 16px;
    margin-top: 10px;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.users .tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding-top: 8px;
}

.users .tabs .tab {
    flex: 1;
    text-align: center;
    padding: 14px;

    font-weight: 300;
    color: #000;
    cursor: pointer;
}

.users .tabs .tab.active {
    color: #ff7a00;
    border-bottom: 3px solid #ff7a00;
    font-weight: 700;
}


.users .content {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    min-height: 0;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.users .content::-webkit-scrollbar {
    display: none;
}

/* =====================
   TAB CONTENT
===================== */
.users .content .tab-content {
    display: none;
}

.users .content .tab-content.active {
    display: block;
}

/* =====================
   TEXT ELEMENTS
===================== */
.users .content .date {
    font-size: 15px;
    margin: 8px 0 12px;
    padding: 0 16px;
}

.users .content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    padding: 0 16px;
}

#openScreen {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: #ff7a00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin: 40px;
}

.common-links-tabs {
    margin-top: 12px;
    border: none;
    padding: 0;
}

.common-links-tabs .tab {
    text-align: center;
}



.rules-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
}

.rules-card::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.rules-card ul {
    list-style: none;
}

.rules-card li {
    margin-bottom: 20px;
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.rules-card li img {
    width: 8px;
    height: auto;
}

.rules-footer-text {
    margin-top: 35px;
    text-align: center;
    font-size: 13px;
    color: #F8F8F8;
    font-weight: 400;
    padding-bottom: 20px;
}

.rules-footer-text a {
    color: #ED7300;
    cursor: pointer;
}

/* Streak Restored Toast msg*/
.qa-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1f1f1f;
    color: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}

.qa-toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.qa-toast-icon {
    font-size: 18px;
}

.qa-toast-close {
    margin-left: auto;
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
}



.streak-ad-banner {
    background: url(../img/streak-banner.webp) no-repeat center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 6px;
    width: 100%;

}

.streak-ad-banner .ad-text {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-align: left;
    line-height: 1.3;
    gap: 6px;
}

.streak-ad-banner .ad-text .icon {
    margin-right: 8px;
    line-height: 0;
}

.streak-ad-banner .ad-text .icon img {
    width: 20px;
}

.streak-ad-banner .ad-btn {
    position: relative;
    text-decoration: none;
}

.streak-ad-banner .ad-text strong {
    color: #6cff4f;
}

.streak-ad-banner .ad-btn img {
    width: 85px;
}

.streak-ad-banner .ad-btn::after {
    content: 'Ad';
    font-size: 8px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: -1px;
    right: -6px;
}

.streak-ad-banner .ad-btn:hover {
    opacity: 0.9;
}

/* daily rewards slider */
.qa_coinwallet_rewards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.qa_coinwallet_rewards::-webkit-scrollbar {
    display: none;
}

.qa_coinwallet_reward_item,
.qa_dailyreward_box {
    flex: 1;
    scroll-snap-align: start;
}

/* daily rewards slider ends here */


/* ...existing code... */
.quiz-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: none;
}

.quiz-animate.visible {
    animation: quizFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes quizFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    60% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.qa_no_contest_box {
    background: #fffbe7;
    border-radius: 8px;
    box-shadow: 0 2px 16px #ffb40022;
    padding: 18px;
    margin: 14px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ffe2a0;
}

.qa_no_contest_img {
    display: block;
}

.qa_no_contest_title {
    font-size: 16px;
    letter-spacing: 0.01em;
}

.qa_no_contest_text {
    text-align: center;
    font-size: 1rem;
    color: #888;
    margin: 0;
}

.qa_sq_page .category-slider {
    margin-top: 0;
}

.quizoptions-container .option {
    padding: 8px;
    padding-right: 44px;
}

.quizoptions-container .option.wrong::after,
.quizoptions-container .option.correct::after {
    right: 26px;
}

.top-logo-area {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 80px;
}

.top-logo-area img {
    width: 100%;
    height: auto;
}

.levelcomplete-modal .streak-lead {
    margin-top: 28px;
}

.entry-card .coins {
    font-size: 22px;
    align-items: flex-start;
    margin: 0;
    margin-top: 5px;
}

.contest-section .no-contests {
    text-align: center;
    color: #fff;
}


.dailystreak-card .coins img {
    margin-right: 0;
    margin-top: -3px;
}

.dailystreak-card .coins span {
    color: #000;
    line-height: 16px;
}

#dailyStreakBonus .btn {
    width: 170px;
    display: block;
    margin: 32px auto 0;
    cursor: pointer;
}

#dailyStreakBonus .btn img {
    width: 100%;
}

/* Hide edit badge by default */
.unique-img-edit-badge {
    display: none;
}

/* Show only in edit mode */
.unique-editing .unique-img-edit-badge {
    display: flex;
    /* or block */
}

.reward-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

.reward-card {
    cursor: pointer;
}


#scratchCards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#scratchCards::-webkit-scrollbar {
    background: #f5f5f5;
}

#scratchCards::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 4px;
}

#scratchCards>div {
    min-width: 144px;
    max-width: 144px;
    width: 144px;
    height: 150px;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
}

#scratchCards .qa_dailyreward_box.qa_dailyreward_lose {
    border: solid 1px #f2b28a;
    background-image: url(../img/scratch_card_bg.png);
}

.ranking-tooltip {
    position: relative;
    display: inline-block;
}


.ranking-box {
    background-color: #FFE9E0;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    position: absolute;
    width: 328px;
    z-index: 99;
    right: 0;
}

.ranking-tooltip:hover .ranking-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.ranking-box>div,
.ranking-tooltip {
    width: 40px;
    height: 34px;
    background-color: #EB5A1A;
    border-radius: 4px;
    padding: 8px;
}

.ranking-box>div img,
.ranking-tooltip img {
    width: 100%;
}

.ranking-tooltip {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    right: 9px;
    top: 119px;
    width: 20px;
    height: 20px;
    padding: 2px;
    z-index: 99;
}

.ranking-box p {
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

.leaderboard-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    width: 360px;
    margin: auto;
    height: calc(100% - 114px);
    top: 114px;
}

@media (max-width:500px) {
    .leaderboard-overlay {
        width: 100%;
        left: 0;
    }
}

.overlay-card {
    text-align: center;
    padding: 24px;
    max-width: 300px;
    color: #fff;
}


.lock-icon {
    width: 58px;
    margin-bottom: 16px;
    margin: 0 auto 12px;
}

.lock-icon img {
    width: 100%;
}

.overlay-card h3 {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 16px;
}



.overlay-card .btn-home {
    border: 0;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    width: 140px;
    margin-top: 26px;
}


.overlay-card .btn-home img {
    width: 100%;
}

.leaderboard-overlay .header-card {
    position: absolute;
    top: 8px;
    left: 16px;
}

.no-winners-found {
    margin-top: 16px;
    text-align: center;
}

.no-winners-found p,
.not-found {
    text-align: center;
    color: #fff;
    font-size: 15px;
}

.not-found {
    margin-top: 15px;
}

@media (min-width:1466px) {
    h1 {
        margin: 34px 0 20px;
        font-size: 16px;
    }

    .qureka-logo {
        padding-top: 46px;
    }

    .qureka-logo img {
        width: 230px;
    }

    .redirection-stripe {
        bottom: 60px;
    }

    .real-icon img {
        width: 270px;
    }

    .real-icon {
        margin-bottom: 60px;
    }
}

.quizoptions-container .option.correct,
.quizoptions-container .option.wrong {
    border: 0;
}

.btn-hover-animate {
    transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.18s;
    will-change: transform;
    cursor: pointer;
}

.btn-hover-animate:hover,
.btn-hover-animate:focus {
    transform: scale(1.04);
}

.btn-poping-animate,
.mega-contest .play-btn {
    animation: popLoop 2s ease-in-out infinite;
}

@keyframes popLoop {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.card-loading {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-loading.visible {
    opacity: 1;
    transform: translateY(0);
}

.leaderboard-cards {
    flex-grow: 1;
    align-items: end;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

/*.ad-placeholder {
    background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 18px;
    text-align: center;
}*/
.ad-placeholder {
    width: 100%;
    /* min-width: 250px;
    min-height: 90px; */
}

.quiz-rules-list li {
    flex-direction: column;
}

.quiz-rules-list li ul li {
    margin-bottom: 6px;
}


.signup-info-card {
    border-bottom: 28px solid var(--primary-orange);
    position: relative;
}

.signup-info-card::after {
    content: 'Register Now And Be In The Game';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 13px;
}

.common-content-container .users .content p {
    padding: 0;
}

.common-content-container h6 {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
}

.common-content-container h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 4px 0px 0;
    color: #000;
}

.common-content-container ul {
    padding-left: 15px;
}

.common-content-container ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #000;
}

.common-content-container a {
    color: var(--primary-orange);
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 16px;
}

.table-responsive table {
    min-width: 480px;
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.table-responsive thead th {
    background: #f7f7f7;
    padding: 8px 12px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    font-size: 12px;
}

.table-responsive tbody td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    line-height: 20px;
}

.signup-info-card h2 {
    color: #000;
}

.recentwinner-sec {
    padding-bottom: 80px;
}

.hurray-popup-card {
    background: white;
    width: 90%;
    max-width: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 90%;
    overflow: auto;
    padding: 0 16px 26px;
    scrollbar-width: none;
}

.hurray-popup-card .header-section {
    text-align: center;
    padding: 24px 20px 14px;
    background-image: url('https://www.transparenttextures.com/patterns/confetti.png');
    background-size: contain;
}

.hurray-popup-card .hurrayclose-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.hurray-popup-card .hurray-text {
    color: #EB5A1A;
    font-weight: 800;
    font-size: 22px;
    margin: 0;
}

.hurray-popup-card .winner-title {
    font-size: 21px;
    margin: 0px 0;
    color: #000;
}

.hurray-popup-card .stats-box {
    background-color: #F3F3F3;
    padding: 15px 10px;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    color: #000;
    width: 100%;
    ;
}

/* Reward Banner */
.reward-banner {
    margin: 14px 0;
    background: url(../img/hurray-bg.png) no-repeat center/cover;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    overflow: hidden;
}

.reward-banner::before {
    content: '';
    height: 42px;
    width: 2px;
    background-color: #EB5A1A;
    left: 0;
    position: absolute;
    bottom: 20px;
}

/* .reward-info {
    flex: 1;
    z-index: 2;
    border-left: 4px solid #e65100;
    padding-left: 15px;
} */

.reward-label {
    font-size: 13px;
    font-weight: 600;
}

.reward-name {
    font-size: 21px;
    font-weight: 800;
    margin-top: 5px;
}

.reward-image {
    width: 36px;
    position: absolute;
    right: 38px;
    /* height: 100px; */
    /* height: auto; */
    z-index: 2;
}


.instruction-text {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 17px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 8px 2px;
    border: 1px solid #707070;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    font-size: 14px;
}

.form-group .file-upload {
    border: 1px dashed #707070;
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    background: #F3F3F3;
}

.form-group img {
    width: 11px;
}

.hurray-popup-card a {
    text-align: center;
    color: #EB5A1A;
    font-size: 15px;
}

.hurray-popup-card .claimbtn {
    margin-top: 26px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    width: 120px;
}

.hurray-popup-card .claimbtn img {
    width: 100%;
}

.sendotp-section,
.claim-section,
.resend-box {
    text-align: center;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.otp-field {
    width: 33px;
    flex: 1;
    height: 33px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.otp-field.error {
    border-color: #FF0C0C !important;
}

.otp-field.success {
    border-color: #16A710 !important;
}

.resend-text {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.error-text {
    color: #FF0C0C;
    font-size: 14px;
    margin: 4px 0 0 0;
}

.success-popup {
    background: white;
    width: 100%;
    max-width: 280px;
    padding: 18px 20px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.close-icon {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.check-container {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.success-check-circle {
    width: 48px;
    height: 48px;
    background-color: #16A710;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.resend-otp-btn {
    background-color: transparent;
    outline: none;
    border: 0;
    color: #EB5A1A;
    font-size: 15px;
    border-bottom: 1px solid;
    cursor: pointer;
}

.checkmark {
    display: inline-block;
    width: 14px;
    height: 25px;
    border: solid white;
    border-width: 0 6px 6px 0;
    transform: rotate(45deg);
    margin-top: -5px;
}

.success-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-black);
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.success-message {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

#hurrayPopup.show,
#successPopup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.stat-card {
    flex: 1;
    border-radius: 8px;
    padding: 12px 5px;
    text-align: center;
    color: white;
    box-shadow: 0px 3px 6px #00000029;
}

.stat-card.orange {
    background: linear-gradient(180deg, #EB5A1A 0%, #762D0D 100%);
}

.stat-card.green {
    background: linear-gradient(180deg, #16A710 0%, #0B5408 100%);
}

.stat-card.dark {
    background: linear-gradient(180deg, #484848 0%, #303030 100%);
}

.stat-card .label {
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.stat-card .value {
    font-size: 48px;
    font-weight: 800;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    margin: 20px 0 10px 0;
}

.section-header h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.badge {
    background: #FFE4D9;
    color: #EB5A1A;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.reward-list {
    background: #ffffff;
    border-radius: 10px;
    padding: 12px;
}

.reward-item {
    display: flex;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #e9e8e8;
}

.reward-item:last-child {
    border-bottom: none;
}

.reward-img {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    object-fit: cover;
}

.reward-details h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.reward-details p {
    margin: 2px 0;
    font-size: 10px;
    color: #6F6F6F;
    ;
}

.rank-tag {
    color: #d35400;
    font-weight: bold;
}

.dashboard-container .btn {
    margin-top: 8px;
    width: 110px;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    border: 0;
}

.dashboard-container .btn img {
    width: 100%;
}

.claimed-btn {
    background: #ff7043;
    color: white;
    opacity: 0.8;
}

.reward-details {
    width: 100%;
}

.claimsection {
    display: flex;
    justify-content: space-between;
}

.claimsection p {
    margin-top: 8px;
    color: #000;
}

#contestList .qa_sq_card {
    margin-top: 0;
}

.mega-title-tooltip {
    cursor: pointer;
}

.mega-title-tooltip:hover::after {
    content: attr(title);
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    background: #222222e3;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    white-space: pre-line;
    z-index: 10;
    font-size: 14px;
    min-width: 180px;
    max-width: 320px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    pointer-events: none;
    text-align: center;
}

.qa_coinwallet_minus {
    color: #f26a21;
    font-weight: 800;
}

@media (min-width:1466px) {
    .lb_list {
        height: 520px;
    }
}

.intro-gif-box {
    width: 86%;
    margin: 0 auto;
    border: 1px solid #ffffff57;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 20px;
    height: 308px;
}

.intro-gif-box video {
    object-fit: fill;
}

#introVideo {
    width: 360px;
}

.install-banner {
    position: fixed;
    max-width: 360px;
    transform: translate(-50%, 0%);
    left: 50%;
    top: 0;
    width: 100%;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: transparent linear-gradient(106deg, #FFFCE2 0%, #FFDCB4 100%) 0% 0% no-repeat padding-box;
    z-index: 9;
    box-sizing: border-box;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 0px 0px 10px 10px;
}

.install-banner__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.install-banner__left img {
    width: 32px;
    /* height: 30px; */
}

.install-banner__left h3 {
    font-size: 12px;
    margin: 0;
}

.install-banner__text {
    max-width: 150px;
}

.install-banner__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.install-banner__btn {
    padding: 7px 12px;
    border-radius: 10px;
    border: 2px solid #FFCE95;
    background: #fff;
    color: #EF6820;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0px 3px 6px #00000029;
    border: 2px solid #FFCE95;
}

.install-banner__close {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.install-banner.hide {
    transform: translateY(-100%);
    opacity: 0;
}


/* #mainContainer {
    padding-top: 58px;
}
 */


@media (max-width:500px) {
    .lb_list_parent {
        width: 100%;
    }

    .lb_list {
        width: calc(100% + 36px);
        left: -18px;
    }

    .leaderboard-cards .you_row {
        width: 100%;
        max-width: 100%;
    }

    #introVideo {
        width: 100%;
    }

    .install-banner {
        max-width: 100%;
        left: 0;
        transform: inherit;
    }

    .main-container {
        height: var(--app-height);
    }


}

@media (max-width:360px) {
    .qa_level_row {
        width: 194px;
    }

    .qa_streakpg_week {
        width: 204px;
    }

    #dailyStreakBonus .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media (max-width:339px) {
    .install-banner__left img {
        height: 25px;
        width: 25px;
    }

    .install-banner__left h3 {
        font-size: 10px;
    }

    .install-banner__btn {
        font-size: 7px;
    }

    .install-banner {
        padding: 7px 6px;
    }

    .lb_tab {
        font-size: 10px;
    }

    /* #mainContainer {
        padding-top: 48px;
    } */
}


@media (min-width:700px) and (min-height:1000px) {
    .lb_list {
        height: 912px;
    }
}