:root {
    --bg-dark: #0a0a0f;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent-1: #6366f1;
    /* Indigo */
    --accent-2: #ec4899;
    /* Pink */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html,
body {
    max-width: 100vw;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Background Blobs for depth */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 8s infinite alternate ease-in-out;
}

.blob-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--accent-1);
}

.blob-2 {
    top: 40%;
    right: -150px;
    width: 350px;
    height: 350px;
    background: var(--accent-2);
    animation-delay: 2s;
}

.blob-3 {
    bottom: -100px;
    left: 20%;
    width: 500px;
    height: 500px;
    background: #3b82f6;
    /* Blueish */
    animation-delay: 4s;
    opacity: 0.3;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

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

/* Typography elements */
h1,
h2,
h3,
.logo span {
    font-family: var(--font-heading);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-btn {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.2s, opacity 0.2s;
}

.nav-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 2rem 2rem 2rem;
    min-height: 60vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.coming-soon-play {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.coming-soon-play strong {
    color: #fff;
    font-weight: 600;
}

.app-store-btn img {
    height: 50px;
    transition: transform 0.2s;
}

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

.ratings {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    color: #fbbf24;
    /* Amber */
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: rgba(0, 0, 0, 0.5);
    filter: blur(15px);
    border-radius: 50%;
    z-index: -1;
}

.app-icon {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 22.5%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

.bounce-arrow {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    animation: bounceUpRight 0.8s infinite alternate ease-in-out;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

@keyframes bounceUpRight {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(15px, -15px);
    }
}

/* TikTok Banner Section */
.tiktok-banner {
    padding: 0 2rem 1rem 2rem;
}

.tiktok-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    backdrop-filter: blur(10px);
}

.tiktok-content {
    flex: 1;
}

.tiktok-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.tiktok-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.tiktok-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #FF0050;
    /* TikTok color */
    color: white;
    padding: 1rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.2s, background 0.2s;
    white-space: nowrap;
}

.tiktok-btn:hover {
    transform: scale(1.05);
    background: #E60048;
}

/* Features Section */
.features {
    padding: 2rem 2rem 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-title p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

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

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.footer-logo img {
    height: 28px;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.footer-logo:hover img {
    filter: grayscale(0);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.footer-copyright {
    color: #52525b;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 900px) {
    .header {
        display: none;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 4rem;
        gap: 4rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        align-items: center;
    }

    .hero-image {
        width: 100%;
        max-width: 200px;
    }

    .tiktok-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .blob-1 {
        width: 300px;
        height: 300px;
    }

    .blob-2 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 500px) {
    .title {
        font-size: 2.5rem;
    }

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

    .feature-card {
        padding: 0.75rem;
    }

    .feature-img {
        height: auto;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .feature-info h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .feature-info p {
        font-size: 0.8rem;
    }

    .hero-image {
        max-width: 120px;
    }
}