/*=============== FONTS ===============*/
@import url('https://api.fontshare.com/v2/css?f[]=tanker@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
    --body-font-primary: "Nunito", sans-serif;
    --secondary-font: "Tanker", sans-serif;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-yellow: #FFC100;
    --color-blue: #54AAF5;
    --color-green: #008248;
    --color-orange: #FF510D;
    --color-ink: #242424;
    --screen-max: 576px;
    --form-label-size: 24px;
    --primary-btn-shadow: 0px -1.97px 11.97px 0px #00000033 inset, 0px 0px 6px 0px #FB3C00B2;

    /* Typography */
    --fs-h1: 1.5rem;
    --fs-h2: 1.5rem;
    --fs-h3: 1.75rem;
    --fs-smallest: 0.5rem;

    /* Font Weight */
    --fw-reg: 400;
    --fw-med: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
}

/*=============== MEDIA QUERY CSS ===============*/
@media (min-width: 992px) {
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*=============== BASE ===============*/
html {
    scroll-behavior: smooth;
    overflow: hidden;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: var(--body-font-primary);
    color: var(--color-ink);
}

a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
    font-style: normal;
    line-height: 1.2;
}

img {
    vertical-align: middle;
    border-style: none;
}

p {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--thm-text);
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.text-start {
    text-align: start;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

.row {
    display: flex;
}

.d-flex {
    display: flex;
}

.jc-center {
    justify-content: center;
}

.jc-start {
    justify-content: flex-start;
}

.jc-end {
    justify-content: flex-end;
}

.jc-sb {
    justify-content: space-between;
}

.ai-start {
    align-items: flex-start;
}

.ai-center {
    align-items: center;
}

.ai-end {
    align-items: flex-end;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mt-0 {
    margin-top: 0rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.px-0 {
    padding-inline: 0;
}

.px-1 {
    padding-inline: 1rem;
}

.text-upp {
    text-transform: uppercase;
}

.w-100 {
    width: 100%;
    height: auto;
}

.img-fit {
    width: 100%;
    height: auto;
    display: block;
}

.pos-rel {
    position: relative;
}

.pos-stat {
    position: static;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/*=============== CUSTOM CSS STARTS ===============*/

.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    /* full screen */
}

.main-wrapper {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    /* full screen */
    display: flex;
    justify-content: center;
    align-items: stretch;
    background-color: #bfe0f7;
}

.blue-gradient-bg {
    background: linear-gradient(180deg, #0368D5 0%, #4f9cf3 40%, #8fc7f3 70%, #bfe0f7 100%);
}

/*=============== SPLASH SCREEN ===============*/

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background: linear-gradient(180deg, #0368D5 0%, #4f9cf3 40%, #8fc7f3 70%, #bfe0f7 100%);
}

.splash-inner {
    position: relative;
    width: 100%;
    max-width: var(--screen-max);
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 27px 18px 0;
}

/* LOGO */
.splash-logo {
    width: auto;
    height: 170px;
    opacity: 0;
    transform: scale(0.85);
    animation: logoFade 0.8s ease forwards;
}

.splash-logo,
.splash-text {
    position: relative;
    z-index: 2;
}

@keyframes logoFade {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* TEXT */
.splash-text {
    margin-top: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(60px);
    animation: textSlide 0.8s ease forwards;
    animation-delay: 1s;
}

@keyframes textSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splash-text h2 {
    font-family: var(--secondary-font);
    color: #F55C2C;
    font-size: 30px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    margin-top: 0;
    margin-bottom: 10px;
}

.splash-text p {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--fw-bold);
}

.splash-text .small {
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--fw-semi-bold);
    color: #2F2F2F;
    margin-top: 30px;
}

/* HIDE ANIMATION */
.splash-hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
}

/*=============== SPLASH SCREEN END ===============*/

/*=============== LOGIN SCREEN START ===============*/

.match-strip {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: var(--screen-max);
    transform: translateX(-50%);
    z-index: 5;
    height: 27px;
    padding: 0 8px;
    overflow: hidden;
    background: var(--color-black);
    color: var(--color-white);
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.match-strip__track {
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    animation: tickerMove 12s linear infinite;
}

.match-strip__divider {
    width: 13px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 2px;
    background: #e33a59;
    box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.32), inset -3px 0 0 rgba(0, 0, 0, 0.16);
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.screen-container {
    position: relative;
    width: 100%;
    max-width: var(--screen-max);
    margin-inline: auto;
    padding: 27px 18px 0;
    min-height: 100dvh;
}

.login-screen {
    opacity: 0;
    animation: loginFade 0.6s ease forwards;
  
}

@keyframes loginFade {
    to {
        opacity: 1;
    }
}

.stadium-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 50px;

    width: 100%;
    max-width: var(--screen-max);

    pointer-events: none;
    z-index: 1;
}

.brand {
    width: 100%;
    margin: 40px auto 0;
}

.brand img {
    width: 70px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.brand,
.mobile-form {
    position: relative;
    z-index: 2;
}

.mobile-form {
    margin-top: 54px;
}

.mobile-form__label {
    text-align: left;
    display: block;
    margin-bottom: 16px;
    font-family: var(--secondary-font);
    color: var(--color-white);
    font-size: var(--form-label-size);
    line-height: 0.92;
    text-transform: uppercase;
    font-weight: var(--fw-reg);
}

.mobile-form__field {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0px -2.15px 2.15px 0px #0000001A inset, 0px 0px 0px 0px #FFFFFF;
}

.mobile-form__code {
    flex: 0 0 auto;
    color: #2F2F2F99;
    font-size: 0.98rem;
    font-weight: var(--fw-semi-bold);
}

.mobile-form input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #2F2F2F99;
    font: var(--fw-semi-bold) 0.98rem/1 var(--body-font-primary);
}

.mobile-form input::placeholder {
    color: #6f7a82;
    opacity: 1;
}

.bottom-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 40px 18px 8px;
    z-index: 1;
}

.primary-btn {
    width: 100%;
    height: 40px;
    border: 0;
    border-radius: 7px;
    background: #f04c1d;
    color: var(--color-white);
    box-shadow: var(--primary-btn-shadow);
    cursor: pointer;
    font-family: var(--secondary-font);
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
}

.primary-btn:active {
    transform: translateY(1px);
}

.footer-gradient::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    /* control fade height */

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            #ffffff 81.2%);

    z-index: 0;
}

.primary-btn,
.page-footer {
    position: relative;
    z-index: 3;
}

