/* ============================================================ */
/* RESET & BASE                                                    */
/* ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at 20% 30%, #1b0b1a, #0d050d);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1.5rem;
}

/* ============================================================ */
/* GLASS CARD                                                      */
/* ============================================================ */
.glass-card {
    max-width: 1280px;
    width: 100%;
    background: rgba(20, 10, 22, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 3.5rem;
    padding: 2.5rem 2.8rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 120, 200, 0.15);
    border: 1px solid rgba(255, 140, 200, 0.2);
    transition: 0.3s ease;
    margin-top: 1rem;
}

/* ============================================================ */
/* NAVBAR                                                          */
/* ============================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo i {
    font-size: 2.6rem;
    color: #ff70b0;
    filter: drop-shadow(0 0 8px #ff3d8f);
}

.logo span {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ff9ad5, #ff4d94);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px #ff3d8f55;
}

.nav-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-actions a {
    color: #f0d0e8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.nav-actions a:hover {
    color: #ff9ad5;
    background: rgba(255, 120, 200, 0.1);
}

.btn-glow {
    background: linear-gradient(135deg, #ff4d94, #ff1a6b);
    color: #fff !important;
    padding: 0.6rem 1.8rem !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(255, 30, 100, 0.4);
    transition: 0.3s;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 30, 100, 0.6);
    background: linear-gradient(135deg, #ff6ba8, #ff2a7a) !important;
}

/* ============================================================ */
/* HERO                                                            */
/* ============================================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 255, 141, 0.15);
    border: 1px solid rgba(74, 255, 141, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    color: #4aff8d;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.2rem;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, #ff9ad5, #ff4d94);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    color: #c9b0c5;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #ff4d94, #ff1a6b);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 0 30px rgba(255, 30, 100, 0.35);
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 30, 100, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #f0d0e8;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.trust-row {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.trust-row span {
    color: #a0809a;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-row span i {
    color: #ff70b0;
    font-size: 1rem;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cam-preview {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #2a1428, #1a0c18);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 200, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cam-preview .blur-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 30%, rgba(255, 80, 150, 0.15), transparent 70%);
}

.cam-preview .live-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.5px;
    animation: pulse-live 1.5s infinite;
}

.cam-preview .live-badge i {
    font-size: 0.5rem;
    color: #ff4d4d;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.girl-avatar {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.girl-avatar i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
}

.girl-avatar .name-tag {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.reaction-bubble {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.cam-overlay-text {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* ============================================================ */
/* FEATURES SECTION                                               */
/* ============================================================ */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title .highlight {
    background: linear-gradient(135deg, #ff9ad5, #ff4d94);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #a0809a;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.features {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 140, 200, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 148, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: #ff70b0;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: #a0809a;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================================ */
/* GIRL CARDS SECTION                                             */
/* ============================================================ */
.girls-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-header h2 i {
    color: #ff6b6b;
}

.view-all {
    color: #ff70b0;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: 0.3s;
}

.view-all:hover {
    color: #ff9ad5;
    gap: 0.6rem;
}

.girl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.girl-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.2rem;
    padding: 1.5rem;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.girl-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 140, 200, 0.2);
}

.girl-card .avatar {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 0.5rem;
}

.girl-card .girl-name {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.girl-card .girl-status {
    color: #4aff8d;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.girl-card .girl-status i {
    font-size: 0.4rem;
}

/* ============================================================ */
/* WHY CHOOSE - CONTENT BLOCKS                                    */
/* ============================================================ */
.why-choose {
    margin-bottom: 4rem;
}

.content-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.content-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.2rem;
    padding: 1.8rem;
}

.content-block h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.content-block h3 i {
    color: #ff70b0;
    font-size: 1.2rem;
}

.content-block p {
    color: #b0a0b0;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================================ */
/* FAQ SECTION                                                    */
/* ============================================================ */
.faq-section {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
}

.faq-item h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.faq-item p {
    color: #a0809a;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ============================================================ */
/* SIGNUP SECTION                                                 */
/* ============================================================ */
.signup-section {
    margin-bottom: 4rem;
}

.signup-box {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    text-align: center;
}

.signup-box h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.signup-box p {
    color: #a0809a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #ff70b0;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder {
    color: #6a5a6a;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0.3rem 0;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #ff4d94;
    cursor: pointer;
}

.form-check label {
    color: #a0809a;
    font-size: 0.85rem;
    line-height: 1.4;
}

.form-check label a {
    color: #ff70b0;
    text-decoration: none;
}

.form-check label a:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
}

.signup-note {
    margin-top: 1.2rem !important;
    font-size: 0.85rem !important;
    color: #6a5a6a !important;
}

.signup-note i {
    color: #ff70b0;
}

/* ============================================================ */
/* FOOTER                                                          */
/* ============================================================ */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #6a5a6a;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a0809a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff70b0;
}

/* ===== LEGAL SECTIONS ===== */
.legal-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.legal-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.legal-section p {
    color: #a0809a;
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section strong {
    color: #d0c0d0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: #4a3a4a;
    font-size: 0.8rem;
}

/* ============================================================ */
/* RESPONSIVE DESIGN                                              */
/* ============================================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-row {
        justify-content: center;
    }
    
    .content-blocks {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
        border-radius: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .signup-box {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .girl-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .logo span {
        font-size: 1.6rem;
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .girl-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .glass-card {
        padding: 1rem;
    }
}