:root {
    --lime: #CCFF00;
    --hot-pink: #FF00FF;
    --electric-purple: #9D00FF;
    --deep-blue: #0000FF;
    --bg-dark: #121212;
    --black: #000000;
    --white: #FFFFFF;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-width: 4px;
}

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

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

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

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--lime);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--hot-pink);
    bottom: 10%;
    right: -5%;
    animation-delay: -2s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--electric-purple);
    top: 40%;
    left: 40%;
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

/* Navigation */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: var(--border-width) solid var(--lime);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--lime);
    text-shadow: 3px 3px 0 var(--black);
    letter-spacing: 1px;
}

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

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

.btn-download-nav {
    background: var(--lime);
    color: black !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 900 !important;
    border: var(--border-width) solid var(--black);
    box-shadow: 4px 4px 0 var(--black);
    transition: all 0.2s;
}

.btn-download-nav:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
}

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

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--lime);
    border: var(--border-width) solid var(--black);
    border-radius: 8px;
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    box-shadow: 3px 3px 0 var(--black);
}

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

.gradient-text {
    color: var(--lime);
    text-shadow: 4px 4px 0 var(--hot-pink), 8px 8px 0 var(--electric-purple);
}

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

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

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    border: var(--border-width) solid var(--black);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.2s;
    box-shadow: 6px 6px 0 var(--black);
    font-weight: 700;
}

.store-btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--black);
}

.store-btn i {
    font-size: 1.8rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.btn-text strong {
    font-size: 1rem;
}

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

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--black);
    border-radius: 40px;
    border: var(--border-width) solid var(--black);
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0 var(--lime);
}

.screen-content {
    padding: 2rem;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-card {
    background: var(--bg-dark);
    border: var(--border-width) solid var(--lime);
    padding: 1.5rem;
    border-radius: 20px;
    color: white;
    box-shadow: 4px 4px 0 var(--lime);
}

.story-card-pink {
    border-color: var(--hot-pink);
    box-shadow: 4px 4px 0 var(--hot-pink);
    margin-top: 1rem;
}

.story-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.glass-card {
    background: var(--bg-dark);
    border: var(--border-width) solid var(--black);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s;
    box-shadow: 6px 6px 0 var(--lime);
}

.glass-card:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--lime);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    border: var(--border-width) solid var(--black);
    box-shadow: 4px 4px 0 var(--black);
}

.gradient-1 {
    background: var(--lime);
}

.gradient-2 {
    background: var(--hot-pink);
}

.gradient-3 {
    background: var(--electric-purple);
}

/* Personalities */
.personalities {
    padding: 5rem 5%;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-content {
    flex: 1;
}

.vibe-selector {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.vibe-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-dark);
    border: var(--border-width) solid var(--black);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    box-shadow: 4px 4px 0 var(--black);
}

.vibe-option.active {
    background: var(--lime);
    border-color: var(--black);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--black);
}

.vibe-option.active .vibe-info strong,
.vibe-option.active .vibe-info span {
    color: var(--black);
}

.emoji {
    font-size: 2rem;
}

.vibe-info {
    display: flex;
    flex-direction: column;
}

.visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.chat-bubble {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    max-width: 400px;
    position: relative;
    background: var(--bg-dark);
    border: var(--border-width) solid var(--lime);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 6px 6px 0 var(--lime);
    transition: all 0.3s;
}

/* Privacy */
.privacy {
    padding: 5rem 5%;
}

.privacy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark);
    border: var(--border-width) solid var(--lime);
    box-shadow: 8px 8px 0 var(--lime);
}

.privacy-icon {
    font-size: 3rem;
    color: var(--lime);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

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

    .hero-content {
        margin-bottom: 3rem;
    }

    .cta-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .split-layout {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    /* Simple mobile hide for now */

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}