.page-footer {
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #383838;
    font-size: 0.48rem;
    font-weight: 600;
    line-height: 1.2;
}

.page-footer p {
    color: inherit;
    font-size: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.page-footer a {
    color: inherit;
    text-decoration: none;
}

.error-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #F05A2B;
}

.primary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/*=============== LOGIN SCREEN END ===============*/

/*=============== OTP SCREEN START ===============*/
/* OTP form spacing */
.otp-form {
    text-align: left;
    margin-top: 54px;
    position: relative;
    z-index: 2;
}

.otp-form .mobile-form__label {
    margin-bottom: 12px;
}

/* Sub text */
.otp-subtext {
    font-size: 14px;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    margin-top: 10px;
    color: #2F2F2FCC;
}

.otp-subtext .num {
    color: var(--color-white);
}

.edit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    cursor: pointer;
}

.edit-icon img {
    width: 12px;
    height: 12px;
    display: block;
}

/* OTP boxes layout */
.otp-boxes {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

/* OTP input boxes */
.otp-boxes input {
    width: 48px;
    height: 48px;
    text-align: center;
    font-size: 20px;
    color: #000 !important;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    outline: none;

    box-shadow:
        0px -2.15px 2.15px 0px #0000001A inset,
        0px 0px 0px 0px #FFFFFF;
}

/* Timer */
.otp-timer {
    margin-top: 26px;
    font-size: 14px;
    font-weight: var(--fw-semi-bold);
    line-height: 1.2;
    color: #2F2F2FCC;
}

.otp-timer #timer {
    font-weight: 800;
    color: #2F2F2F;
}

/* Resend button */
.resend-btn {
    margin-top: 14px;
    padding: 4px 14px;
    border-radius: 4px;

    border: 0.86px solid #F5F5F5;
    background: #FBFBFB;

    box-shadow: 0px -1.51px 3.03px 0px #00000024 inset;

    font-size: 12px;
    line-height: 1.2;
    font-family: var(--secondary-font);
    font-weight: var(--fw-reg);
    color: #F05A2B;

    cursor: not-allowed;
}

/* Enable state (after timer) */
.resend-btn.active:active {
    transform: translateY(1px);
    box-shadow:
        0px 1px 2px rgba(0, 0, 0, 0.1) inset;
}

/*=============== OTP SCREEN END ===============*/

/*=============== REGISTER SCREEN START ===============*/

.register-screen .brand {
    margin: 24px auto 0;
}

.register-form {
    text-align: left;
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.register-form h2.mobile-form__label {
    margin-bottom: 10px;
    margin-top: 0;
}

.register-subtext {
    font-size: 14px;
    margin: 10px 0 16px;
    color: #2F2F2FCC;
    font-weight: var(--fw-bold);
    line-height: 1.2;
}

/* smaller labels */
.small-label {
    font-size: 13px;
    font-weight: var(--fw-reg);
    line-height: 1.2;
    margin-bottom: 4px;
}

/* input field */
.form-field {
    width: 100%;
    height: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);

    box-shadow:
        0px -2px 2px rgba(0, 0, 0, 0.1) inset;
}

.form-field input,
.form-field select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    font-weight: var(--fw-semi-bold);
    color: #2F2F2F;
    font-family: var(--body-font-primary);
}

.form-field input::placeholder,
.form-field select::placeholder {
    color: #2F2F2F99;
}

/* country code */
.form-field .code {
    font-weight: 700;
    color: #2F2F2F99;
    font-size: 12px;
}

/* select dropdown */
.select-field select {
    appearance: none;
}

/* gender buttons */
.gender-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.gender-btn {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: #EDEDED;
    font-weight: 600;
    cursor: pointer;
}

.gender-btn.active {
    background: #4F9CF3;
    color: #fff;
}

/* checkboxes */
.checkbox-group {
    font-size: 8px;
    color: var(--color-black);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkbox-group input {
    appearance: none;
    width: 10px;
    height: 10px;
    border: 1px solid var(--color-blue);
    border-radius: 2px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.checkbox-group input:checked {
    background-color: var(--color-blue);
}

.checkbox-group input:checked::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 3px;
    width: 3px;
    height: 6px;
    border: solid var(--color-white);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.checkbox-group span {
    color: #f04c1d;
    font-weight: var(--fw-med);
}

/*=============== REGISTER SCREEN END ===============*/

/*=============== HOME SCREEN START ===============*/
.main-content {
    position: relative;
    z-index: 2;
}

.blue-footer-gradient::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #8bcefb 100%);
    z-index: 0;
}

.menu-header {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-logo {
    width: auto;
    height: 48px;
}

/* Hamburger Icon */
.hamburger {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    height: 2px;
    background: #ffffff;
    display: block;
    border-radius: 4px;
    transition: 0.3s;
}

/* Different widths like your image */
.hamburger span:nth-child(1) {
    width: 15px;
}

.hamburger span:nth-child(2) {
    width: 20px;
}

.hamburger span:nth-child(3) {
    width: 10px;
}

/* Offcanvas Mobile Menu Start */
/* MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background: #f2f2f2;
    transition: 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.mobile-menu.active {
    right: 0;
}

/* Background */
.menu-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 1;
}

/* Close */
.menu-close {
    position: absolute;
    top: 40px;
    right: 20px;
    width: 36px;
    height: 36px;
    font-weight: var(--fw-bold);
    border: 1px solid #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

/* Content */
.menu-content {
    position: relative;
    z-index: 2;
    margin-top: 110px;
    padding: 0 34px;
}

/* Items */
.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: var(--secondary-font);
    font-weight: var(--fw-reg);
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-black);
    text-decoration: none;
}

/* Icon */
.menu-item img {
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 12px;
    background: linear-gradient(180deg, #99CCFB 0%, #FCFBF7 100%);
    object-fit: contain;
}

/* Click effect */
.menu-item:active {
    transform: scale(0.96);
}

/* Logout */
.menu-logout {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: center;
    color: #D90505;
    font-family: var(--secondary-font);
    font-size: 18px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
}

.menu-logout img {
    width: 18px;
    margin-right: 6px;
}

/* Offcanvas Menu End */

.hi-points-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0 16px 0;
    gap: 8px;
}

.hi-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.name-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.name-box .name {
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: var(--fw-reg);
    color: var(--color-white);
    line-height: 1;
}

.clap-icon {
    width: auto;
    height: 28px;
}

.help-icon {
    width: auto;
    height: 28px;
}

.points-txt {
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    color: var(--color-white);
}

