:root {
    --bg-base: #050508;
    --bg-surface: #101018;
    --text-primary: #ffffff;
    --text-secondary: #a0a0ab;
    --accent: #E50914;
    --accent-hover: #f40612;
    --glass-bg: rgba(20, 20, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a0a0ab 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Blobs for Atmosphere */
.blob {
    position: absolute;
    filter: blur(120px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.5;
}
.blob-1 {
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229,9,20,0.15) 0%, rgba(5,5,8,0) 70%);
}
.blob-2 {
    bottom: 10%;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(5,5,8,0) 70%);
}
.blob-3 {
    top: 50%;
    left: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0,255,135,0.08) 0%, rgba(5,5,8,0) 70%);
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* New Section Styles for Visual Variety */
.section-alt {
    background: linear-gradient(to bottom, #07070b, #12121c);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.pricing-section {
    padding: 6rem 2rem;
    position: relative;
    background: linear-gradient(to bottom, #12121c, var(--bg-base));
}

.app-logo {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.2);
}
.app-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 135, 0.3);
    transition: all 0.3s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    height: 60px; /* Constrain header height */
    z-index: 100;
}
.logo span {
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: -1.5px;
    margin-left: 140px; /* Space for absolute logo */
    font-family: 'Outfit', sans-serif;
}

.logo img {
    height: 120px;
    width: auto;
    border-radius: 20px;
    position: absolute;
    top: -30px; /* Let it break out of the nav */
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}
.logo img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 135, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-disabled {
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}
.btn-disabled:hover {
    transform: none;
}

/* Premium Store Buttons */
.store-btn {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 0.6rem 1.8rem 0.6rem 1.2rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 190px;
    flex: 1 1 auto;
}
.store-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.store-btn i {
    font-size: 2.2rem;
    margin-right: 1.2rem;
}
.store-btn .store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.store-btn .store-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 2px;
}
.store-btn .store-title {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.store-btn.google-play:hover {
    border-color: #00ff87;
    box-shadow: 0 12px 30px rgba(0, 255, 135, 0.15);
}

.store-btn.apk-direct {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.15) 0%, rgba(0,0,0,0.8) 100%);
    border: 1px solid rgba(229, 9, 20, 0.4);
}
.store-btn.apk-direct:hover {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.25) 0%, rgba(0,0,0,0.9) 100%);
    border-color: rgba(229, 9, 20, 0.8);
    box-shadow: 0 12px 30px rgba(229, 9, 20, 0.25);
}

.store-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.03);
}
.store-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.15);
}

.btn.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 16px;
}

.shadow-glow {
    box-shadow: 0 8px 32px rgba(229, 9, 20, 0.3);
}

/* Hero Section */
.hero-wrapper {
    width: 100%;
    background: radial-gradient(circle at top right, rgba(0, 255, 135, 0.05) 0%, rgba(5, 5, 8, 1) 60%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 120px; /* Offset for fixed nav */
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Phone Mockups */
.hero-visual {
    position: relative;
    height: 600px;
}

.phone-mockup {
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 8px solid #222;
    overflow: hidden;
    background: #000;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockup-main {
    position: absolute;
    width: 280px;
    height: 600px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}

.mockup-secondary {
    position: absolute;
    width: 260px;
    height: 550px;
    z-index: 1;
    right: 0;
    top: 25px;
    opacity: 0.6;
    transform: perspective(1000px) rotateY(-15deg) scale(0.9);
    filter: blur(2px);
}

/* Features */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 10rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.feature-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
    color: #e2e2e2;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.feature-visual .phone-mockup {
    width: 300px;
    height: 640px;
    margin: 0 auto;
}

/* Floating Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.grid-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.grid-card:hover {
    transform: translateY(-10px);
}

.grid-card img {
    width: 100%;
    max-width: 200px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 4px solid #222;
}

.grid-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.grid-card p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem 8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-container {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom right, rgba(20,20,30,0.8), rgba(229,9,20,0.1));
}

.cta-container h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-container p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    background-color: rgba(0,0,0,0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-logo img {
    height: 100px;
    border-radius: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero, .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1, .feature-text h2, .cta-container h2 {
        font-size: 3rem;
    }
    
    .hero-content p, .feature-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-list li {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-row.reverse {
        direction: ltr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .mockup-main {
        position: relative;
        left: 0;
        transform: none;
        margin: 0 auto;
    }
    
    .mockup-secondary {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links a {
        margin: 0 1rem;
    }
}

/* Hide scrollbar for pricing cards but keep functionality */
.pricing-cards-container::-webkit-scrollbar {
    display: none;
}
.pricing-cards-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
