:root {
    --primary-color: #bb86fc;
    --secondary-color: #03dac6;
    --bg-dark: #0a0a0c;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
    --gradient: linear-gradient(135deg, #6200ee, #03dac6);
    --sidebar-width: 280px;
    --spacing: 2rem;
}

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

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

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient);
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite alternate;
}

.blob-1 {
    top: -100px;
    right: -100px;
    background: #6200ee;
}

.blob-2 {
    bottom: -100px;
    left: -100px;
    background: #03dac6;
    animation-delay: -5s;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

@keyframes float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, 100px) scale(1.1);
    }
}

/* Navigation */
nav {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 60px;
    gap: 4rem;
}

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.badge {
    background: rgba(187, 134, 252, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
    border: 1px solid rgba(187, 134, 252, 0.2);
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.app-icon-hero {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.main-card {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.search-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    flex-grow: 1;
}

.chat-bubble {
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    max-width: 80%;
    font-size: 0.9rem;
}

.chat-bubble.left {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.chat-bubble.right {
    background: var(--primary-color);
    color: black;
    align-self: flex-end;
}

.chat-bubble.highlight {
    background: rgba(3, 218, 198, 0.15);
    border: 1px solid rgba(3, 218, 198, 0.3);
    color: var(--secondary-color);
}

.btn-playstore {
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
}

.btn-playstore:hover {
    background: #1a1a1a;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.playstore-icon {
    width: 20px;
    height: 20px;
}

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

.btn-primary {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

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

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

.feature-item {
    text-align: center;
}

.feature-item .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-dim);
}

.icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Screenshots */
.screenshots {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.gallery-placeholder {
    width: 100%;
    max-width: 800px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-align: center;
    font-style: italic;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

/* About */
.about {
    padding: 100px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
    padding: 4rem;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Privacy Page Specific */
.privacy-page .content-container {
    max-width: 800px;
    margin: 120px auto 100px;
    padding: 0 2rem;
}

.privacy-content h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-dim);
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.privacy-content section {
    margin-bottom: 2.5rem;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin-top: 1rem;
    margin-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    padding: 60px 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 160px;
    }

    .hero-content p {
        margin: 0 auto 2.5rem;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
    }
}