/* Stats Wrapper Start */
.stats-wrapper {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    padding: 0;
}

.stat-card {
    position: relative;

    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 6px;

    padding: 8px;
    border-radius: 16px;

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.20) 100%);

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        /* top light */
        inset 0 1px 0 #FFCC00;

    backdrop-filter: blur(6px);

    color: #fff;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.25),
            transparent 40%);

    pointer-events: none;
}

.stat-card img {
    width: auto;
    height: 30px;
}

.stat-text p {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
    opacity: 0.9;
}

.stat-text h3 {
    font-family: var(--secondary-font);
    margin: 4px 0 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    color: #3A3A3A;
}

/* Stats Wrapper End */

/* Win Match Start */
.win-card {
    position: relative;
    padding: 20px 14px 16px 14px;
    border-radius: 10px;
    text-align: center;

    background: linear-gradient(180deg,
            #99CCFB 0%,
            #FCFBF7 100%);

    border: 1px solid rgba(255, 255, 255, 0.9);

    box-shadow:
        inset 0 3px 8px rgba(255, 255, 255, 0.6),
        inset 0 -18px 30px rgba(0, 0, 0, 0.08);

    overflow: visible;
}

/* 🔥 TOP SHINE */
.win-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    border-radius: 10px;

    background: radial-gradient(ellipse at top left,
            rgba(255, 255, 255, 0.35),
            transparent 70%);

    pointer-events: none;
}

/* 🔥 DIAGONAL LIGHT */
.win-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.2) 10%,
            transparent 40%);
    pointer-events: none;
}

/* 🔥 SIDE CUT DOTS (both sides) */
.win-card .dot {
    position: absolute;
    bottom: 25%;
    width: 14px;
    height: 14px;
    background: #79b9f3;
    border-radius: 50%;

    z-index: 5;
    /* 🔥 bring above card */
}

.win-card .dot.left {
    left: -7px;
}

.win-card .dot.right {
    right: -7px;
}

/* Title */
.win-title {
    font-size: 28px;
    font-weight: var(--fw-reg);
    color: #F05A2B;
    margin-top: 0;
    margin-bottom: 4px;
}

/* Subtitle */
.win-subtitle {
    font-size: 12px;
    font-weight: var(--fw-med);
    color: var(--color-black);
    margin-bottom: 16px;
}

/* Countdown */
.countdown-box {
    font-family: var(--secondary-font);
    background: #e8e8e8;
    border-radius: 8px;
    padding: 12px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    color: #F05A2B;
    margin-bottom: 4px;

    box-shadow:
        inset 0 -1.5px 3px rgba(0, 0, 0, 0.14);
}

.play-btn {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 12px;

    display: none;
    /* ✅ only this */

    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;

    font-family: var(--secondary-font);
    font-size: 18px;
    color: var(--color-white);
    line-height: 1;

    background: #F05A2B;
    cursor: pointer;

    box-shadow:
        inset 0 -1.5px 3px rgba(0, 0, 0, 0.14);
}

.play-btn.active {
    display: flex;
}

/* icon size */
.play-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Note */
.win-note {
    font-size: 10px;
    color: var(--color-black);
    font-weight: var(--fw-bold);
}

/* Divider */
.divider {
    border-top: 1px dashed #bcbcbc;
    margin: 14px 0;
}

/* Winners */
.winners {
    width: 73px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f04e23;
    padding-bottom: 6px;
    margin: 22px auto 0;
}

.winners span {
    font-family: var(--secondary-font);
    color: #f04e23;
    font-weight: var(--fw-reg);
    font-size: 14px;
    line-height: 1;
}

/* icon */
.winners .crown-icon {
    width: auto;
    height: 16px;
}

/* Win Match End */

/* Almonds Benefit Start */
/* Section */
.benefits-section {
    padding: 16px 0 0 0;
    background-color: transparent;
}

/* Header */
.benefits-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.benefits-header h3 {
    color: var(--color-white);
    font-size: 18px;
    font-weight: var(--fw-reg);
    line-height: 1.2;
    margin: 0;
}

/* Button */
.view-all {
    background: #FBFBFB;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: var(--fw-reg);
    line-height: 1;
    color: #f04e23;
    cursor: pointer;
    box-shadow: inset 0 -1.5px 3px rgba(0, 0, 0, 0.14);
}

/* Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Card */
.benefit-card {
    position: relative;

    width: calc(25% - 7.5px);

    padding: 6px 6px 10px 6px;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    text-align: left;

    background: linear-gradient(180deg, #99CCFB 0%, #FCFBF7 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);

    overflow: hidden;
}

.benefit-card::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 10px;
    width: 8px;
    height: 4px;

    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 60%;

    background: radial-gradient(ellipse at top right,
            rgba(255, 255, 255, 0.35),
            transparent 70%);

    pointer-events: none;
}

/* Icon box */
.icon-box {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin-bottom: 12px;

    border-radius: 12px;
    background: rgba(255, 255, 255, 0.4);
}

/* 🔥 Image styling */
.icon-box img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Text */
.benefit-card p {
    max-width: 90%;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: var(--fw-reg);
    color: #3a3a3a;
    text-transform: uppercase;

    margin: 0;
    line-height: 1.2;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;

    /* 🔥 KEY FIX */
    word-break: break-word;
}

/* Almond Benefit End */
/*=============== HOME SCREEN END ===============*/

/*=============== IN GAME SCREEN START ===============*/
.bg-wrap {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.ingame-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.in-game-screen {
    position: relative;
    z-index: 2;
    padding: 8px 18px 0;
}

.in-game-screen .menu-header {
    padding: 6px 0;
}

.in-game-screen .menu-header .main-logo {
    width: auto;
    height: 54px;
}

.ingame-stats {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.glass-card {
    position: relative;
    flex: 1;

    display: flex;
    align-items: flex-start;
    gap: 8px;

    padding: 10px 12px;
    border-radius: 16px;

    /* GLASS BASE */
    background: rgba(255, 255, 255, 0.08);

    /* BLUR (glass effect) */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    /* BORDER (light glass edge) */
    border: 1px solid rgba(255, 255, 255, 0.25);

    /* INNER SHADOW (from your Figma: #FFE288 60%) */
    box-shadow:
        inset 0 1px 1px rgba(255, 226, 136, 0.6),
        inset 0 -8px 20px rgba(0, 0, 0, 0.35);

    overflow: hidden;
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: inherit;

    background: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.25),
            transparent 40%);

    pointer-events: none;
}

