:root {
    --primary: #6C63FF;
    --primary-dark: #5B52E6;
    --secondary: #FF6584;
    --accent: #FFD166;
    --dark: #1A1A2E;
    --darker: #0F0F1A;
    --light: #F8F9FA;
    --gradient: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
    --gradient-gold: linear-gradient(135deg, #FFD166 0%, #FF6B6B 100%);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--darker);
    color: white;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: 1s cubic-bezier(0.77, 0, 0.18, 1);
}

.loader.hide {
    transform: translateY(-100%);
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--glass);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    flex-shrink: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.4s;
}

nav.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Bottom Navigation */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 8px;
    gap: 16px;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    flex: 1;
    height: 100%;
    gap: 3px;
    padding: 5px;
    border-radius: 10px;
}

.bottom-nav-item:hover {
    color: var(--primary);
}

.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item i {
    font-size: 18px;
}

.bottom-nav-item span {
    font-size: 9px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 50px 80px;
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid var(--glass-border);
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    max-width: 500px;
}

.stats-badge {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.5);
}

.btn-secondary {
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

/* Sections Common */
section {
    padding: 100px 50px;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.6);
    margin-bottom: 60px;
    font-size: 18px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, transparent, rgba(108,99,255,0.1), transparent);
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: var(--gradient);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    font-weight: 800;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step p {
    color: rgba(255,255,255,0.7);
}

/* Earnings Showcase */
.earnings-showcase {
    background: linear-gradient(135deg, #1A1A2E, #0F0F1A);
    text-align: center;
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.earning-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.earning-card:hover {
    transform: scale(1.05);
}

.earning-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
}

.earning-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

/* Screenshots Slider */
.screenshots-slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}

.screenshots-track-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}

.screenshots-track {
    display: flex;
    gap: 15px;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    margin: 0;
}

.screenshot-slide {
    flex: 0 0 calc(25% - 11.25px);
    min-width: 0;
}

.screenshot-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    object-fit: cover;
    display: block;
}

.screenshot-slide img:hover {
    transform: scale(1.02);
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
}

.slider-btn:hover::before {
    width: 80px;
    height: 80px;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(108, 99, 255, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-img.has-image i {
    display: none;
}

.stars {
    color: var(--accent);
    margin-top: 5px;
}

.testimonial-text {
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* Download CTA */
.download-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(255,101,132,0.2));
    border-radius: 50px;
    margin: 50px;
    padding: 80px;
}

/* Footer */
footer {
    background: #0A0A15;
    padding: 60px 50px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: rgba(255,255,255,0.5);
}

/* Responsive */
/* Tablet */
@media (max-width: 968px) {
    nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
        z-index: 1001;
        padding: 20px;
    }
    
    .nav-links a {
        padding: 15px 0;
        font-size: 18px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu {
        display: none;
        z-index: 1002;
        padding: 10px;
    }
    
    .bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px 40px;
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .stats-badge {
        justify-content: center;
        gap: 20px;
    }
    
    .btn-group {
        justify-content: center;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .download-cta {
        margin: 20px;
        padding: 40px 20px;
    }
    

    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-slider-container {
        gap: 15px;
    }
    
    .screenshot-slide {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    nav {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo::after {
        width: 40%;
    }
    
    .nav-links {
        width: 100%;
    }
    
    .mobile-menu {
        font-size: 20px;
    }
    
    .hero {
        min-height: auto;
        padding: 70px 15px 30px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .stats-badge {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 22px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
        justify-content: center;
        min-height: 44px;
    }
    
    section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    .steps-container {
        gap: 20px;
    }
    
    .step {
        min-width: 100%;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto 15px;
    }
    
    .step h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .step p {
        font-size: 13px;
    }
    
    .earnings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .earning-card {
        padding: 20px;
        border-radius: 15px;
    }
    
    .earning-icon {
        font-size: 40px;
    }
    
    .earning-amount {
        font-size: 28px;
    }
    
    .earning-card p {
        font-size: 13px;
    }
    
    .screenshots-slider-container {
        gap: 10px;
    }
    
    .screenshot-slide {
        flex: 0 0 calc(50% - 6px);
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .testimonial-img {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-card h4 {
        font-size: 15px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .download-cta {
        margin: 15px;
        padding: 30px 15px;
        border-radius: 30px;
    }
    
    .download-cta h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .download-cta p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    footer {
        padding: 40px 15px 20px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    footer p {
        font-size: 13px;
    }
    
    footer h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding-top: 20px;
        margin-top: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    nav {
        padding: 10px 12px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero {
        padding: 60px 12px 25px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
    
    .hero h1 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .stats-badge {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 12px;
        min-height: 44px;
    }
    
    section {
        padding: 30px 12px;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step h3 {
        font-size: 16px;
    }
    
    .earning-amount {
        font-size: 24px;
    }
    
    .screenshots-slider-container {
        gap: 8px;
    }
    
    .screenshot-slide {
        flex: 0 0 calc(50% - 4px);
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .download-cta {
        margin: 10px;
        padding: 25px 12px;
    }
    
    .download-cta h2 {
        font-size: 22px;
    }
}

/* Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary); }
    50% { box-shadow: 0 0 30px var(--primary); }
}

.btn-primary {
    animation: glow 2s infinite;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
