:root {
    --bg-dark: #050505;
    --accent-primary: #7000ff;
    --accent-secondary: #00d4ff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 16px;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Mesh Gradient Background */
.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-dark);
    overflow: hidden;
}

.orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    z-index: -1;
    animation: moveOrb 20s infinite alternate;
}

.orb-1 {
    background: var(--accent-primary);
    top: -200px;
    left: -200px;
}

.orb-2 {
    background: var(--accent-secondary);
    bottom: -200px;
    right: -200px;
    animation-delay: -5s;
}

.orb-3 {
    background: #ff00c8;
    top: 40%;
    left: 40%;
    width: 400px;
    height: 400px;
    animation-delay: -10s;
}

@keyframes moveOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 100px) scale(1.1);
    }
}

/* Common Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo {
    height: 38px;
    width: auto;
    border-radius: 8px;
}

.logo span {
    color: var(--accent-secondary);
    font-weight: 800;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #9d50ff);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 0, 255, 0.4);
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1rem;
}

.play-store-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.play-store-btn:hover {
    transform: scale(1.05);
}

.play-store-btn img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-centered {
    text-align: center;
}

.hero-centered .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-centered h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    max-width: 950px;
}

.hero-centered h1 span {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-centered p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.play-store-btn img {
    height: 54px;
    width: auto;
    vertical-align: middle;
}

.hero-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gradient-sphere-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradient-sphere {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-primary) 0%, var(--accent-secondary) 50%, transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
    animation: aurora 12s infinite alternate ease-in-out;
}

.gradient-sphere-inner {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #ff00c8 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0.6;
    animation: rotate 15s linear infinite;
}

@keyframes aurora {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.4;
    }

    33% {
        transform: scale(1.1) translate(30px, -20px);
        opacity: 0.6;
    }

    66% {
        transform: scale(0.9) translate(-20px, 30px);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) translate(10px, -10px);
        opacity: 0.7;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) translate(40px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translate(40px) rotate(-360deg);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--accent-secondary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grids */
.steps-grid,
.feature-grid,
.faq-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.step-card,
.feature-card,
.faq-item {
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    height: 100%;
}

.step-card:hover,
.feature-card:hover,
.faq-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-icon {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-icon i,
.feature-card .icon i {
    width: 44px;
    height: 44px;
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    stroke-width: 2.5;
}

.step-card h3,
.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Ways to Earn / Features */
.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Transparency Info Box */
.info-box {
    padding: 5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.05), rgba(0, 212, 255, 0.05));
}

.info-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.info-content p {
    color: var(--text-secondary);
    max-width: 850px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.8rem 1.6rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid var(--glass-border);
}

.badge .check {
    color: var(--accent-secondary);
    font-weight: 800;
    margin-right: 8px;
}

/* FAQ Item */
.faq-item {
    padding: 2.5rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
    font-weight: 700;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
}

.cta-card {
    padding: 6rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(0, 212, 255, 0.1));
}

.cta-card h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-btns,
    .trust-badges {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .hero {
        padding-top: 140px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 1.5rem auto 0;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }
}