.glass-card img {
    width: 26px;
    height: 26px;
}

.stat-text p {
    font-size: 12px;
    color: var(--color-white);
    margin: 0;
    font-weight: var(--fw-reg);
}

.stat-text h3 {
    margin: 4px 0 0;
    font-size: 20px;
    color: var(--color-white);
    font-family: var(--secondary-font);
    font-weight: var(--fw-reg);
}

/* ===== GAME OVERLAY ===== */
.game-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease;
    z-index: 50;
}

/* active state */
.game-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== POPUP ===== */
.six-popup {
    width: 155px;
    height: 155px;

    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* IMAGE BACKGROUND */
    background: url('../images/its-six-popup-bg.png') no-repeat center center;
    background-size: cover;

    /* keep depth */
    box-shadow:
        inset 0 4px 10px rgba(255, 255, 255, 0.3),
        inset 0 -10px 20px rgba(0, 0, 0, 0.25);

    transform: scale(0.7);
    opacity: 0;

    transition: all 0.35s cubic-bezier(.2, .8, .2, 1);
}

/* popup animation */
.game-overlay.active .six-popup {
    transform: scale(1);
    opacity: 1;
}

/* TEXT */
.six-popup p {
    color: var(--color-white);
    font-size: 36px;
    margin: 0;
    font-family: var(--secondary-font);
    font-weight: var(--fw-reg);
    line-height: 1;
}

.six-popup h2 {
    margin: 2px 0 0;
    font-size: 58px;
    font-weight: var(--fw-reg);
    color: #2f2e2e;
    font-family: var(--secondary-font);
    line-height: 1;
}

/* ===== LIVE STATUS ===== */
.live-status {
    position: fixed;
    bottom: 32px;
    left: 18px;

    display: flex;
    align-items: center;
    gap: 5px;

    background: #E2F9E7;
    padding: 10px 14px;
    border-radius: 4px;
    border: 1px solid var(--color-white);

    z-index: 10;
}

/* TEXT */
.live-status p {
    margin: 0;
    font-size: 14px;
    font-weight: var(--fw-semi-bold);
    line-height: 1;
    color: #087E16;
}

/* DOT */
.live-dot {
    width: 10px;
    height: 10px;
    background: #087E16;
    border-radius: 50%;

    position: relative;
}

/* 🔥 BLINK EFFECT (white pulse) */
.live-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;

    background: var(--color-white);
    opacity: 1;

    animation: blinkDot 1s infinite;
}

@keyframes blinkDot {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    60% {
        transform: scale(1.8);
        opacity: 0.2;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

/*=============== IN GAME SCREEN END ===============*/

/*=============== LOOK AROUND SCREEN START ===============*/
.look-around-screen {
    position: relative;
    z-index: 2;
    padding: 8px 18px 0;
}

.look-section {
    position: absolute;
    bottom: 130px;
    left: 0;
    width: 100%;
    z-index: 5;
    text-align: center;
}

/* icons */
.look-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.camera-look-icon {
    width: 24px;
    height: auto;
}

.rotate-look-icon {
    width: 36px;
    height: auto;
}

/* content */
.look-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== ARROW ZONE (NEW) ===== */
.arrow-zone {
    position: relative;
    width: 62px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* BLUR BACKGROUND */
.arrow-zone::before {
    content: "";
    position: absolute;
    inset: 0;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* LEFT gradient */
.arrow-zone.left::before {
    content: "";
    position: absolute;
    inset: 0;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.07) 0%,
            rgba(255, 255, 255, 0) 89%);

    /* 🔥 REVERSED SHAPE */
    clip-path: polygon(0% 15%,
            100% 0%,
            100% 100%,
            0% 85%);

    opacity: 0.8;
}

/* RIGHT gradient */
.arrow-zone.right::before {
    content: "";
    position: absolute;
    inset: 0;

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    background: linear-gradient(to left,
            rgba(255, 255, 255, 0.07) 0%,
            rgba(255, 255, 255, 0) 89%);

    /* 🔥 REVERSED SHAPE */
    clip-path: polygon(0% 0%,
            100% 15%,
            100% 85%,
            0% 100%);

    opacity: 0.8;
}

/* TEXT */
.look-text p,
.look-text h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    color: var(--color-white);
    font-family: var(--secondary-font);
    margin-top: 0;
    margin-bottom: 0;
}

.look-text img {
    width: 18px;
}

/* ARROWS */
.arrow-zone .arrow {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 7px;
}

.arrow-zone .arrow img {
    opacity: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

/* ===== ANIMATION ===== */

/* LEFT */
.arrow.left {
    animation: moveLeft 1.2s infinite ease-in-out;
}

/* RIGHT */
.arrow.right {
    animation: moveRight 1.2s infinite ease-in-out;
}

@keyframes moveLeft {
    0% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-10px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.5;
    }
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.5;
    }
}

.look-section {
    pointer-events: none;
}

.look-section * {
    pointer-events: none;
}

/*=============== LOOK AROUND SCREEN END ===============*/

/*=============== TAP POINTING SCREEN START ===============*/
.tap-earn-screen {
    position: relative;
    padding: 8px 18px 0;
    z-index: 2;
}

.look-icons .pointing-icon {
    width: auto;
    height: 40px;
}

/*=============== TAP POINTING SCREEN END ===============*/

/*=============== ALMOND DETECT TAP SCREEN START ===============*/
.almond-detect-screen {
    position: relative;
    padding: 8px 18px 0;
    z-index: 2;
}

/* wrapper controls position */
.almond-wrap {
    position: absolute;

    top: 50%;
    right: 0;

    transform: translateY(-50%);

    z-index: 3;
}

/* image styling */
.almond-wrap img {
    width: 250px;
    /* adjust */
    height: auto;
    display: block;
}

/* ===== OVERLAY ===== */
.reward-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    z-index: 50;
}

.reward-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== CARD ===== */
.reward-card>* {
    position: relative;
    z-index: 2;
}

.reward-card {
    width: 208px;
    border-radius: 20px;
    padding: 20px;

    /* ✅ IMAGE BACKGROUND */
    background: url('../images/points-popup-bg.png') no-repeat center center;
    background-size: cover;

    text-align: center;
    position: relative;

    overflow: hidden;
}

.reward-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.15));

    border-radius: inherit;
    pointer-events: none;
}

