/* ============================================
   VirtualCrush - Landing Page Styles
   Typography & Colors from mockup
   ============================================ */

:root {
    /* Colors from mockup */
    --bg-dark: #101419;
    --text-white: #ffffff;
    --accent-purple: #AD00FF;
    --accent-purple-dark: #6815E8;
    --accent-teal: #00CCE8;
    --accent-teal-bright: #00FFFF;
    --gray-light: #e8e8e8;
    --gray-input: #2a2f36;
    
    /* Gradients */
    --gradient-purple-pink: linear-gradient(135deg, #AD00FF 0%, #6815E8 100%);
    --shadow-gradient: 0 4px 20px rgba(61, 209, 230, 0.35), 0 4px 40px rgba(187, 70, 216, 0.4);
    --shadow-gradient-hover: 0 6px 25px rgba(61, 209, 230, 0.4), 0 6px 50px rgba(187, 70, 216, 0.5);
    --gradient-purple-blue: linear-gradient(135deg, #AD00FF 0%, #6815E8 50%, #00CCE8 100%);
    
    /* Typography */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 4rem 1.5rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000c0c;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    flex-shrink: 0;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: #bb46d8;
    color: var(--text-white);
    box-shadow: var(--shadow-gradient);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gradient-hover);
}

.btn-text-short {
    display: none;
}

@media (max-width: 400px) {
    .btn-text-long {
        display: none;
    }
    
    .btn-text-short {
        display: inline;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 8rem 1.5rem 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heart-glow {
    position: absolute;
    width: 100%;
    max-width: 540px;
    height: 360px;
    background: var(--gradient-purple-pink);
    opacity: 0.15;
    filter: blur(60px);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.05); }
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.5rem;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(61, 209, 230, 0.25), 0 0 50px rgba(187, 70, 216, 0.35);
}



.hero-grid img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
}

.hero-text {
    padding-left: 0;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-line {
    display: block;
    color: var(--text-white);
}

.hero-line-accent {
    background: linear-gradient(135deg, #3dd1e6 0%, #bb46d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-white);
    opacity: 0.95;
}

/* ============================================
   AI Girls Section
   ============================================ */
.ai-girls {
    padding: var(--section-padding);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.girl-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.girl-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.girl-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.girl-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-teal);
    opacity: 0.6;
}

.girl-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
}

.girl-age {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--accent-teal);
}

/* ============================================
   Description Section
   ============================================ */
.description {
    padding: 2.5rem 1.5rem;
}

.description-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.description-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5rem auto 0.75rem;
    color: var(--text-white);
    max-width: 800px;
}

.description-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-white);
    opacity: 0.95;
    margin-bottom: 0.75rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.read-more {
    display: inline-block;
    color: var(--accent-purple);
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--accent-teal);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid rgba(173, 0, 255, 0.2);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rta-badge {
    background: var(--text-white);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-white);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-white);
    font-size: 0.75rem;
    text-decoration: none;
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--accent-teal);
}

.footer-disclaimer {
    margin-bottom: 1.5rem;
}

.footer-disclaimer p {
    font-size: 0.7rem;
    color: var(--text-white);
    opacity: 0.7;
    line-height: 1.6;
}

/* SEO Text - VirtualCrush */
.seo-text {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-text p {
    font-size: 0.8rem;
    color: var(--text-white);
    opacity: 0.8;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.seo-text strong {
    color: var(--accent-teal);
    font-weight: 600;
}

/* ============================================
   Chat Widget
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 360px;
    max-width: calc(100vw - 2rem);
    background: var(--text-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    overflow: hidden;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.chat-widget.open {
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    background: var(--bg-dark);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.8;
}

.chat-close:hover {
    opacity: 1;
}

.chat-body {
    padding: 1rem;
    max-height: 400px;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.chat-incoming {
    flex-direction: row;
}

.chat-outgoing {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.chat-bubble {
    background: var(--gray-light);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 80%;
}

.chat-bubble-outgoing {
    background: var(--gray-input);
    color: var(--text-white);
}

.chat-bubble p {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.chat-time {
    font-size: 0.7rem;
    opacity: 0.7;
}

.chat-input-area {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    background: var(--gray-input);
    color: var(--text-white);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-send {
    background: #bb46d8;
    color: var(--text-white);
    padding: 0.75rem 1.25rem;
    font-weight: 600;
}

.btn-send:hover {
    background: #c968e0;
}

.chat-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #bb46d8;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: var(--shadow-gradient);
    transition: transform 0.2s;
}

.chat-toggle:hover {
    transform: scale(1.05);
}

.chat-toggle-icon {
    font-size: 1.5rem;
}

.chat-widget.open + .chat-toggle {
    display: none;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        padding-left: 0;
    }
    
    .hero-tagline {
        margin: 0 auto;
        text-align: center;
        max-width: 520px;
    }
    
    .girls-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
    }
    
    .logo-img {
        height: 24px;
    }
    
    .header-content {
        gap: 0.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-grid {
        max-width: 100%;
    }
    
    .hero-grid img {
        min-height: 100px;
    }
    
    .girls-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .chat-widget {
        width: calc(100vw - 1rem);
        right: 0.5rem;
        bottom: 0.5rem;
    }
    
    .chat-toggle {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.6rem 0.75rem;
    }
    
    .header-content {
        gap: 0.5rem;
    }
    
    .logo-img {
        height: 20px;
    }
    
    .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .girls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .description-title {
        font-size: 1.35rem;
    }
    
    .hero-grid {
        max-width: 100%;
    }
    
    .hero-grid img {
        min-height: 80px;
    }
}

@media (max-width: 360px) {
    .header-content {
        gap: 0.35rem;
    }
    
    .logo-img {
        height: 18px;
    }
    
    .btn-primary {
        padding: 0.45rem 0.6rem;
        font-size: 0.75rem;
    }
}
/* Cache bust v2 */
