:root {
    --bg-color: #050510;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary-color: #b000ff;
    --accent-color: #00dbde;
    --text-color: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-main: linear-gradient(135deg, #b000ff 0%, #ff007f 100%);
    --font-main: 'Outfit', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Gradients */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 0, 255, 0.15) 0%, rgba(5, 5, 16, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.bg-glow-1 {
    top: -200px;
    left: -100px;
}

.bg-glow-2 {
    bottom: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 219, 222, 0.1) 0%, rgba(5, 5, 16, 0) 70%);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.justify-center {
    justify-content: center;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: #fff;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 16, 0.7);
    border-bottom: var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 10px;
    font-weight: 400;
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 768px) {
    .tagline {
        display: inline-block;
    }
}

.nav-links {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
}

.glow-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(176, 0, 255, 0.4);
}

/* Hero */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

@media (min-width: 900px) {
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .hero-text {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        position: relative;
    }
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.store-btn i {
    font-size: 2rem;
}

.store-btn span {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.store-btn strong {
    display: block;
    font-size: 1.1rem;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #222;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    z-index: 10;
}

.app-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 600px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
    z-index: -1;
    filter: blur(10px);
}

/* Floating Animations */
.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-icon {
    position: absolute;
    background: rgba(25, 25, 40, 0.8);
    backdrop-filter: blur(5px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-heart {
    top: 20%;
    left: -20px;
    color: #ff007f;
    animation: float 5s ease-in-out infinite 1s;
}

.icon-chat {
    bottom: 20%;
    right: -30px;
    color: #b000ff;
    animation: float 7s ease-in-out infinite 0.5s;
}

.icon-voice {
    top: 10%;
    right: 10px;
    color: #00dbde;
    animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.glass-card h3 {
    margin-bottom: 15px;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Character Showcase */
.showcase {
    padding: 80px 0;
    overflow: hidden;
}

.character-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none;
    /* Firefox */
}

.character-scroll::-webkit-scrollbar {
    display: none;
}

.character-card {
    min-width: 250px;
    padding: 15px;
    text-align: center;
}

.char-img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.char-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.character-card:hover .char-img img {
    transform: scale(1.05);
}

.tag {
    display: inline-block;
    background: rgba(176, 0, 255, 0.2);
    color: #df80ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Creation Section */
.create-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.create-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

@media (min-width: 768px) {
    .create-content {
        flex-direction: row;
    }

    .create-text {
        flex: 1;
    }

    .create-visual {
        flex: 1;
    }
}

.create-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.create-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.creation-ui {
    padding: 40px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.ui-row {
    margin-bottom: 20px;
}

.ui-row span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--gradient-main);
}

/* Download CTA */
.download-cta {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(176, 0, 255, 0.1) 100%);
    padding: 100px 0;
}

.download-cta h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

/* Footer */
footer {
    padding: 50px 0 20px;
    border-top: var(--glass-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Chat Now Button */
.char-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.chat-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-main);
    color: #fff;
    text-decoration: none;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.chat-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(176, 0, 255, 0.5);
}

/* ===== COMING SOON MODAL ===== */
.cs-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.cs-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cs-modal {
    position: relative;
    background: linear-gradient(145deg, #0d0d1a, #1a0a2e);
    border: 1px solid rgba(176, 0, 255, 0.35);
    border-radius: 28px;
    padding: 50px 40px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 80px rgba(176, 0, 255, 0.25), 0 0 30px rgba(255, 0, 127, 0.1);
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.cs-overlay.active .cs-modal {
    transform: scale(1) translateY(0);
}

.cs-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.cs-close:hover {
    background: rgba(176, 0, 255, 0.4);
}

.cs-badge {
    display: inline-block;
    background: var(--gradient-main);
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 16px 0 12px;
    animation: pulseBadge 1.8s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(176, 0, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(176, 0, 255, 0);
    }
}

.cs-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cs-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cs-hearts {
    font-size: 1.5rem;
    margin-bottom: 24px;
    animation: floatHearts 2s ease-in-out infinite;
}

@keyframes floatHearts {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.cs-dismiss {
    background: var(--gradient-main);
    color: #fff;
    border: none;
    padding: 13px 36px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cs-dismiss:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(176, 0, 255, 0.5);
}

/* Floating particles inside modal */
.cs-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-main);
    opacity: 0.6;
    animation: floatParticle 4s ease-in-out infinite;
}

.cs-particles span:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.cs-particles span:nth-child(2) {
    top: 70%;
    left: 5%;
    animation-delay: 0.6s;
    background: #ff007f;
}

.cs-particles span:nth-child(3) {
    top: 20%;
    right: 8%;
    animation-delay: 1.2s;
    background: #00dbde;
}

.cs-particles span:nth-child(4) {
    top: 80%;
    right: 12%;
    animation-delay: 0.3s;
}

.cs-particles span:nth-child(5) {
    top: 45%;
    left: 3%;
    animation-delay: 1.8s;
    background: #ff007f;
}

.cs-particles span:nth-child(6) {
    top: 50%;
    right: 5%;
    animation-delay: 0.9s;
    background: #00dbde;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-18px) scale(1.3);
        opacity: 1;
    }
}