/* ===============  RESET & BASE STYLES =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #0b0e14;
    color: #fff;
    overflow-x: hidden;
}

/* ===============  CONTAINER SYSTEM =============== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* ===============  NAVBAR =============== */
header {
    position: relative;
    z-index: 50;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    margin-left: -20px;
    margin-right: -20px;
}

.nav-container {
    margin: 0 auto;
    display: flex;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF8A00;
    text-shadow: 0 0 10px rgba(255, 138, 0, 0.5);
    padding-left: 10px;
}

/* ===============  SECTION COMMON STYLES =============== */
section {
    width: 100%;
    padding: 40px 150px;
    position: relative;
    scroll-margin-top: 70px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-weight: 700;
    color: #FF8A00;
    margin-bottom: 15px;
}

.section-header p {
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

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

.hero-right {
    flex: 1;
    z-index: 60;
    margin: -40px -150px;
    height: calc(100% + 80px);
    position: relative;
    overflow: visible;
}

.game-slider-wrapper {
    position: absolute;
    inset: 0;
    z-index: 60;
    overflow: visible;
}

/* ===============  HERO SECTION =============== */

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    background: #0b0e14;
    overflow: clip;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Grid pattern */
.grid-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(118, 118, 118, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(118, 118, 118, 0.05) 1px, transparent 1px);
    background-size: 35px 35px;
    pointer-events: none;
    z-index: 1;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.hero-content-wrapper {
    height: auto;
    position: relative;
}

.hero-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    z-index: 400;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 4;
}

.hero-image img {
    margin-top: 20px;
    width: 400px;
}

/* Text Styling */
.welcome-text {
    font-size: 1.0rem;
    font-weight: 400;
    color: #FF8A00;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-bottom: 10px;
}