/* CLOSE */
.reward-close {
    position: absolute;
    top: 10px;
    right: 10px;

    border: none;
    background: rgba(249, 249, 249, 0.78);

    border-radius: 50%;
    width: 17px;
    height: 17px;
    cursor: pointer;
    padding: 2px;
    font-size: 7px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* POINTS */
.reward-points {
    background: rgba(255, 255, 255, 0.4);
    padding: 7px 12px;
    border-radius: 14px;

    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.reward-points span {
    font-family: var(--secondary-font);
    font-size: 22px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: var(--color-black);
}

.reward-points img {
    width: auto;
    height: 20px;
}

/* TEXT */
.reward-title {
    font-size: 28px;
    line-height: 1.1;
    font-weight: var(--fw-reg);
    color: var(--color-white);
    font-family: var(--secondary-font);
    margin: 8px 0;
}

.reward-desc {
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: rgba(47, 47, 47, 0.8);
    margin-bottom: 12px;
}

/* BUTTONS */
.reward-btn {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    margin-top: 8px;
    font-weight: 600;
}

.reward-btn.secondary {
    font-family: var(--secondary-font);
    background: #FBFBFB;
    color: #f05a2b;
    border-radius: 8px;
    padding: 8px;
    font-size: 14px;
    font-weight: var(--fw-reg);

    box-shadow: inset 0px -1.5px 3px rgba(0, 0, 0, 0.14);
}

.reward-btn.primary {
    background: #f05a2b;
    color: var(--color-white);
    border-radius: 8px;
    padding: 8px;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: var(--fw-reg);

    box-shadow: inset 0px -1.5px 3px rgba(0, 0, 0, 0.14);
    margin-top: 8px;
}

.reward-btn.primary .play-icon {
    width: 12px;
    height: auto;
    margin-right: 6px;
}

/*=============== ALMOND DETECT TAP SCREEN END ===============*/

/*=============== BENEFITS COLLECTION SCREEN START ===============*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;

    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.back-button {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 7px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    z-index: 2;

    /* smooth animation */
    transition: transform 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease;

}

/* 🔥 PRESS EFFECT */
.back-button:active {
    transform: scale(0.88);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset;
}

.back-icon {
    width: 12px;
    height: auto;
}

.main-logo {
    width: auto;
    height: 64px;
}

.benefits-top-text {
    margin-bottom: 24px;
    margin-top: 10px;
}

.benefits-top-text h3 {
    font-family: var(--secondary-font);
    font-size: 24px;
    line-height: 1;
    font-weight: var(--fw-reg);
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--color-white);
}

.benefits-top-text p {
    font-size: 14px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    color: var(--color-white);
}

/* ===== DISABLED CARD ===== */
.benefit-card.disabled {
    position: relative;

    /* desaturated look */
    filter: grayscale(100%);
    opacity: 0.6;
    pointer-events: none;
}

/* overlay wash effect */
.benefit-card.disabled::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(2px);

    z-index: 2;
}

/* bring content above overlay */
.benefit-card.disabled>* {
    position: relative;
    z-index: 3;
}

/* icon faded */
.benefit-card.disabled .icon-box {
    background: rgba(255, 255, 255, 0.25);
}

.benefit-card.disabled .icon-box img {
    opacity: 0.5;
}

/* text faded */
.benefit-card.disabled p {
    color: #7a7a7a;
}

/* OVERLAY */
.benefit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;

    z-index: 50;
}

.benefit-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CARD */
.benefit-card-popup {
    width: 208px;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;

    background: url('../images/points-popup-bg.png') no-repeat center;
    background-size: cover;
}

/* CLOSE */
.benefit-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 17px;
    height: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-radius: 50%;
    border: none;
    background: rgba(249, 249, 249, 0.78);
    font-size: 7px;
    line-height: 1.1;
    cursor: pointer;
    z-index: 2;
}

.benefit-top-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.4);
    padding: 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.benefit-top-icon img {
    width: 20px;
    height: auto;
}

/* TEXT */
.benefit-title {
    font-size: 28px;
    line-height: 1.1;
    font-weight: var(--fw-reg);
    color: var(--color-white);
    font-family: var(--secondary-font);
    margin: 8px 0;
}

.benefit-desc {
    font-size: 12px;
    margin-bottom: 12px;
}

/* BUTTONS */
.benefit-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    margin-top: 8px;
}

.benefit-btn.view {
    background: #f05a2b;
    color: var(--color-white);
    border-radius: 8px;
    padding: 8px;
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: var(--fw-reg);
    box-shadow: inset 0px -1.5px 3px rgba(0, 0, 0, 0.14);
    margin-top: 8px;
}

/*=============== BENEFITS COLLECTION SCREEN END ===============*/

/*=============== MISSING OUT SCREEN START ===============*/
/* ===== MISSING OUT BOX ===== */
.missing-out-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    min-height: 75vh;
}

/* CONTENT */
.missing-content {
    max-width: 260px;
}

/* ICON */
.missing-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;

    border-radius: 16px;
    background: rgba(255, 255, 255, 0.4);

    display: flex;
    align-items: center;
    justify-content: center;
}

.missing-icon img {
    width: 30px;
    height: auto;
}

/* TITLE */
.missing-title {
    font-family: var(--secondary-font);
    font-size: 36px;
    color: var(--color-white);
    line-height: 1.1;
    font-weight: var(--fw-reg);
    margin: 0 0 10px;
}

.missing-title span {
    font-size: 42px;
    display: block;
    margin-top: 3px;
}

/* DESC */
.missing-desc {
    font-size: 16px;
    color: rgba(47, 47, 47, 0.8);
    line-height: 1.4;
    font-weight: var(--fw-bold);
    margin-bottom: 26px;
}

/* BUTTON */
.missing-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;

    background: #f05a2b;
    color: var(--color-white);

    font-family: var(--secondary-font);
    font-size: 18px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: inset 0px -1.5px 3px rgba(0, 0, 0, 0.14);
}

.missing-btn img {
    width: 18px;
}

/*=============== MISSING OUT SCREEN END ===============*/

/*=============== WINNERS SCREEN START ===============*/
/* WRAPPER */
.winners-wrapper {
    margin-top: 16px;
}

/* TITLE */
.winners-title {
    color: var(--color-white);
    font-size: 22px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    margin-bottom: 18px;
}

