:root {
    --bg-dark: #0a0a0f;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary: #3b82f6; /* Blue Slate */
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #ec4899;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

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

body.dark-theme {
    background: #050505;
    color: var(--text-main);
    overflow-x: hidden;
}

/* Background Effects */


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 100;
}

.vyral-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 400;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    color: #fff !important;
}

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

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

.pill-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

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

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

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn-primary.glow {
    box-shadow: 0 0 20px var(--primary-glow);
    padding: 1rem 2rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: var(--bg-glass);
}

/* Visual Mockup */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    border: 8px solid #1e293b;
    border-radius: 40px;
    background: #000;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: floating 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.app-ui {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    width: 500%;
    height: 100%;
    display: flex;
    animation: slideShow 25s infinite ease-in-out;
}

.carousel-slide {
    width: 20%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
    /* Placeholder fallback color before adding real images */
}

@keyframes slideShow {
    0%, 15% { transform: translateX(0); }
    20%, 35% { transform: translateX(-20%); }
    40%, 55% { transform: translateX(-40%); }
    60%, 75% { transform: translateX(-60%); }
    80%, 95% { transform: translateX(-80%); }
    100% { transform: translateX(0); }
}

.float-item {
    position: absolute;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.float-1 { top: 10%; right: 10%; animation: floating 5s ease-in-out infinite 1s;}
.float-2 { bottom: 20%; left: 10%; animation: floating 7s ease-in-out infinite 2s;}
.float-3 { bottom: 10%; right: -5%; animation: floating 6s ease-in-out infinite 0.5s;}

/* Features */
.features {
    padding: 8rem 5%;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}
.white-text { color: var(--text-main); }
.text-left { text-align: left; margin-bottom: 1.5rem; }

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

.feature-card {
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Monetization / Stats */
.monetization {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    gap: 4rem;
}
.monetization-content { flex: 1; }
.monetization-desc { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.6; font-size: 1.1rem;}
.business-list { list-style: none; }
.business-list li { margin-bottom: 1.2rem; background: var(--bg-glass); padding: 1rem; border-radius: 12px; border: 1px solid var(--border-glass);}
.business-list strong { color: white; }

.monetization-image { flex: 1; }
.glass-big {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 2rem;
}
.tx-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-glass);}
.tx-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none;}
.tx-icon { background: #1e293b; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem;}
.tx-amount { font-weight: 700; color: #fff;}
.success { color: #10b981; }

/* Legal Text overrides */
.legal-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
}
.legal-content h1 { margin-bottom: 2rem; font-size: 2.5rem;}
.legal-content h2 { margin-top: 2rem; margin-bottom: 1rem; color: var(--primary);}
.legal-content p { color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem;}

/* Footer */
.footer {
    border-top: 1px solid var(--border-glass);
    padding: 4rem 5% 2rem;
    margin-top: 5rem;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.footer-brand h2 { font-size: 2rem; margin-bottom: 0.5rem;}
.footer-brand p { color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid var(--border-glass); padding-top: 2rem; text-align: center; color: var(--text-muted); font-size: 0.9rem;}

@media (max-width: 768px) {
    .hero, .monetization { flex-direction: column; text-align: center; }
    .hero-title { font-size: 3rem; }
    .nav-links { display: none; }
    .footer-top { flex-direction: column; gap: 2rem; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
    .text-left { text-align: center; }
    .business-list li { text-align: left; }
}
