@font-face {
    font-family: 'Ghouline';
    src: url('../admin/Ghouline-Font/Ghouline Demo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --lime: #c9db42;
    --lime-dark: #a8b82e;
    --lime-light: #e4ed8f;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #222222;
    --muted: #c9db42;
    --white: #ffffff;
    --font: 'Nohemi', 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 219, 66, 0.1);
}

.brand-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.brand-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lime);
    line-height: 1;
    text-transform: lowercase;
}

.nav-tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--lime);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 2.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
}

.hero-deco-1 {
    width: 420px;
    height: 420px;
    top: -80px;
    right: -60px;
}

.hero-deco-2 {
    width: 240px;
    height: 240px;
    bottom: 40px;
    right: 120px;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-headline {
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.03em;
    text-align: center;
}

.hero-headline-main {
    font-size: clamp(2.5rem, 9vw, 6rem);
    margin-bottom: 0.5rem;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-align: center;
}

.hero-kicker {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-align: center;
}

.hero-info-box {
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    max-width: 100%;
    /*    border-left: 3px solid var(--black);*/
}

.hero-info-text {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.signin-card {
    background: var(--dark);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(201, 219, 66, 0.15);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    animation: floatUp 0.8s ease both;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.signin-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.signin-desc {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
    line-height: 1.5;
    text-align: center;
}

.field-label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.phone-row {
    display: flex;
    gap: 8px;
    margin-bottom: 1.25rem;
}

.country-code {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0 14px;
    font-size: 0.9rem;
    color: var(--white);
    font-family: var(--font);
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.phone-input {
    flex: 1;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--lime);
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s;
}

    .phone-input:focus {
        border-color: var(--lime);
    }

    .phone-input::placeholder {
        color: darkgray;
    }

.otp-btn {
    width: 100%;
    background: var(--lime);
    color: var(--black);
    border: none;
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .otp-btn:hover {
        background: var(--lime-light);
        transform: translateY(-1px);
    }

    .otp-btn:active {
        transform: translateY(0);
    }

    .otp-btn:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

.terms-row {
    gap: 10px;
    margin-top: 1rem;
    cursor: pointer;
}

    .terms-row input[type="checkbox"] {
/*        margin-top: 3px;*/
        width: 16px;
        height: 15px;
        min-width: 16px;
        accent-color: var(--lime);
        cursor: pointer;
    }

    .terms-row span {
        font-size: 0.75rem;
        color: var(--muted);
        line-height: 1.5;
    }

.otp-note {
    font-size: 0.92rem;
    color: var(--muted);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
    min-height: 20px;
}

.otp-panel {
    display: none;
}

    .otp-panel.active {
        display: block;
    }

.otp-input-row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin: 1.25rem 0 1rem;
}

.otp-input {
    width: 100%;
    max-width: 68px;
    height: 60px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--dark2);
    color: var(--white);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s;
}

    .otp-input:focus {
        border-color: var(--lime);
    }

.change-number-btn {
    width: 100%;
    margin-top: 0.75rem;
    background: transparent;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.95rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

    .change-number-btn:hover {
        border-color: rgba(201, 219, 66, 0.35);
        color: var(--lime);
    }

/* SHARED SECTIONS */
section {
    padding: 5rem 2.5rem;
}

.section-label {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-sub {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 3rem;
    text-align: center;
}

/* HOW */
.how {
    background: var(--dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.step-item {
    background: var(--dark);
    padding: 1rem;
    position: relative;
}

.step-num {
    font-size: 1rem;
    color: var(--lime);
    font-weight: 700;
    margin-bottom: 0rem;
}

.step-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    /*    margin-bottom: 0.75rem;*/
}

.step-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 24px;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 5px;
    margin-bottom: 0px;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--black);
    font-weight: 700;
    z-index: 2;
    margin-right: 20px;
}

/* REWARDS */
.rewards {
    background: var(--black);
}

.tiers-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
}

.tier-row {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #2f2f2f;
    transition: background 0.2s;
    cursor: default;
}

    .tier-row:hover {
        background: var(--dark3);
    }

.tier-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #2c2d20;
    border: 1px solid rgba(201, 219, 66, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.04em;
}

.tier-info {
    flex: 1;
}

.tier-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.tier-req {
    font-size: 0.72rem;
    color: var(--muted);
}

.tier-reward {
    text-align: right;
}

.tier-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lime);
    display: block;
}