/* TABS */
/* WRAPPER */
.winners-tabs {
    display: flex;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 20px;

    /* 🔥 Figma gradient bg */
    background: linear-gradient(180deg, #99CCFB 0%, #FCFBF7 100%);

    /* border + soft depth */
    border: 1px solid #EDEDED;

    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -4px 10px rgba(0, 0, 0, 0.08);
}

/* TAB */
.winners-tabs .tab {
    flex: 1;
    border: none;
    padding: 8px;
    border-radius: 8px;

    font-family: var(--secondary-font);
    font-size: 20px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    cursor: pointer;

    background: transparent;
    color: #000;

    transition: all 0.2s ease;
}

/* ACTIVE TAB */
.winners-tabs .tab.active {
    background: #F05A2B;
    color: #fff;

    box-shadow:
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

/* PRESS EFFECT */
.winners-tabs .tab:active {
    transform: scale(0.96);
}

/* WEEK BAR - GLASS EFFECT */
.week-bar {
    margin: 0;
    padding: 10px;
    border-radius: 8px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: var(--color-white);
    font-size: 16px;
    line-height: 1.1;
    font-weight: var(--fw-reg);
    font-family: var(--secondary-font);

    /* GLASS BASE */
    background: rgba(255, 255, 255, 0.08);

    /* BLUR (glass effect) */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    /* BORDER (light glass edge) */
    border: 1px solid rgba(255, 255, 255, 0.25);

    /* INNER SHADOW (from your Figma: #FFE288 60%) */
    box-shadow:
        inset 0 1px 1px rgba(255, 226, 136, 0.6),
        inset 0 -8px 20px rgba(0, 0, 0, 0.35);

    overflow: hidden;
    position: relative;
}

.week-bar::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: inherit;

    background: linear-gradient(-45deg,
            rgba(255, 255, 255, 0.25),
            transparent 40%);

    pointer-events: none;
}

/* INNER CONTAINER */
.week-inner {
    width: 100%;
    max-width: 80%;
    /* 🔥 control side spacing */
    margin: 0 auto;
    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.week-text {
    text-align: center;
    flex: 1;
    font-size: 15px;
    line-height: 1;
    font-weight: var(--fw-reg);
}

/* arrows */
.week-bar .arrow {
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

/* 🔥 IMAGE SIZE CONTROL */
.week-bar .arrow img {
    width: 6px;
    height: auto;
    opacity: 1;
}

/* PRESS EFFECT */
.week-bar .arrow:active img {
    transform: scale(0.8);
}

/* scrollable winners */
.winner-list {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    scroll-behavior: smooth;
}

/* CARD */
.winners-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 22px;
    margin-top: 20px;
    height: calc(100dvh - 323px);

    display: flex;
    flex-direction: column;
    /* transition: height 0.3s ease; */
}

.winners-card.grand-box-active {
    height: calc(100dvh - 263px);
}

/* TITLE */
.winners-card h3 {
    font-family: var(--secondary-font);
    font-size: 18px;
    line-height: 1;
    font-weight: var(--fw-reg);
    margin-bottom: 14px;
    margin-top: 0;
}

/* SCROLL AREA */
.winner-list {
    overflow-y: auto;
    flex: 1;
}

/* ITEM */
.winner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.winner-item img {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 12px;
    background: linear-gradient(180deg, #99CCFB 0%, #FCFBF7 100%);
    object-fit: contain;
}

.winner-item .name {
    font-family: var(--secondary-font);
    font-size: 14px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    color: rgba(0, 0, 0, 0.6);
}

.winner-item .state {
    margin-left: 10px;
    font-family: var(--secondary-font);
    font-size: 12px;
    line-height: 1;
    font-weight: var(--fw-reg);
    background: rgba(84, 170, 245, 0.15);
    padding: 4px 8px;
    border-radius: 4px;
    color: #76bbf7;
}

/* NO DATA */
.no-winner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */
    text-align: center;
    height: 100%;
}

.no-winner h2 {
    color: #f05a2b;
    font-family: var(--secondary-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    margin-top: 0;
    margin-bottom: 14px;
}

.no-winner p {
    font-size: 14px;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: rgba(47, 47, 47, 0.8);
    margin: 0;
}

/* BUTTON */
.keep-playing-btn {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-top: 50px;

    background: #f05a2b;
    color: var(--color-white);

    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: inset 0px -1.5px 3px rgba(0, 0, 0, 0.14);
}

.keep-playing-btn img {
    width: 16px;
}

/* HIDE */
.hidden {
    display: none !important;
}

#weeklyContent,
#grandContent {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* GRAND WINNER CENTER */
.grand-winner {
    text-align: center;
    margin: auto;
}

.grand-crown {
    width: 32px;
    margin-bottom: 5px;
}

/* circle */
.grand-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FCCDBE;
    border: 1px solid #F05A2B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--secondary-font);
    font-size: 26px;
    color: #F05A2B;
    margin: 0 auto 5px;
}

/* box */
.grand-box img {
    width: 84px;
    height: auto;
    margin: 0 auto 12px;
}

/* name */
.grand-name {
    display: block;
    font-family: var(--secondary-font);
    font-size: 22px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: rgba(0, 0, 0, 0.6);
}

/* state */
.grand-state {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(84, 170, 245, 0.15);
    font-family: var(--secondary-font);
    font-size: 12px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: #76bbf7;
}

/* CONFETTI CONTAINER */
#grandContent {
    position: relative;
    overflow: hidden;
}

/* CONFETTI */
.confetti {
    position: absolute;
    width: 6px;
    height: 12px;
    border-radius: 8px;
    top: 0;
    /* 🔥 change from -20px to 0 */

    animation: fall linear infinite;

    will-change: transform;
    /* 🔥 smoother */
}

.confetti:nth-child(odd) {
    background: #ff5a5f;
}

.confetti:nth-child(even) {
    background: #f5c518;
}

.confetti:nth-child(3n) {
    background: #2ecc71;
}

.confetti:nth-child(4n) {
    background: #3498db;
}

.confetti:nth-child(5n) {
    background: #9b59b6;
}

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
    }

    100% {
        transform: translateY(120vh) rotate(360deg);
    }
}

/*=============== WINNERS SCREEN END ===============*/

/*=============== SUPER SCREEN START ===============*/

.super-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 75vh;
}

.super-content {
    max-width: 280px;
    width: 100%;
}

/* ICON */
.super-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.35);

    display: flex;
    align-items: center;
    justify-content: center;
}

.super-icon img {
    width: 32px;
    height: auto;
}

/* TITLE */
.super-title {
    font-family: var(--secondary-font);
    font-size: 36px;
    color: var(--color-white);
    line-height: 1;
    font-weight: var(--fw-reg);
    margin-bottom: 14px;
    margin-top: 14px;
}

.super-title span {
    display: block;
    font-size: 46px;
    margin-top: 6px;
}

