:root {
    --primary: #FF758C;
    --secondary: #FF7EB3;
    --dark: #121013;
    --light: #FFF0F5;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --purple: #816CFF;
    --gold: #FFD269;
    --rose: #FF8BA4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--dark);
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 117, 140, 0.1) 0%, rgba(129, 108, 255, 0.05) 30%, transparent 60%);
    z-index: -1;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    backdrop-filter: blur(20px);
    background: rgba(18, 16, 19, 0.6);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    -webkit-text-fill-color: initial;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ddd;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.download-btn-sm {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 117, 140, 0.3);
    transition: transform 0.3s ease;
}

.download-btn-sm:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background-image: linear-gradient(110deg, rgba(18, 16, 19, 0.95) 45%, rgba(18, 16, 19, 0.6) 100%), url('/landing-assets/landing_bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content h1 span {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-group {
    display: flex;
    gap: 20px;
}

.primary-btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(255,117,140,0.3);
    transition: all 0.3s;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,117,140,0.5);
}

.primary-btn i {
    font-size: 1.4rem;
}

.secondary-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Hero Image */
.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    opacity: 0.15;
    filter: blur(30px);
    border-radius: 50%;
    top: 10%;
    z-index: 1;
}

/* Features */
.features {
    padding: 100px 0;
    background: rgba(20, 18, 22, 0.5);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: #888;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255, 117, 140, 0.3);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-box.purple { background: rgba(129, 108, 255, 0.1); color: var(--purple); }
.icon-box.gold { background: rgba(255, 210, 105, 0.1); color: var(--gold); }
.icon-box.rose { background: rgba(255, 139, 164, 0.1); color: var(--rose); }
.icon-box.pink { background: rgba(255, 117, 179, 0.1); color: #FF7EB3; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Download CTA */
.download-cta {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(45deg, rgba(255, 117, 140, 0.1), rgba(129, 108, 255, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.store-btn img {
    height: 55px;
    transition: transform 0.3s;
}

.store-btn:hover img {
    transform: scale(1.05);
}

.apk-direct {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: #888;
}

.apk-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: color 0.3s;
}

.apk-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0 20px;
    color: #666;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about p {
    margin-top: 10px;
    color: #888;
}

.footer-links h4, .footer-social h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #aaa;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    color: #444;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .cta-group {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