.tier-type {
    font-size: 0.68rem;
    color: var(--muted);
}

.tier-row.featured {
    background: rgba(201, 219, 66, 0.06);
    border: 1px solid rgba(201, 219, 66, 0.2);
    border-radius: 12px;
}

.tier-badge-featured {
    background: rgba(201, 219, 66, 0.2);
    border-color: var(--lime);
}

.tier-name-featured {
    color: var(--lime);
}

.tier-type-featured {
    color: var(--lime);
    opacity: 0.7;
}

/* RULES */
.rules {
    background: var(--dark);
}

.rules-card {
    padding: 2rem 2.5rem;
}

.rules-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-align: center;
}

/* Wrapper generated by JS */
.rules-row {
    width: 100%;
}

    /* Each column ul */
    .rules-row .rules-list {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
        padding-left: 0;
        margin: 0;
    }

        /* Each rule item */
        .rules-row .rules-list li {
            font-size: 1rem;
            color: var(--lime);
            line-height: 1.6;
            padding-left: 1.25rem;
            position: relative;
        }

/* Dot before rule */
/* .rules-row .rules-list li::before {
                content: '';
                position: absolute;
                left: 0;
                top: 9px;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: var(--lime);
            }*/

/* Mobile */
@media (max-width: 768px) {
    .rules-card {
        padding: 1.5rem 1.25rem;
    }

    .rules-row {
        row-gap: 0.9rem;
    }

        .rules-row .col-md-6:first-child {
            margin-bottom: 0.9rem;
        }
}

/* CTA */
.cta-banner {
    background: var(--lime);
    padding: 5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
}

.cta-deco-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
}

.cta-deco-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -50px;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
    margin-bottom: 1rem;
}

.cta-sub {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 2rem;
}

.cta-question {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 1rem;
}

.cta-scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font);
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}

    .cta-scroll-btn:hover {
        transform: scale(1.04);
        color: var(--lime);
    }

/* FOOTER */
footer {
    background: var(--black);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .brand-text {
    font-size: 1rem;
    font-weight: 700;
}

.footer-copy {
    font-size: 0.72rem;
    color: var(--muted);
}

/* ANIMATIONS */
.reveal {
    opacity: 1;
    transform: none;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* RESPONSIVE */
@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 6rem;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .step-arrow {
        display: none;
    }

    .signin-card {
        max-width: 100%;
    }

    .hero-right {
        padding: 0 1rem;
    }
    .cta-banner {
        background: var(--lime);
        padding: 5rem 2.5rem;
        text-align: center;
        position: relative;
        margin-bottom: 450px
    }
}

@media (max-width: 560px) {
    .circle-title-row {
        display: block !important;
    }

    .hero {
        padding: 7rem 0rem 4rem !important;
    }

    .circle-title-row .hero-kicker {
        border: none !important;
        padding: 0px !important;
        text-align: center !important;
    }

    nav {
        padding: 1rem 1.25rem;
        background: var(--dark);
        border-bottom: 3px solid black;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    section {
        padding: 2.5rem 1.25rem;
    }

    /*.hero {
        padding: 0.50rem 0.25rem 10rem;
    }*/

    .steps-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .signin-card {
        border-radius: 14px;
    }

    .hero-headline-main {
        font-size: clamp(3rem, 16vw, 5rem);
        margin-top: 10px;
    }

    .nav-tag {
        display: block;
        margin-top: 10px;
        text-align: center;
    }
    .cta-banner {
        background: var(--lime);
        margin: 6rem 0rem;
        text-align: center;
        position: relative;
        margin-bottom: 5px
    }

    @media (max-width: 560px) {

        .cta-headline {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--black);
            line-height: 1;
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
        }
    }
}


.float-l {
    float: left;
}

.float-r {
    float: right;
}