/* DESC */
.super-desc {
    font-size: 16px;
    color: rgba(47, 47, 47, 0.8);
    font-weight: var(--fw-bold);
    line-height: 1.4;
    margin-bottom: 20px;
}

/* STATS */
.super-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* CARD */
.super-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    min-height: 46px;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(92, 172, 237, 0.96) 0%, rgba(116, 187, 244, 0.92) 48%, rgba(106, 182, 241, 0.96) 100%);
    border-top: 1px solid rgba(255, 204, 0, 0.95);
    border-right: 1px solid rgb(185 227 255 / 72%);
    border-bottom: 1px solid rgb(185 227 255 / 72%);
    /* border-left: 1px solid rgba(255, 204, 0, 0.55); */
    border-left: 1px solid rgb(255 255 255 / 55%);
    /* box-shadow:
        inset 0 1px 0 rgba(255, 226, 136, 0.6); */
    position: relative;
    overflow: hidden;
}

.super-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.super-card-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-white);
    font-weight: var(--fw-bold);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.super-card-left img {
    width: auto;
    height: 22px;
    flex-shrink: 0;
}

.super-card-value {
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: var(--fw-reg);
    color: var(--color-white);
    line-height: 1;
    position: relative;
    z-index: 1;
}

@media (max-width: 340px) {
    .super-card {
        min-height: 50px;
        padding: 10px;
        border-radius: 8px;
    }

    .super-card-left {
        gap: 10px;
        font-size: 14px;
    }

    .super-card-left img {
        width: 30px;
    }

    .super-card-value {
        font-size: 24px;
    }
}

/*=============== SUPER SCREEN END ===============*/

/*=============== LOADING SCREEN START ===============*/
/* SCREEN */
.loader-screen {
    position: fixed;
    inset: 0;
    background: #2b84d6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.6s ease;
}

.loader-screen.loader-hide {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* CENTER */
.loader-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* vertical center */
    align-items: center;
    /* horizontal center */
    text-align: center;
}

/* MASK CONTAINER */
.logo-mask {
    width: 208px;
    height: 220px;
    overflow: hidden;
    position: relative;
    /* 🔥 must be relative */
}

/* IMAGE */
.logo-full {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    opacity: 0;
    clip-path: inset(0 0 100% 0);
    /* 🔥 TOP HIDDEN */

    animation: logoReveal 3s ease forwards;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 0 100% 0);
    }

    30% {
        opacity: 1;
        clip-path: inset(0 0 70% 0);
    }

    60% {
        clip-path: inset(0 0 30% 0);
    }

    85% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* TEXT */
.loader-text {
    margin-top: 40px;
    font-size: 18px;
    color: var(--color-white);
    font-weight: var(--fw-semi-bold);
}

/* TEXT CHANGE */
.loader-text-change {
    animation: textFadeUp 0.4s ease;
}

@keyframes textFadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*=============== LOADING SCREEN END ===============*/

/*=============== HOW SLIDER START ===============*/

.how-slider-content {
    text-align: center;
    margin-top: 30px;
}

/* TITLE */
.how-slider-title {
    color: var(--color-white);
    font-size: 32px;
    line-height: 1.3;
    font-weight: var(--fw-reg);
    font-family: var(--secondary-font);
    margin-bottom: 30px;
    height: 54px;
}

.how-slider-title span {
    display: block;
}

/* SLIDER WRAPPER */
.how-slider {
    width: 100%;
    max-width: 260px;
    /* control width */
    margin: 0 auto;
    /* center */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100dvh - 330px);
    position: relative;
}

/* VIEWPORT */
.slider-viewport {
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

/* TRACK */
.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

/* SLIDE */
.slider-viewport .slide {
    min-width: 100%;
    height: 100%;
}

.slider-viewport .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 🔥 prevents overflow */
    border-radius: 12px;
    margin: 0 auto;
}

/* ARROWS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 35px;
    height: 35px;
    border-radius: 12px;
    border: none;

    /* 🔥 GRADIENT BG */
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.5) 100%);

    backdrop-filter: blur(6px);

    /* 🔥 DEPTH */
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 4px 10px rgba(0, 0, 0, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 5;
}

.slider-arrow img {
    width: 20px;
    height: auto;
}

/* LEFT / RIGHT */
.slider-arrow.prev {
    left: -30px;
}

.slider-arrow.next {
    right: -30px;
}

/* CLICK EFFECT */
.slider-arrow:active {
    transform: translateY(-50%) scale(0.9);
}

.how-slider-title small {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--fw-reg);
    color: rgba(255, 255, 255, 0.8)
}

.how-slider-title .line4 {
    margin-top: 2px;
    opacity: 0.9;
}

/*=============== HOW SLIDER END ===============*/

/*=============== HOW TO PLAY - SCROLL START ===============*/
/* allow scroll only on this screen */
.how-to-play-scroll {
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

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

.bottom-panel.normal-footer {
    position: relative;

    /* break out of container */
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);

    padding: 20px 18px 12px;
}

/* optional: center content nicely */
.bottom-panel.normal-footer .page-footer {
    max-width: 576px;
    margin: 0 auto;
}

/* Content CSS Start */
.htp-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 18px 0;
}

/* HOW TO PLAY - SCROLL CONTENT START */
.htp-section {
    position: relative;
    z-index: 2;
}

/* TITLE */
.htp-heading {
    font-family: var(--secondary-font);
    font-size: 24px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: 10px;
}

