@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600;1,700&family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-darker: #050505;
    --sensual-red: #c41e3a;
    --glam-gold: #d4af37;
    --text-white: #ffffff;
    --text-muted: #888;
    --btn-gradient: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    --card-bg: rgba(20, 20, 20, 0.7);
}
.cta-shiny {
    display: block;
    padding: 22px;
    background: var(--btn-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.6);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-shiny::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shineEffect 3s infinite;
}

@keyframes shineEffect {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

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

body {
    background-color: var(--bg-darker);
    color: var(--text-white);
    overflow-x: hidden;
}

main {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    background: var(--bg-darker);
    min-height: 100vh;
}

h1, h2, .logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 70px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(196, 30, 58, 0.3);
    z-index: 2000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span { color: var(--sensual-red); }

.online-users {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: zoomSlowly 20s infinite alternate;
}

@keyframes zoomSlowly {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(to top, var(--bg-darker) 15%, rgba(5, 5, 5, 0.4) 60%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    padding: 40px 25px 60px;
    text-align: center;
    z-index: 3;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.9);
}

.hero-content p {
    font-size: 1.1rem;
    color: #ffc2cc;
    margin-bottom: 35px;
    font-style: italic;
    font-weight: 300;
}

/* Existing Shine Animation block already at top. Let's make sure section title also uses the new font */
.section-header h2 { font-size: 1.8rem; font-family: 'Playfair Display', serif; font-style: italic; color: #ff3e5e; }

/* Character Section */
section { padding: 40px 20px; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h2 { font-size: 1.8rem; }

.model-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.model-carousel::-webkit-scrollbar { display: none; }

.char-card {
    min-width: 220px;
    height: 320px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    background: #111;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.char-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }

.char-card:hover img { transform: scale(1.1); }

.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--sensual-red);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.dot { width: 6px; height: 6px; background: white; border-radius: 50%; animation: pulseOpacity 1s infinite alternate; }

@keyframes pulseOpacity { from { opacity: 1; } to { opacity: 0.3; } }

.char-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
    z-index: 5;
}

.name { font-size: 1.3rem; font-weight: 600; margin-bottom: 2px; }
.status { font-size: 0.8rem; color: #ff3e5e; font-weight: 500; letter-spacing: 0.5px; }

/* Call Notification */
.call-invite {
    position: fixed;
    bottom: -150%; /* Hidden at bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 440px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3000; /* Higher than header to be visible over everything */
    border: 1px solid rgba(196, 30, 58, 0.5);
    box-shadow: 0 -10px 50px rgba(0,0,0,0.8);
    transition: bottom 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.call-invite.show { bottom: 20px; }

.invite-avatar { width: 55px; height: 55px; border-radius: 50%; border: 2px solid var(--sensual-red); overflow: hidden; }
.invite-avatar img { width: 100%; height: 100%; object-fit: cover; }

.invite-text { flex: 1; }
.invite-name { font-weight: 700; font-size: 1rem; color: #fff; }
.invite-sub { font-size: 0.8rem; color: var(--sensual-red); }

.invite-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00c853;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.5);
    cursor: pointer;
}

/* Floating Effects */
.floating-notif {
    position: fixed;
    bottom: 120px;
    left: 20px;
    background: rgba(255, 46, 99, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff91ad;
    z-index: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.floating-notif.active { opacity: 1; transform: translateY(0); }

/* Custom Sections */
.private-reel {
    margin: 20px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.private-reel img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }

.reel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.play-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid white;
}

.play-circle i { font-size: 1.5rem; margin-left: 5px; }

/* Testimonials */
.testim-scroll { display: flex; gap: 10px; overflow-x: auto; padding: 20px 0; scrollbar-width: none; }
.testim-card {
    min-width: 250px;
    background: #0d0d0d;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.stars { color: var(--glam-gold); font-size: 0.8rem; margin-bottom: 10px; }
.quote { font-size: 0.85rem; color: #ccc; font-style: italic; }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(40px) scale(0.98); transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