.brand-mist {
    background: linear-gradient(90deg, #FF8A00 0%, #FFCC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 138, 0, 0.3);
}

.brand-text span {
    color: #fff;
}

.description {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Google Button */
.google-btn {
    background: #fff;
    color: #333;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 138, 0, 0.2);
    margin-top: 10px;
}

.google-btn:hover {
    transform: translateY(-3px);
}

.hero-center::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 600px;
    background: url('sticker.png') no-repeat center center;
    background-size: contain;
    top: 48%;
    right: 45%;
    transform: translateY(-50%);
    z-index: 1;
    overflow: hidden;
    opacity: 0.7;
    filter: drop-shadow(0 0 30px rgba(255, 138, 0, 0.3));
    animation: floatY 6s ease-in-out infinite;
}


@keyframes floatY {
    0% {
        transform: translateY(-50%) translateY(0);
    }

    50% {
        transform: translateY(-50%) translateY(20px);
    }

    100% {
        transform: translateY(-50%) translateY(0);
    }
}


@media (max-width: 1400px) {
    .hero-center::before {
        top: 45%;
        right: 45%;
    }
}

@media (max-width: 1200px) {
    .hero-center::before {
        display: none;
    }
}

@media (max-width: 992px) {

    .hero-content-wrapper {
        padding-top: 50px;
    }

    .hero-flex {
        display: block;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        width: 300px;
    }
}

@media (max-width: 576px) {

    .brand-text {
        font-size: 2.8rem;
    }


    .google-btn {
        justify-content: center;
    }
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-left {
    padding-right: 70px;
    padding-top: 70px;
}

.hero-text h2 {
    text-align: left;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-text p {
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.google-btn {
    background: #fff;
    border: none;
    padding: 15px 20px;
    font-weight: 600;
    border-radius: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.google-btn:hover {
    transform: translateY(-2px);
}


.hero-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.3), transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 700px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

/* Main orange mist (center-left) */
.hero-section::before {
    background: radial-gradient(circle,
            rgba(255, 138, 0, 0.75) 0%,
            rgba(255, 138, 0, 0.35) 35%,
            rgba(255, 138, 0, 0.15) 55%,
            transparent 70%);
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
}

/* Secondary yellow-orange mist (bottom-right) */
.hero-section::after {
    background: radial-gradient(circle,
            rgba(255, 200, 0, 0.65) 0%,
            rgba(255, 180, 0, 0.30) 40%,
            rgba(255, 180, 0, 0.12) 60%,
            transparent 75%);
    bottom: 250px;
    right: 200px;
}


.icon-bg {
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardtxt h6 {
    font-weight: 600;
    margin-bottom: 0px;
    color: #fff;
}

.cardtxt p {
    color: #b0b0b0;
    margin: 0;
}

/* ===============================
   HOW IT WORKS – FINAL WORKING CSS
   =============================== */

.how-it-works-section {
    background: #0d1117;
}

.how-it-works-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.how-it-works-section h2 {
    color: #ff9800;
    font-weight: 700;
}

.how-it-works-section p {
    color: #b0b0b0;
}

/* ROW */
.steps-row {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

/* CARD BASE */
.step-card {
    position: relative;
    background: rgba(20, 23, 32, 0.95);
    border-radius: 18px;
    overflow: hidden;
    height: 360px;
    transition: flex 0.45s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WIDTH CONTROL */
.step-card.active {
    flex: 0 0 80%;
}

.step-card.inactive {
    flex: 0 0 10%;
}

/* STEP TITLE - UPDATED */
.step-card .step-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 2;
}

/* ACTIVE CARD - Title appears at top left */
.step-card.active .step-title {
    position: absolute;
    top: 100px;
    left: 30px;
    writing-mode: horizontal-tb;
    font-size: 35px;
    font-weight: 700;
    color: #ff9800;
}

.step-title span {
    font-size: 45px;
    font-weight: 800;
}

/* INACTIVE CARD - Title appears vertical */
.step-card.inactive .step-title {
    position: absolute;
    writing-mode: vertical-rl;
    rotate: 180deg;
    transform: none;
    font-size: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #ffffff;
    height: 100%;
}

.step-card.inactive .step-title span {
    font-size: 30px;
    font-weight: 400;
}

/* INNER CONTENT */
.step-inner {
    width: 100%;
    height: 100%;
    padding: 80px 30px 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 30px;
}

/* HIDE CONTENT WHEN INACTIVE */
.step-card.inactive .step-inner {
    display: none;
}

/* CONTENT */
.step-content p {
    margin-top: 10px;
    color: #b0b0b0;
    font-size: 17px;
}

/* IMAGE */
.step-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image img {
    max-width: 220px;
    width: 100%;
}

/* NAVIGATION */
.step-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.step-card.inactive .step-nav {
    display: none;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ff9800;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.25s ease;
}

.nav-btn:hover {
    background: #FF8A00;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ================= MOBILE ================= */
@media (max-width: 678px) {
    .steps-row {
        flex-direction: column;
        gap: 12px;
    }

    .step-card {
        display: block;
        height: auto;
        min-height: 100px;
        position: relative;
    }

    .step-card.active .step-title {
        position: relative;
        top: auto;
        left: auto;
        padding: 20px 20px 0;
        writing-mode: horizontal-tb;
        font-size: 24px;
    }

    .step-card.active .step-title span {
        font-size: 30px;
    }

    .step-card.inactive .step-title {
        position: absolute;
        writing-mode: unset;
        rotate: 360deg;
        padding-left: 0px;
        padding-right: 0px;
        font-size: 22px;
        width: 100%;
        height: 100%;
    }

    .step-card.inactive .step-title span {
        font-size: 20px;
    }

    .step-inner {
        display: flex;
        padding: 10px;
        gap: 15px;
    }

    .step-card.active .step-inner {
        display: flex;
        padding-top: 0;
    }

    .step-image {
        margin-top: 10px;
        order: 2;
    }

    .step-content {
        order: 1;
    }

    .step-content p {
        font-size: 16px;
    }

    .step-nav {
        position: relative;
        top: auto;
        justify-content: flex-end;
        width: 100%;
    }

    .nav-btn {
        width: 25px;
        height: 25px;
        font-size: 10px;
        padding: 0px !important;
    }
}

/* ===============  FAQ SECTION =============== */
.faq-section {
    background: #0b0e14;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: rgba(20, 23, 32, 0.8);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 138, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    color: #FF8A00;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ===============  FEATURES SECTION =============== */

h2 {
    text-align: center;
    color: #FF8A00;
    margin-bottom: 30px;
}

/* ===== AUTO SCROLL FEATURES ===== */

.features-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Track */
.features-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 18s linear infinite;
}

/* Each slider row */
.slider {
    display: flex;
    gap: 30px;
}

/* Pause on hover */
.features-slider:hover .features-track {
    animation-play-state: paused;
}

.feature-card {
    min-width: 250px;
    background: rgba(20, 23, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}


.feature-card:hover {
    border-color: #FF8A00;
    box-shadow: 0 10px 30px rgba(255, 138, 0, .15);
}


.feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 138, 0, 0.12);
    color: #FF8A00;
    font-size: 1.5rem;
}

.features-slider:hover .features-track {
    animation-play-state: paused;
}

.feature-card h5 {
    margin: 0;
}

/* Infinite scroll effect */
@keyframes scroll {
    from {
        transform: translateX(0)
    }

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


/* ===============  VIP SECTION =============== */

.section-header h2 {
    text-align: center;
    color: #FF8A00;
}


/* ===== VIP GRID ===== */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.vip-card {
    position: relative;
    border-radius: 18px;
    margin-top: 30px;
    padding: 40px 25px 30px;
    min-height: 130px;
}

.card-blue {
    background: linear-gradient(180deg, #4356ff5b, #4356ff7a, #4356ff);
}

.card-orange {
    background: linear-gradient(180deg, #ff88005b, #ff88007a, #ffb347);
}

.card-teal {
    background: linear-gradient(180deg, #9d44f15b, #9d44f17a, #b37cff);
}

/* ===== IMAGE (50% OUTSIDE CARD + 50% BEHIND TEXT) ===== */
.vip-image {
    position: absolute;
    top: -60px;
    /* pushes half image outside card */
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    z-index: 1;
    /* sits behind vip-text */
}


.vip-image img {
    width: 100%;
    height: 120px;
    display: block;
    mask-image: linear-gradient(to bottom, #000 70%, #0000 60%);
}


/* ===== TEXT CONTAINER (COVERS HALF IMAGE) ===== */
.vip-text {
    position: relative;
    z-index: 2;
    /* pulls text over image */
    display: flex;
    justify-content: center;
    align-items: center;
}

.vip-text h6 {
    margin: 0;
    font-weight: 600;
}


/* ===== COLOR VARIANTS ===== */
.card-blue {
    border: 1px solid rgba(67, 86, 255, .4);
}

.card-orange {
    border: 1px solid rgba(255, 138, 0, .4);
}

.card-teal {
    border: 1px solid rgba(138, 43, 226, .4);
}

/* ================= FOOTER ================= */
.footer {
    background: #0b0e14;
    color: #c9d1d9;
    width: 100%;
    padding: 40px 150px;
    margin-top: 20px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 700;
    color: #FF8A00;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer-logo span {
    color: #fff;
}

.footer-brand p {
    max-width: 360px;
    font-size: 0.95rem;
    line-height: 1.6;
}


.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}


.footer-social a {
    width: 38px;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}


.footer-social a:hover {
    background: #FF8A00;
    color: #000;
}


.footer-links h5 {
    margin-bottom: 15px;
    color: #fff;
}


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


.footer-links li {
    margin-bottom: 10px;
}


.footer-links a {
    color: #c9d1d9;
    text-decoration: none;
    transition: .3s;
}


.footer-links a:hover {
    color: #FF8A00;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #8b949e;
}

/* ===============  RESPONSIVE DESIGN =============== */

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-right {
        width: 90%;
    }

    .hero-right {
        display: none;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

/* Tablet */
@media (max-width: 950px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vip-card {
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    section,
    .footer {
        padding: 20px 0px;
    }

    .footer {
        text-align: left;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .step-image img {
        width: 200px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .footer-brand p {
        margin: 0px;
    }

    .footer-grid {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer ul li a {
        text-align: center;
    }

}

@media (max-width: 569px) {

    .hero-section {
        padding-top: 20px;
    }

    .step-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .step-row.reverse {
        direction: ltr;
    }

    .step-image img {
        width: 150px;
        margin: 0 auto;
    }

    .vip-img {
        width: 80px;
        height: 80px;
    }

    .vip-grid {
        grid-template-columns: 1fr
    }

    .vip-image {
        height: 100px
    }

    .feature-card {
        min-width: 200px;
        padding: 15px 10px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .hero-section {
        padding-bottom: 0px;
    }

    .step-image img {
        width: 100px;
        margin: 0 auto;
        border-radius: 15px;
    }

    .step-card.active .step-title {
        font-size: 22px;
    }

    .step-card.inactive .step-title {
        position: relative;
        font-size: 20px;
        width: 100%;
    }

    .step-inner {
        padding: 15px;
    }

    .floating-card {
        position: relative !important;
        margin: 0 auto;
        justify-content: center;
    }

    .card-1,
    .card-2,
    .card-3 {
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        height: auto;
        bottom: auto !important;
    }

    .cta-button {
        padding: 12px 30px;
    }

    .feature-card {
        min-width: 150px;
        padding: 15px 10px;
    }

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

    .vip-card {
        min-height: 50px;
        margin-top: 60px;
    }

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

@media(max-width:268px) {
    .nav-container {
        padding: 10px;
    }

    .vip-img {
        width: 60px;
        height: 60px;
    }

    .features-track {
        gap: 10px;
    }

    .feature-card {
        min-width: 130px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .step-card.active .step-inner {
        display: block;
    }
}