/* BOX */
.htp-box {
    position: relative;
    padding: 18px;
    border-radius: 16px;

    /* gradient from your figma */
    background: linear-gradient(180deg, #99CCFB 0%, #FCFBF7 100%);

    border: 1px solid rgba(255, 255, 255, 0.7);

    box-shadow:
        inset 0 3px 8px rgba(255, 255, 255, 0.6),
        inset 0 -18px 30px rgba(0, 0, 0, 0.08);
}

/* LIST */
.htp-list {
    padding-left: 16px;
    margin: 0;
}

.htp-list li {
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
    list-style-type: disc;
}

.htp-list li:last-child {
    margin-bottom: 0;
}

/* BULLET */
.htp-list li::marker {
    color: rgba(0, 0, 0, 0.6);
}

/* HOW TO PLAY - SCROLL CONTENT END */

/* HOW TO EARN - SCROLL CONTENT START */
.hte-heading {
    font-family: var(--secondary-font);
    font-size: 24px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: 10px;
}

.hte-points-section p.sub {
    font-size: 12px;
    line-height: 1.3;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    margin-bottom: 12px;
}

/* BOX */
.hte-box {
    position: relative;
    padding: 18px;
    border-radius: 16px;

    /* gradient from your figma */
    background: linear-gradient(180deg, #99CCFB 0%, #FCFBF7 100%);

    border: 1px solid rgba(255, 255, 255, 0.7);

    box-shadow:
        inset 0 3px 8px rgba(255, 255, 255, 0.6),
        inset 0 -18px 30px rgba(0, 0, 0, 0.08);
}

.hte-points-box .points-icon {
    width: 88px;
    height: auto;
    margin-bottom: 14px;
}

.hte-row {
    display: flex;
    align-items: flex-start;
    /* perfect vertical alignment */
    gap: 16px;
}

/* IMAGE WRAPPER */
.points-img-box {
    flex: 0 0 auto;
    position: relative;
    width: 90px;
}

.points-img-box.gold-overlay::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 110px;
    height: 110px;
    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(255, 220, 120, 0.1) 0%,
            rgba(255, 220, 120, 0.5) 40%,
            transparent 70%);

    z-index: 1;
}

.points-img-box.white-overlay::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 110px;
    height: 110px;
    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.3) 40%,
            transparent 70%);

    z-index: 1;
}

/* IMAGE (IMPORTANT) */
.almond-icon-hte {
    width: auto;
    height: 80px;
    display: block;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

/* TEXT */
.hte-row p {
    font-size: 12px;
    line-height: 1.3;
    font-weight: var(--fw-bold);
    color: rgba(0, 0, 0, 0.6);
}

.hte-row p span {
    color: #F05A2B;
}

.key-match {
    padding-top: 10px;
}

.key-match p {
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1.3;
    font-weight: var(--fw-reg);
    color: #2F2F2F;
}

.key-match p span {
    color: #F05A2B;
}

.divider-hte {
    height: 1px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 12px 0;
}

/* HOW TO EARN - SCROLL CONTENT END */

/* HOW TO WIN - SCROLL CONTENT START */
.htw-section {
    position: relative;
    z-index: 2;
}

/* TITLE */
.htw-heading {
    font-family: var(--secondary-font);
    font-size: 24px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: 10px;
}

/* BOX */
.htw-box {
    position: relative;
    padding: 18px;
    border-radius: 16px;

    /* gradient from your figma */
    background: linear-gradient(180deg, #99CCFB 0%, #FCFBF7 100%);

    border: 1px solid rgba(255, 255, 255, 0.7);

    box-shadow:
        inset 0 3px 8px rgba(255, 255, 255, 0.6),
        inset 0 -18px 30px rgba(0, 0, 0, 0.08);
}

/* LIST */
.htw-list {
    padding-left: 16px;
    margin: 0;
}

.htw-list li {
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 12px;
    list-style-type: disc;
}

.htw-list li:last-child {
    margin-bottom: 0;
}

/* BULLET */
.htw-list li::marker {
    color: rgba(0, 0, 0, 0.6);
}

.weekly-prize-box h3 {
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: #F05A2B;
    margin-bottom: 12px;
    margin-top: 0;
}

.weekly-prize-box p {
    font-size: 12px;
    line-height: 1.2;
    font-weight: var(--fw-bold);
    color: rgba(0, 0, 0, 0.6);
}

.divider-htw {
    margin: 14px 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.grand-prize-box h3 {
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--fw-reg);
    color: #F05A2B;
    margin-bottom: 12px;
    margin-top: 0;
}

/* HOW TO WIN - SCROLL CONTENT START */
/* Content CSS End */
/*=============== HOW TO PLAY - SCROLL END ===============*/

/*=============== RESPONSIVE START ===============*/

@media (max-width: 340px) {
    .screen-container {
        padding-inline: 14px;
    }

    .match-strip {
        font-size: 0.68rem;
    }

    .mobile-form input,
    .mobile-form__code {
        font-size: 0.88rem;
    }

    .bottom-panel {
        padding-inline: 14px;
    }

    .page-footer {
        font-size: 0.42rem;
    }
}

@media (max-height: 660px) {
    .how-slider-title {
        margin-bottom: 16px;
    }
}

@media (max-height: 630px) {

    .register-screen .brand img {
        width: 70px;
    }

    .register-screen h2.mobile-form__label {
        font-size: 20px;
    }

    .small-label {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .form-field {
        height: 34px;
    }

    .gender-btn {
        height: 34px;
    }
}

@media (max-height: 600px) {

    html,
    body {
        height: auto;
        min-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .page-wrapper {
        height: auto;
        min-height: 700px;
        overflow: visible;
    }

    .main-wrapper {
        height: auto;
        min-height: 700px;
        max-height: none;
        overflow: visible;
    }

    .screen-container {
        height: 700px;
        overflow: hidden;
    }

}

@media (min-height: 650px) {
    .register-screen .brand {
        margin: 30px auto 0;
    }
}

@media (min-height: 660px) {
    .form-field {
        height: 38px;
        margin-bottom: 14px;
    }

    .gender-group {
        margin-bottom: 14px;
    }
}

@media (min-height: 700px) {
    .small-label {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .form-field {
        height: 40px;
        margin-bottom: 14px;
    }

    .gender-group {
        margin-bottom: 14px;
    }
}

@media (min-height: 740px) {

    .brand img {
        width: 98px;
    }
}

@media (min-height: 750px) {
    .small-label {
        margin-bottom: 6px;
    }

    .form-field {
        height: 44px;
        margin-bottom: 16px;
    }

    .form-field input,
    .form-field select {
        font-size: 14px;
    }

    .form-field .code {
        font-size: 14px;
    }

    .gender-btn {
        height: 42px;
        font-size: 14px;
    }

    .checkbox-group {
        font-size: 10px;
    }

    .hi-points-box {
        padding: 24px 0 38px 0;
        gap: 16px;
    }

    .benefits-section {
        padding: 38px 0 0 0;
    }

    .benefits-header {
        margin-bottom: 20px;
    }

    .menu-item {
        margin-bottom: 24px;
    }
}

@media (min-height: 800px) {

    .brand img {
        width: 120px;
    }

    .register-subtext {
        margin: 10px 0 30px;
    }

    .form-field {
        height: 48px;
        margin-bottom: 18px;
    }

    .checkbox-group input {
        width: 14px;
        height: 14px;
    }

    .checkbox-group {
        font-size: 12px;
    }
}

/*=============== RESPONSIVE END ===============*/