/* ============================================
   TS Lacey — Seductive Dark Luxury Theme
   Redesigned for readability + escort aesthetic
   ============================================ */

/* CSS Variables */
:root {
    --color-bg: #0a0407;
    --color-bg-alt: #120810;
    --color-surface: rgba(255, 255, 255, 0.04);
    --color-surface-hover: rgba(255, 255, 255, 0.07);
    --color-border: rgba(255, 80, 120, 0.12);
    --color-border-hover: rgba(255, 80, 120, 0.28);
    --color-text: #faf0f2;
    --color-text-muted: #e8cdd6;
    --color-text-dim: #d4aebb;
    --color-accent: #e6163f;
    --color-accent-glow: rgba(230, 22, 63, 0.45);
    --color-accent-soft: #ff7a9a;
    --color-rose: #c4003a;
    --color-gold: #dbb368;
    --color-gold-glow: rgba(219, 179, 104, 0.35);
    --color-blood: #9b0010;
    --color-onlyfans: #00AFF0;
    --color-fansly: #1fa7f3;
    --grad-seductive: linear-gradient(135deg, #e6163f 0%, #c4003a 50%, #7a0025 100%);
    --grad-gold: linear-gradient(135deg, #dbb368 0%, #b8903a 50%, #8a6820 100%);
    --grad-gothic: linear-gradient(135deg, #1f000a 0%, #4a0015 50%, #120810 100%);
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 30px;
    --r-full: 9999px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-gothic: 'UnifrakturCook', cursive;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode */
:root.light-mode {
    --color-bg: #faf5f7;
    --color-bg-alt: #f0e8ec;
    --color-surface: rgba(0, 0, 0, 0.03);
    --color-surface-hover: rgba(0, 0, 0, 0.06);
    --color-border: rgba(180, 0, 50, 0.12);
    --color-border-hover: rgba(180, 0, 50, 0.25);
    --color-text: #1a0a10;
    --color-text-muted: #4a2535;
    --color-text-dim: #6a4555;
    --color-accent: #c4003a;
    --color-accent-glow: rgba(196, 0, 58, 0.25);
    --color-accent-soft: #d94070;
    --color-rose: #a00030;
    --color-gold: #a07828;
    --color-gold-glow: rgba(160, 120, 40, 0.2);
    --color-blood: #7a0010;
    --grad-seductive: linear-gradient(135deg, #c4003a 0%, #a00030 50%, #600018 100%);
    --grad-gold: linear-gradient(135deg, #a07828 0%, #886420 50%, #604810 100%);
    --grad-gothic: linear-gradient(135deg, #f0e8ec 0%, #e0d0d8 50%, #faf5f7 100%);
}
:root.light-mode .particle { display: none; }
:root.light-mode .social-proof-toast { background: rgba(255,255,255,0.95); border-color: rgba(180,0,50,0.15); }
:root.light-mode .announcement-bar { background: linear-gradient(135deg, rgba(196,0,58,0.08), rgba(160,120,40,0.06)); border-color: rgba(180,0,50,0.1); }

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 15px;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }


/* ============ ANIMATED BACKGROUND ============ */
.bg-gradient {
    position: fixed; inset: 0; z-index: -2;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(230, 22, 63, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(155, 0, 16, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(196, 0, 58, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at 90% 15%, rgba(150, 0, 80, 0.14) 0%, transparent 45%);
    animation: gradientShift 14s ease infinite alternate;
    will-change: transform, opacity; contain: strict;
}
@keyframes gradientShift {
    0%   { opacity: 0.7; transform: scale(1); }
    50%  { opacity: 1;   transform: scale(1.05); }
    100% { opacity: 0.7; transform: scale(1); }
}
.bg-gradient::after {
    content: ''; position: absolute; top: 30%; left: 50%;
    width: 500px; height: 500px; transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(230, 22, 63, 0.07) 0%, transparent 70%);
    animation: bgBreath 7s ease-in-out infinite; pointer-events: none;
}
@keyframes bgBreath {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50%      { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

.particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.particle {
    position: absolute; width: 2px; height: 2px;
    background: var(--color-accent); border-radius: 50%; opacity: 0;
    animation: particleFloat linear infinite;
    will-change: transform, opacity; contain: layout style;
}
@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(100vh) scale(0); }
    10%  { opacity: var(--max-opacity, 0.6); }
    50%  { opacity: calc(var(--max-opacity, 0.6) * 1.5); }
    90%  { opacity: var(--max-opacity, 0.6); }
    100% { opacity: 0; transform: translateY(-10vh) scale(1.2); }
}

/* ============ CONTAINER ============ */
.container {
    max-width: 580px;
    margin: 0 auto;
    padding: 44px 22px 64px;
    position: relative;
    z-index: 1;
}

/* ============ ANNOUNCEMENT BANNER ============ */
.announcement-bar {
    position: relative; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(90deg, #1a0a10, #2d0a18, #1a0a10);
    border-bottom: 1px solid rgba(230, 22, 63, 0.3);
    padding: 12px 44px 12px 18px; z-index: 100;
    animation: announcementSlide 0.4s ease-out;
}
.announcement-content { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--color-text-muted); text-align: center; }
.announcement-content a { color: var(--color-accent-soft); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.announcement-content a:hover { color: #fff; text-decoration: underline; }
.announcement-dot { width: 7px; height: 7px; background: var(--color-accent); border-radius: 50%; animation: livePulse 1.5s ease-in-out infinite; flex-shrink: 0; }
.announcement-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,0.4); font-size: 20px; cursor: pointer; padding: 4px 8px; line-height: 1; transition: color 0.2s; }
.announcement-close:hover { color: var(--color-accent); }
@keyframes announcementSlide { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }

/* ============ SOCIAL PROOF TOAST ============ */
.social-proof-toast {
    position: fixed; bottom: 28px; left: 28px;
    display: flex; align-items: center; gap: 14px;
    background: rgba(18, 8, 16, 0.96); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); padding: 14px 20px; z-index: 9999;
    backdrop-filter: blur(14px); box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    animation: spSlideIn 0.4s ease-out; max-width: 340px;
}
.social-proof-toast.sp-hide { animation: spSlideOut 0.3s ease-in forwards; }
.sp-icon { font-size: 26px; flex-shrink: 0; }
.sp-text { display: flex; flex-direction: column; gap: 3px; }
.sp-text strong { font-size: 14px; color: var(--color-text); }
.sp-text span { font-size: 12px; color: var(--color-text-dim); }
@keyframes spSlideIn  { from { opacity: 0; transform: translateX(-100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes spSlideOut { from { opacity: 1; transform: translateX(0); }   to { opacity: 0; transform: translateX(-100%); } }
@media (max-width: 600px) {
    .social-proof-toast { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* ============ HERO SECTION ============ */
.hero { text-align: center; margin-bottom: 44px; animation: fadeInUp 0.8s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.avatar-wrapper { position: relative; display: inline-block; margin-bottom: 28px; }
.avatar-ring {
    position: absolute; top: -9px; left: -9px; right: -9px; bottom: -9px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #e6163f, #ff7a9a, #c4003a, #ff7a9a, #e6163f);
    animation: ringPulse 3s ease-in-out infinite, ringRotate 10s linear infinite;
    z-index: 0;
    box-shadow: 0 0 50px var(--color-accent-glow), 0 0 100px rgba(230, 22, 63, 0.15);
}
@keyframes ringPulse {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; box-shadow: 0 0 70px var(--color-accent-glow), 0 0 120px rgba(255, 80, 120, 0.2); }
}
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.avatar {
    position: relative; width: 190px; height: 190px;
    border-radius: 50%; overflow: hidden;
    border: 4px solid var(--color-bg); z-index: 1;
    background: var(--color-bg-alt);
    box-shadow: 0 0 40px rgba(230, 22, 63, 0.15);
}
.avatar:hover img { transform: scale(1.08); filter: brightness(1.1) contrast(1.05); }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.6s ease; }
.avatar-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--grad-seductive); font-family: var(--font-display); font-size: 52px; font-weight: 700; color: white; letter-spacing: 2px; }

.status-badge {
    position: absolute; bottom: 8px; right: -10px;
    display: flex; align-items: center; gap: 6px;
    background: rgba(18, 8, 16, 0.92); border: 1px solid rgba(255, 80, 120, 0.3);
    border-radius: var(--r-full); padding: 5px 14px 5px 10px;
    font-size: 12px; font-weight: 500; color: var(--color-accent); z-index: 2;
    backdrop-filter: blur(12px);
}
.status-dot { width: 7px; height: 7px; background: var(--color-accent); border-radius: 50%; animation: statusPulse 2s ease-in-out infinite; }
@keyframes statusPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 80, 120, 0.5); } 50% { box-shadow: 0 0 0 6px rgba(255, 80, 120, 0); } }
@keyframes livePulse  { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(230, 22, 63, 0.6); } 50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(230, 22, 63, 0); } }

.live-visitors {
    display: flex; align-items: center; gap: 7px; margin-top: 12px;
    background: rgba(18, 8, 16, 0.88); border: 1px solid rgba(230, 22, 63, 0.25);
    border-radius: var(--r-full); padding: 6px 16px 6px 12px;
    font-size: 13px; color: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px); animation: fadeInUp 0.4s ease-out;
}
.live-visitors strong { color: var(--color-accent); font-weight: 700; }
.live-dot { width: 8px; height: 8px; background: var(--color-accent); border-radius: 50%; animation: livePulse 1.5s ease-in-out infinite; flex-shrink: 0; }

/* Hero Text */
.hero-text { margin-bottom: 28px; }
.name {
    font-family: var(--font-gothic); font-size: 64px; font-weight: 700;
    letter-spacing: 3px; line-height: 1.1; margin-bottom: 14px;
    background: linear-gradient(135deg, #fff5f7 0%, #ff7a9a 20%, #e6163f 45%, #c4003a 70%, #7a0025 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    filter: drop-shadow(0 0 40px rgba(230, 22, 63, 0.6));
    animation: nameShimmer 5s ease-in-out infinite;
}
@keyframes nameShimmer { 0%, 100% { background-position: 0% center; } 50% { background-position: 100% center; } }

.tagline {
    font-family: var(--font-display); font-size: 15px; font-weight: 500;
    color: var(--color-accent-soft); letter-spacing: 5px;
    text-transform: uppercase; margin-bottom: 18px; font-style: italic;
    text-shadow: 0 0 28px rgba(230, 22, 63, 0.5), 0 0 60px rgba(230, 22, 63, 0.18);
    animation: taglinePulse 6s ease-in-out infinite;
}
@keyframes taglinePulse {
    0%, 100% { opacity: 0.9; }
    50%      { opacity: 1; text-shadow: 0 0 36px rgba(230, 22, 63, 0.65), 0 0 80px rgba(230, 22, 63, 0.25); }
}

.bio {
    font-size: 15px; line-height: 1.85; color: var(--color-text-muted);
    max-width: 440px; margin: 0 auto; transition: color 0.4s ease;
}
.bio:hover { color: var(--color-text); }

/* Stats */
.stats {
    display: flex; align-items: center; justify-content: center; gap: 28px;
    padding: 26px; background: var(--color-surface);
    border: 1px solid var(--color-border); border-radius: var(--r-lg);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(230, 22, 63, 0.06), inset 0 1px 0 rgba(255,255,255,0.03);
    transition: var(--ease);
}
.stats:hover { border-color: var(--color-border-hover); box-shadow: 0 8px 44px rgba(230, 22, 63, 0.12); }
.stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--color-text); display: inline; }
.stat-suffix { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--color-accent); }
.stat-label { display: block; font-size: 12px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }
.stat-divider { width: 1px; height: 40px; background: var(--color-border); }

/* ============ SECTION TITLE ============ */
.section-title {
    font-family: var(--font-display); font-size: 24px; font-weight: 600;
    text-align: center; margin-bottom: 22px; color: var(--color-text);
    letter-spacing: 1.5px;
    text-shadow: 0 0 24px rgba(230, 22, 63, 0.18);
    position: relative;
}
.section-title::after {
    content: ''; display: block; width: 70px; height: 2px;
    background: var(--grad-seductive); margin: 14px auto 0;
    border-radius: 2px; box-shadow: 0 0 14px rgba(230, 22, 63, 0.35);
}

/* ============ LINK CARDS (OnlyFans / Fansly) ============ */
.links-section { margin-bottom: 44px; display: flex; flex-direction: column; gap: 16px; animation: fadeInUp 0.8s ease-out 0.2s both; }
.link-card {
    position: relative; display: block; text-decoration: none;
    border-radius: var(--r-lg); overflow: hidden; transition: var(--ease); transform: translateY(0);
}
.link-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 14px 56px rgba(0,0,0,0.35); }
.link-card-inner { display: flex; align-items: center; gap: 18px; padding: 22px 26px; position: relative; z-index: 1; }

.link-card.onlyfans { background: linear-gradient(135deg, rgba(0,175,240,0.14) 0%, rgba(0,119,182,0.14) 100%); border: 1px solid rgba(0,175,240,0.22); box-shadow: 0 4px 28px rgba(0,175,240,0.1); animation: cardBreath 4s ease-in-out infinite; }
@keyframes cardBreath { 0%, 100% { box-shadow: 0 4px 28px rgba(0,175,240,0.1); } 50% { box-shadow: 0 4px 40px rgba(0,175,240,0.2), 0 0 70px rgba(0,175,240,0.06); } }
.link-card.onlyfans:hover { background: linear-gradient(135deg, rgba(0,175,240,0.28) 0%, rgba(0,119,182,0.28) 100%); border-color: rgba(0,175,240,0.5); box-shadow: 0 14px 56px rgba(0,175,240,0.25); animation: none; }
.link-card.onlyfans .link-icon, .link-card.onlyfans .link-platform { color: var(--color-onlyfans); }

.link-card.fansly { background: linear-gradient(135deg, rgba(31,167,243,0.14) 0%, rgba(108,92,231,0.14) 100%); border: 1px solid rgba(31,167,243,0.22); box-shadow: 0 4px 28px rgba(108,92,231,0.1); animation: cardBreathFansly 4s ease-in-out infinite 1s; }
@keyframes cardBreathFansly { 0%, 100% { box-shadow: 0 4px 28px rgba(108,92,231,0.1); } 50% { box-shadow: 0 4px 40px rgba(108,92,231,0.2), 0 0 70px rgba(108,92,231,0.06); } }
.link-card.fansly:hover { background: linear-gradient(135deg, rgba(31,167,243,0.28) 0%, rgba(108,92,231,0.28) 100%); border-color: rgba(31,167,243,0.5); box-shadow: 0 14px 56px rgba(108,92,231,0.25); animation: none; }
.link-card.fansly .link-icon, .link-card.fansly .link-platform { color: var(--color-fansly); }

.link-icon { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border-radius: var(--r-md); }
.link-text { flex: 1; }
.link-platform { display: block; font-size: 19px; font-weight: 600; letter-spacing: -0.3px; }
.link-action { display: block; font-size: 14px; color: var(--color-text-muted); margin-top: 3px; }
.link-arrow { flex-shrink: 0; color: var(--color-text-dim); transition: var(--ease); }
.link-card:hover .link-arrow { color: var(--color-text); transform: translateX(5px); }
.link-shine { position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); transition: 0.6s; z-index: 0; }
.link-card:hover .link-shine { left: 100%; }

/* ============ ESCORT SECTION ============ */
.escort-section { margin-bottom: 36px; animation: fadeInUp 0.8s ease-out 0.5s both; }
.escort-subtitle { text-align: center; font-size: 14px; color: var(--color-text-muted); margin-bottom: 10px; line-height: 1.7; }
.escort-location-header { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: var(--color-text-muted); margin-bottom: 22px; }
.escort-location-header i, .escort-location-header svg { width: 15px; height: 15px; color: var(--color-accent); }

.escort-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 22px; }
@media (max-width: 500px) { .escort-grid { grid-template-columns: 1fr; } }

.escort-service-card {
    display: flex; align-items: center; gap: 16px; padding: 18px 20px;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); transition: all 0.3s ease;
}
.escort-service-card:hover { border-color: var(--color-border-hover); background: var(--color-surface-hover); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(230,22,63,0.1); }
.escort-service-icon { flex-shrink: 0; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: rgba(230,22,63,0.1); border-radius: var(--r-sm); color: var(--color-accent); }
.escort-service-icon i, .escort-service-icon svg { width: 22px; height: 22px; }
.escort-service-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.escort-service-name { font-size: 15px; font-weight: 600; color: var(--color-text); }
.escort-service-desc { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; }
.escort-service-duration { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--color-text-dim); margin-top: 2px; }
.escort-service-duration i, .escort-service-duration svg { width: 11px; height: 11px; }
.escort-service-price { flex-shrink: 0; font-size: 17px; font-weight: 700; color: var(--color-accent); font-family: var(--font-display); }

.escort-book-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 18px 28px;
    background: var(--grad-seductive); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 16px; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: all 0.3s ease;
    letter-spacing: 0.5px; box-shadow: 0 6px 28px rgba(230,22,63,0.25);
}
.escort-book-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(230,22,63,0.4); }
.escort-book-btn i, .escort-book-btn svg { width: 22px; height: 22px; }
.escort-practices { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 22px 0; }
.escort-practice-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; font-size: 12px; font-weight: 500;
    color: var(--color-text-muted); background: var(--color-surface);
    border: 1px solid var(--color-border); border-radius: var(--r-full);
    white-space: nowrap; transition: var(--ease);
}
.escort-practice-tag i, .escort-practice-tag svg { width: 14px; height: 14px; color: var(--color-accent); flex-shrink: 0; }
.escort-practice-tag:hover { border-color: var(--color-border-hover); background: var(--color-surface-hover); color: var(--color-text); }
.escort-calendar { margin: 24px 0; }
.escort-calendar-title {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    font-family: var(--font-display); font-size: 16px; font-weight: 600;
    color: var(--color-text-muted); margin-bottom: 14px;
}
.escort-calendar-title i, .escort-calendar-title svg { width: 18px; height: 18px; color: var(--color-accent); }
.escort-calendar-grid {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
    scrollbar-width: thin; scrollbar-color: var(--color-border) transparent;
    -webkit-overflow-scrolling: touch;
}
.escort-cal-day {
    flex: 0 0 68px; display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 12px 8px; border-radius: var(--r-md); position: relative;
    background: var(--color-surface); border: 1px solid var(--color-border);
    transition: var(--ease); text-align: center;
}
.escort-cal-day:hover { border-color: var(--color-border-hover); }
.escort-cal-weekday { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dim); }
.escort-cal-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--color-text); line-height: 1; }
.escort-cal-month { font-size: 10px; color: var(--color-text-dim); }
.escort-cal-badge {
    position: absolute; top: -4px; right: -4px; width: 18px; height: 18px;
    border-radius: 50%; font-size: 10px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.escort-cal-day.avail-available { border-color: rgba(45,180,70,0.4); background: rgba(45,180,70,0.08); }
.escort-cal-day.avail-available .escort-cal-num { color: #4ade80; }
.escort-cal-day.avail-available .escort-cal-badge { background: #22c55e; color: #fff; }
.escort-cal-day.avail-busy { border-color: rgba(180,45,45,0.4); background: rgba(180,45,45,0.08); }
.escort-cal-day.avail-busy .escort-cal-num { color: #f87171; }
.escort-cal-day.avail-busy .escort-cal-badge { background: #ef4444; color: #fff; }
.escort-cal-day.avail-maybe { border-color: rgba(180,160,45,0.4); background: rgba(180,160,45,0.08); }
.escort-cal-day.avail-maybe .escort-cal-num { color: #facc15; }
.escort-cal-day.avail-maybe .escort-cal-badge { background: #eab308; color: #000; }
/* Escort Profile Visual (photo + slider) */
.escort-profile-visual { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 20px 0; flex-wrap: wrap; }
.escort-profile-photo { flex: 0 0 auto; }
.escort-profile-photo img {
    width: 120px; height: 120px; object-fit: cover; border-radius: 50%;
    border: 3px solid var(--color-accent); box-shadow: 0 0 30px rgba(230,22,63,0.15);
}
.escort-slider {
    flex: 1; min-width: 0; max-width: 400px; position: relative;
    border-radius: var(--r-lg); overflow: hidden;
}
.escort-slider-track { display: flex; transition: transform 0.4s ease; }
.escort-slider-slide { flex: 0 0 100%; position: relative; }
.escort-slider-slide img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; border-radius: var(--r-lg); }
.escort-slider-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #ccc;
    font-size: 11px; text-align: center;
}
.escort-slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: rgba(0,0,0,0.6); color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s; backdrop-filter: blur(4px);
}
.escort-slider:hover .escort-slider-btn { opacity: 1; }
.escort-slider-btn i, .escort-slider-btn svg { width: 18px; height: 18px; }
.escort-slider-prev { left: 6px; }
.escort-slider-next { right: 6px; }
.escort-slider-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.escort-slider-dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3);
    cursor: pointer; transition: background 0.2s;
}
.escort-slider-dot.active { background: var(--color-accent); }

/* Co-Escort Partners */
.escort-partners { margin: 24px 0; }
.escort-partners-title {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    font-family: var(--font-display); font-size: 15px; font-weight: 600;
    color: var(--color-text-muted); margin-bottom: 14px;
}
.escort-partners-title i, .escort-partners-title svg { width: 18px; height: 18px; color: var(--color-accent); }
.escort-partners-grid { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.escort-partner-card {
    flex: 0 0 180px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); overflow: hidden; transition: var(--ease); position: relative;
}
.escort-partner-card:hover { border-color: var(--color-accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,22,63,0.1); }
.escort-partner-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.escort-partner-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.escort-partner-card:hover .escort-partner-photo img { transform: scale(1.04); }
.escort-partner-nophoto {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.03); color: var(--color-text-dim);
}
.escort-partner-nophoto i, .escort-partner-nophoto svg { width: 40px; height: 40px; }
.escort-partner-info { padding: 12px; text-align: center; }
.escort-partner-name { font-size: 14px; font-weight: 700; color: var(--color-text); display: block; margin-bottom: 4px; }
.escort-partner-bio { font-size: 11px; color: var(--color-text-dim); display: block; margin-bottom: 4px; line-height: 1.4; }
.escort-partner-services { font-size: 10px; color: var(--color-accent-soft); display: block; margin-bottom: 4px; }
.escort-partner-price { font-size: 12px; font-weight: 700; color: var(--color-accent); display: block; }
.escort-partner-book {
    position: absolute; top: 8px; right: 8px; width: 30px; height: 30px;
    border-radius: 50%; background: rgba(230,22,63,0.8); color: white;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s; text-decoration: none;
}
.escort-partner-card:hover .escort-partner-book { opacity: 1; }
.escort-partner-book i, .escort-partner-book svg { width: 14px; height: 14px; }

.escort-disclaimer { text-align: center; font-size: 11px; color: var(--color-text-dim); margin-top: 14px; font-style: italic; }

/* ============ DONATION SECTION ============ */
.donation-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.donation-card {
    position: relative; padding: 40px 32px; text-align: center; overflow: hidden;
    background: linear-gradient(145deg, rgba(255,80,129,0.08) 0%, rgba(155,0,16,0.12) 50%, rgba(18,8,16,0.95) 100%);
    border: 1px solid rgba(255,80,129,0.2); border-radius: var(--r-xl);
    box-shadow: 0 10px 48px rgba(255,80,129,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.donation-sparkle { position: absolute; top: 0; left: -50%; width: 200%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,80,129,0.03), transparent); animation: donationShimmer 5s ease-in-out infinite; pointer-events: none; }
@keyframes donationShimmer { 0%, 100% { transform: translateX(-30%); } 50% { transform: translateX(30%); } }

.donation-icon { margin-bottom: 18px; }
.donation-icon svg, .donation-icon i { width: 40px; height: 40px; color: var(--color-accent); filter: drop-shadow(0 0 14px var(--color-accent-glow)); animation: iconFloat 3s ease-in-out infinite; }
@keyframes iconFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.donation-title {
    font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 14px;
    background: linear-gradient(135deg, #fff 0%, #ff9ab5 50%, #e6163f 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.35;
}
.donation-text { font-size: 14px; line-height: 1.8; color: var(--color-text-muted); margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }

.donation-progress-wrap { margin-bottom: 28px; }
.donation-progress-bar { position: relative; width: 100%; height: 12px; background: rgba(255,255,255,0.06); border-radius: var(--r-full); overflow: hidden; margin-bottom: 12px; }
.donation-progress-fill { height: 100%; background: var(--grad-seductive); border-radius: var(--r-full); position: relative; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 0 14px var(--color-accent-glow); }
.donation-progress-fill::after { content: ''; position: absolute; top: 0; right: 0; width: 24px; height: 100%; background: rgba(255,255,255,0.4); border-radius: 50%; filter: blur(5px); animation: progressPulse 2s ease-in-out infinite; }
@keyframes progressPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.donation-progress-glow { position: absolute; top: -5px; left: 0; width: 18%; height: 22px; background: linear-gradient(90deg, transparent, #ff0033, transparent); border-radius: var(--r-full); filter: blur(7px); pointer-events: none; }
.donation-progress-labels { display: flex; justify-content: space-between; align-items: center; }
.donation-raised { font-size: 15px; font-weight: 600; color: var(--color-accent); text-shadow: 0 0 12px var(--color-accent-glow); }
.donation-goal { font-size: 13px; color: var(--color-text-muted); }

.donation-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 20px 28px;
    background: var(--grad-seductive); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 17px; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: var(--ease);
    letter-spacing: 0.5px; box-shadow: 0 6px 28px rgba(255,80,129,0.25);
    animation: btnPulse 3s ease-in-out infinite;
}
@keyframes btnPulse { 0%, 100% { box-shadow: 0 6px 28px rgba(255,80,129,0.25); } 50% { box-shadow: 0 8px 40px rgba(255,80,129,0.4), 0 0 70px rgba(255,80,129,0.1); } }
.donation-btn:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 10px 48px rgba(255,80,129,0.45); }
.donation-btn svg, .donation-btn i { width: 20px; height: 20px; animation: heartBeat 1.5s ease-in-out infinite; }
@keyframes heartBeat { 0%, 100% { transform: scale(1); } 25% { transform: scale(1.2); } 40% { transform: scale(1); } 60% { transform: scale(1.15); } }

.donation-alts { margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.donation-alt-label { font-size: 12px; color: var(--color-text-dim); }
.donation-alts a { font-size: 13px; color: var(--color-text-muted); text-decoration: none; transition: var(--ease); font-weight: 500; }
.donation-alts a:hover { color: var(--color-accent); }
.donation-sep { color: var(--color-text-dim); font-size: 11px; }
.donation-crypto { margin-top: 16px; padding: 16px; background: rgba(0,0,0,0.3); border: 1px solid var(--color-border); border-radius: var(--r-md); text-align: left; }
.donation-crypto p { font-size: 12px; color: var(--color-text-muted); margin-bottom: 6px; word-break: break-all; }
.donation-crypto p:last-child { margin-bottom: 0; }
.donation-crypto code { font-size: 11px; color: var(--color-accent-soft); background: rgba(255,80,129,0.08); padding: 2px 7px; border-radius: 5px; }

/* ============ CAM SITES ============ */
.cam-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.35s both; }
.cam-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.cam-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    padding: 22px 16px; border-radius: var(--r-md); text-decoration: none;
    background: var(--color-surface); border: 1px solid var(--color-border);
    color: var(--color-text-muted); font-size: 14px; font-weight: 600;
    transition: var(--ease); cursor: pointer;
}
.cam-card i, .cam-card svg { width: 24px; height: 24px; }
.cam-card:hover { transform: translateY(-3px); color: var(--color-text); }
.cam-card.chaturbate { border-color: rgba(245,166,35,0.2); }
.cam-card.chaturbate:hover { background: rgba(245,166,35,0.12); border-color: rgba(245,166,35,0.4); color: #f5a623; box-shadow: 0 8px 36px rgba(245,166,35,0.12); }
.cam-card.stripchat { border-color: rgba(255,50,50,0.2); }
.cam-card.stripchat:hover { background: rgba(255,50,50,0.12); border-color: rgba(255,50,50,0.4); color: #ff3232; box-shadow: 0 8px 36px rgba(255,50,50,0.12); }

/* ============ SOCIAL + SHARE ============ */
.social-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.4s both; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.social-link {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 20px 14px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); text-decoration: none; color: var(--color-text-muted);
    transition: var(--ease); backdrop-filter: blur(10px);
}
.social-link:hover { background: rgba(230,22,63,0.08); border-color: var(--color-accent); color: var(--color-text); transform: translateY(-3px) scale(1.03); box-shadow: 0 6px 28px rgba(230,22,63,0.12); }
.social-link svg, .social-link i { width: 22px; height: 22px; }
.social-link span { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.share-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.45s both; }
.share-subtitle { text-align: center; font-size: 14px; color: var(--color-text-muted); margin-bottom: 22px; font-style: italic; }
.share-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.share-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 10px; border-radius: var(--r-md); background: var(--color-surface);
    border: 1px solid var(--color-border); color: var(--color-text-muted);
    text-decoration: none; font-family: var(--font-body); font-size: 12px; font-weight: 500;
    cursor: pointer; transition: var(--ease);
}
.share-btn svg, .share-btn i { width: 20px; height: 20px; }
.share-btn:hover { transform: translateY(-3px); color: var(--color-text); }
.share-twitter:hover  { background: rgba(29,161,242,0.12); border-color: rgba(29,161,242,0.3); color: #1da1f2; }
.share-reddit:hover   { background: rgba(255,69,0,0.12); border-color: rgba(255,69,0,0.3); color: #ff4500; }
.share-copy:hover     { background: rgba(219,179,104,0.12); border-color: rgba(219,179,104,0.3); color: var(--color-gold); }
.share-copy.copied    { background: rgba(230,22,63,0.15); border-color: rgba(230,22,63,0.4); color: var(--color-accent); }
@media (max-width: 480px) { .share-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============ GALLERY ============ */
.gallery-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery-item {
    position: relative; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden;
    cursor: pointer; transition: var(--ease); background: var(--color-surface); border: 1px solid var(--color-border);
}
.gallery-item.featured { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:hover { transform: scale(1.03); border-color: var(--color-accent); box-shadow: 0 0 36px rgba(230,22,63,0.15), 0 10px 44px rgba(0,0,0,0.3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: var(--ease); }
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.6) saturate(1.2); }
.gallery-item.unlocked:hover img { filter: brightness(0.9) saturate(1.1); }

.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--color-text-dim); background: var(--color-surface); }
.gallery-placeholder svg, .gallery-placeholder i { width: 34px; height: 34px; opacity: 0.5; }
.gallery-placeholder span { font-size: 13px; font-weight: 500; }

.gallery-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 12px;
    background: linear-gradient(180deg, rgba(10,4,7,0.3) 0%, rgba(230,22,63,0.15) 50%, rgba(10,4,7,0.85) 100%);
    backdrop-filter: blur(6px); opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease; color: var(--color-text); transform: translateY(8px);
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay svg, .gallery-overlay i { width: 26px; height: 26px; color: var(--color-accent); filter: drop-shadow(0 0 10px var(--color-accent-glow)); }
.gallery-overlay span { font-size: 14px; font-weight: 600; color: var(--color-accent-soft); letter-spacing: 1.5px; text-transform: uppercase; text-shadow: 0 0 18px var(--color-accent-glow); }

/* ============ VIDEOS ============ */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.video-item {
    position: relative; aspect-ratio: 9/16; border-radius: var(--r-md); overflow: hidden;
    cursor: pointer; transition: var(--ease); background: var(--color-surface); border: 1px solid var(--color-border);
}
.video-item.featured { grid-column: span 2; aspect-ratio: 16/9; }
.video-item:hover { transform: scale(1.03); border-color: var(--color-accent); box-shadow: 0 0 36px rgba(230,22,63,0.15), 0 10px 44px rgba(0,0,0,0.3); }
.video-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-badge {
    position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); border-radius: 50%;
    color: white; z-index: 1; transition: var(--ease);
}
.video-play-badge svg, .video-play-badge i { width: 18px; height: 18px; }
.video-play-badge { cursor: pointer; z-index: 5; }
.video-item:hover .video-play-badge { background: var(--color-accent); transform: scale(1.12); }
.video-item.playing .video-play-badge { background: var(--color-accent); }
.video-item .gallery-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: rgba(10,10,15,0.7); backdrop-filter: blur(8px); opacity: 0; transition: var(--ease); color: var(--color-text); }
.video-item:hover .gallery-overlay { opacity: 1; }

/* ============ PAYWALL / PREMIUM ============ */
.paywall-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.55s both; }
.paywall-header { text-align: center; margin-bottom: 28px; }
.paywall-icon { margin-bottom: 10px; }
.paywall-icon i, .paywall-icon svg { width: 36px; height: 36px; color: var(--color-gold); filter: drop-shadow(0 0 14px var(--color-gold-glow)); animation: iconFloat 3s ease-in-out infinite; }
.paywall-subtitle { font-size: 14px; color: var(--color-text-muted); font-style: italic; max-width: 420px; margin: 0 auto; }

.paywall-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 28px; }
.paywall-item { position: relative; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(219,179,104,0.2); background: var(--color-surface); }
.paywall-item.featured { grid-column: span 2; aspect-ratio: 2/1; }
.paywall-item img, .paywall-video-item video { width: 100%; height: 100%; object-fit: cover; display: block; filter: blur(var(--blur-level, 20px)) brightness(0.4); transform: scale(1.1); transition: filter 0.6s ease, transform 0.6s ease; }
.paywall-item.unlocked img, .paywall-video-item.unlocked video { filter: none; transform: scale(1); }

.paywall-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(180deg, rgba(10,4,7,0.3) 0%, rgba(219,179,104,0.08) 50%, rgba(10,4,7,0.75) 100%);
    z-index: 2; transition: opacity 0.4s ease;
}
.paywall-item.unlocked .paywall-overlay, .paywall-video-item.unlocked .paywall-overlay { opacity: 0; pointer-events: none; }
.paywall-overlay i, .paywall-overlay svg { width: 30px; height: 30px; color: var(--color-gold); filter: drop-shadow(0 0 12px var(--color-gold-glow)); animation: lockPulse 2s ease-in-out infinite; }
@keyframes lockPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); filter: drop-shadow(0 0 22px var(--color-gold-glow)); } }
.paywall-overlay span { font-size: 13px; font-weight: 700; color: var(--color-gold); text-transform: uppercase; letter-spacing: 2.5px; text-shadow: 0 0 14px var(--color-gold-glow); }

/* Media caption (optional description below images/videos) */
.media-caption {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    padding: 8px 12px; font-size: 12px; color: rgba(255,255,255,0.9);
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    text-align: center; line-height: 1.4; pointer-events: none;
}

/* Premium Video CTA Button */
.premium-video-cta { margin-bottom: 24px; }
.premium-video-btn {
    display: flex; align-items: center; gap: 16px; padding: 20px 24px;
    border-radius: var(--r-lg); text-decoration: none; transition: var(--ease);
}
.premium-video-btn.unlocked {
    background: linear-gradient(135deg, rgba(219,179,104,0.1) 0%, rgba(155,100,20,0.15) 100%);
    border: 1px solid rgba(219,179,104,0.3); color: var(--color-text); cursor: pointer;
}
.premium-video-btn.unlocked:hover {
    background: linear-gradient(135deg, rgba(219,179,104,0.18) 0%, rgba(155,100,20,0.22) 100%);
    border-color: rgba(219,179,104,0.5); transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(219,179,104,0.2);
}
.premium-video-btn.unlocked > i:first-child,
.premium-video-btn.unlocked > svg:first-child { width: 36px; height: 36px; color: var(--color-gold); flex-shrink: 0; }
.premium-video-btn.unlocked > i:last-child,
.premium-video-btn.unlocked > svg:last-child { width: 20px; height: 20px; color: var(--color-gold); margin-left: auto; flex-shrink: 0; }
.premium-video-btn.locked {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08); color: var(--color-text-muted);
}
.premium-video-btn.locked > i:first-child,
.premium-video-btn.locked > svg:first-child { width: 32px; height: 32px; opacity: 0.4; flex-shrink: 0; }
.premium-video-btn-text { display: flex; flex-direction: column; gap: 2px; }
.premium-video-btn-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.premium-video-btn-sub { font-size: 12px; color: var(--color-text-muted); }

.paywall-cta {
    text-align: center; padding: 32px 24px;
    background: linear-gradient(135deg, rgba(219,179,104,0.04) 0%, rgba(155,100,20,0.06) 100%);
    border: 1px solid rgba(219,179,104,0.15); border-radius: var(--r-lg);
}
.paywall-donate-btn {
    display: inline-flex; align-items: center; gap: 12px; padding: 18px 32px;
    background: var(--grad-gold); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 16px; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: var(--ease);
    box-shadow: 0 6px 28px var(--color-gold-glow); animation: btnPulseGold 3s ease-in-out infinite; margin-bottom: 18px;
}
@keyframes btnPulseGold { 0%, 100% { box-shadow: 0 6px 28px var(--color-gold-glow); } 50% { box-shadow: 0 8px 40px rgba(219,179,104,0.45), 0 0 70px rgba(219,179,104,0.12); } }
.paywall-donate-btn:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 10px 48px rgba(219,179,104,0.5); animation: none; }
.paywall-donate-btn i, .paywall-donate-btn svg { width: 20px; height: 20px; animation: heartBeat 1.5s ease-in-out infinite; }
.paywall-note { font-size: 13px; color: var(--color-text-muted); margin-bottom: 14px; }
.paywall-unlock-form { display: flex; gap: 10px; max-width: 340px; margin: 0 auto; }
.paywall-unlock-form input { flex: 1; padding: 14px 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-md); color: var(--color-text); font-family: var(--font-body); font-size: 14px; outline: none; transition: var(--ease); text-align: center; letter-spacing: 1px; }
.paywall-unlock-form input:focus { border-color: var(--color-gold); box-shadow: 0 0 18px rgba(219,179,104,0.15); }
.paywall-unlock-form input::placeholder { color: var(--color-text-dim); letter-spacing: 0; }
.paywall-unlock-btn { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: var(--grad-gold); border: none; border-radius: var(--r-md); color: white; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--ease); white-space: nowrap; }
.paywall-unlock-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--color-gold-glow); }
.paywall-unlock-btn i, .paywall-unlock-btn svg { width: 15px; height: 15px; }
.paywall-error { font-size: 13px; color: #ff4444; margin-top: 12px; }
.paywall-success-msg { font-size: 14px; color: var(--color-gold); font-weight: 500; margin-top: 12px; animation: fadeInUp 0.4s ease-out; }
.paywall-section.unlocked .paywall-cta { display: none; }
@media (max-width: 480px) { .paywall-unlock-form { flex-direction: column; } }

/* ============ COUNTDOWN ============ */
.countdown-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.5s both; text-align: center; }
.countdown-subtitle { font-size: 14px; color: var(--color-text-muted); font-style: italic; margin-bottom: 22px; }
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 18px; }
.countdown-unit {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
    min-width: 68px; padding: 16px 12px;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); backdrop-filter: blur(8px);
}
.countdown-number { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--color-text); text-shadow: 0 0 18px var(--color-accent-glow); line-height: 1; }
.countdown-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-dim); }
.countdown-sep { font-family: var(--font-display); font-size: 26px; color: var(--color-accent); animation: sepPulse 1s ease-in-out infinite; margin-top: -18px; }
@keyframes sepPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.countdown-event { font-size: 13px; color: var(--color-accent-soft); font-style: italic; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.55s both; }
.testimonials-carousel { position: relative; min-height: 190px; overflow: hidden; }
.testimonial-card {
    position: absolute; top: 0; left: 0; right: 0; opacity: 0; transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 30px 28px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); text-align: center; pointer-events: none;
}
.testimonial-card.active { opacity: 1; transform: translateX(0); pointer-events: auto; position: relative; }
.testimonial-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 16px; }
.testimonial-stars i, .testimonial-stars svg { width: 18px; height: 18px; color: var(--color-gold); fill: var(--color-gold); filter: drop-shadow(0 0 5px var(--color-gold-glow)); }
.testimonial-text { font-size: 15px; line-height: 1.8; color: var(--color-text-muted); font-style: italic; margin-bottom: 14px; max-width: 460px; margin-left: auto; margin-right: auto; }
.testimonial-author { font-size: 13px; color: var(--color-text-dim); font-weight: 500; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.testimonial-dots .dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--color-border); background: transparent; cursor: pointer; transition: var(--ease); padding: 0; }
.testimonial-dots .dot.active { background: var(--color-accent); border-color: var(--color-accent); box-shadow: 0 0 10px var(--color-accent-glow); }
.testimonial-dots .dot:hover { border-color: var(--color-accent); }

/* ============ NEWSLETTER ============ */
.newsletter-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.6s both; text-align: center; }
.newsletter-subtitle { font-size: 14px; color: var(--color-text-muted); margin-bottom: 22px; font-style: italic; max-width: 420px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 440px; margin: 0 auto 14px; }
.newsletter-input-wrap {
    flex: 1; display: flex; align-items: center; gap: 12px;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); padding: 0 16px; transition: var(--ease);
}
.newsletter-input-wrap:focus-within { border-color: var(--color-accent); box-shadow: 0 0 22px rgba(230,22,63,0.1); }
.newsletter-input-wrap i, .newsletter-input-wrap svg { width: 18px; height: 18px; color: var(--color-text-dim); flex-shrink: 0; }
.newsletter-input-wrap input { flex: 1; background: transparent; border: none; outline: none; color: var(--color-text); font-family: var(--font-body); font-size: 14px; padding: 16px 0; }
.newsletter-input-wrap input::placeholder { color: var(--color-text-dim); }
.newsletter-btn {
    display: flex; align-items: center; gap: 8px; padding: 16px 22px;
    background: var(--grad-seductive); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--ease); white-space: nowrap; box-shadow: 0 4px 20px rgba(230,22,63,0.2);
}
.newsletter-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(230,22,63,0.35); }
.newsletter-btn i, .newsletter-btn svg { width: 15px; height: 15px; }
.newsletter-disclaimer { font-size: 11px; color: var(--color-text-dim); }
.newsletter-success { font-size: 14px; color: var(--color-accent-soft); font-weight: 500; margin-top: 10px; animation: fadeInUp 0.4s ease-out; }
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }

/* ============ WISHLIST ============ */
.wishlist-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.65s both; text-align: center; }
.wishlist-subtitle { font-size: 14px; color: var(--color-text-muted); margin-bottom: 22px; font-style: italic; }
.wishlist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.wishlist-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 20px 12px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); cursor: default; transition: var(--ease);
}
.wishlist-item:hover { border-color: var(--color-border-hover); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(230,22,63,0.1); }
.wishlist-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--color-accent-soft); }
.wishlist-icon i, .wishlist-icon svg { width: 24px; height: 24px; }
.wishlist-name { font-size: 12px; font-weight: 500; color: var(--color-text-muted); line-height: 1.4; }
.wishlist-price { font-size: 14px; font-weight: 700; color: var(--color-accent); font-family: var(--font-display); }
.wishlist-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
    background: var(--grad-seductive); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: var(--ease); box-shadow: 0 6px 28px rgba(230,22,63,0.2);
}
.wishlist-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(230,22,63,0.35); }
.wishlist-btn i, .wishlist-btn svg { width: 18px; height: 18px; }
@media (max-width: 480px) { .wishlist-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ OUTFIT DONATION ============ */
.outfit-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.7s both; text-align: center; }
.outfit-subtitle { font-size: 14px; color: var(--color-text-muted); font-style: italic; max-width: 460px; margin: 0 auto 22px; line-height: 1.7; }
.outfit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.outfit-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 22px 12px 18px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); cursor: pointer; transition: var(--ease);
}
.outfit-card:hover { border-color: var(--color-border-hover); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(230,22,63,0.12); }
.outfit-card.selected { border-color: var(--color-accent); background: var(--color-surface-hover); box-shadow: 0 0 24px rgba(230,22,63,0.15); }
.outfit-img-wrap { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(230,22,63,0.08); border-radius: 50%; color: var(--color-accent-soft); }
.outfit-img-wrap i, .outfit-img-wrap svg { width: 22px; height: 22px; }
.outfit-name { font-size: 13px; font-weight: 600; color: var(--color-text-muted); }
.outfit-price { font-size: 15px; font-weight: 700; color: var(--color-accent); font-family: var(--font-display); }
.outfit-delivery { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dim); }

.outfit-how-it-works {
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); padding: 24px; margin-bottom: 24px;
}
.outfit-how-it-works h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--color-text-muted); text-align: center; margin-bottom: 18px; }
.outfit-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.outfit-step { display: flex; align-items: flex-start; gap: 12px; text-align: left; }
.outfit-step-num { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: var(--grad-seductive); border-radius: 50%; font-size: 13px; font-weight: 700; color: white; }
.outfit-step span { font-size: 12px; color: var(--color-text-dim); line-height: 1.5; }

.outfit-donate-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
    background: var(--grad-seductive); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: var(--ease); box-shadow: 0 6px 28px rgba(230,22,63,0.2);
}
.outfit-donate-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(230,22,63,0.35); }
.outfit-donate-btn i, .outfit-donate-btn svg { width: 18px; height: 18px; }
@media (max-width: 480px) { .outfit-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ PANTIES SHOP ============ */
.panties-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.75s both; text-align: center; }
.panties-subtitle { font-size: 14px; color: var(--color-text-muted); font-style: italic; max-width: 460px; margin: 0 auto 22px; line-height: 1.7; }
.panties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.panties-card {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 20px 12px 16px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); transition: var(--ease);
}
.panties-card:hover { border-color: var(--color-border-hover); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(230,22,63,0.1); }
.panties-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--color-accent-soft); margin-bottom: 2px; }
.panties-icon i, .panties-icon svg { width: 22px; height: 22px; }
.panties-type { font-size: 13px; font-weight: 600; color: var(--color-text-muted); }
.panties-desc { font-size: 11px; color: var(--color-text-dim); font-style: italic; line-height: 1.4; }
.panties-price { font-size: 15px; font-weight: 700; color: var(--color-accent); font-family: var(--font-display); margin-top: 2px; }

.panties-info { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 22px; }
.panties-info-item { display: flex; align-items: center; gap: 7px; padding: 8px 14px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-sm); font-size: 12px; color: var(--color-text-muted); }
.panties-info-item i, .panties-info-item svg { width: 14px; height: 14px; color: var(--color-accent-soft); flex-shrink: 0; }

.panties-order-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
    background: var(--grad-seductive); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: var(--ease); box-shadow: 0 6px 28px rgba(230,22,63,0.2);
}
.panties-order-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(230,22,63,0.35); }
.panties-order-btn i, .panties-order-btn svg { width: 18px; height: 18px; }
@media (max-width: 480px) { .panties-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ CONTACT FORM ============ */
.contact-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.8s both; }
.contact-subtitle { text-align: center; font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; font-style: italic; }
.contact-form { max-width: 500px; margin: 0 auto; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .contact-row { grid-template-columns: 1fr; } }
.contact-field { margin-bottom: 16px; }
.contact-field label { display: block; font-size: 13px; font-weight: 500; color: var(--color-text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-field input, .contact-field textarea, .contact-field select {
    width: 100%; padding: 14px 16px; background: var(--color-surface);
    border: 1px solid var(--color-border); border-radius: var(--r-md);
    color: var(--color-text); font-family: var(--font-body); font-size: 14px;
    outline: none; transition: var(--ease); line-height: 1.5;
}
.contact-field input:focus, .contact-field textarea:focus, .contact-field select:focus { border-color: var(--color-accent); box-shadow: 0 0 20px rgba(230,22,63,0.1); }
.contact-field input::placeholder, .contact-field textarea::placeholder { color: var(--color-text-dim); }
.contact-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23d4aebb' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e"); background-position: right 14px center; background-repeat: no-repeat; background-size: 18px; }
.contact-field select option { background: #1a0a10; color: var(--color-text); }
.contact-field textarea { resize: vertical; min-height: 120px; }
.contact-submit {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 18px 28px;
    background: var(--grad-seductive); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 16px; font-weight: 600;
    cursor: pointer; transition: var(--ease); box-shadow: 0 6px 28px rgba(230,22,63,0.2);
}
.contact-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(230,22,63,0.35); }
.contact-submit i, .contact-submit svg { width: 18px; height: 18px; }
.contact-success { font-size: 14px; color: var(--color-accent-soft); font-weight: 500; text-align: center; margin-top: 14px; }
.contact-error { font-size: 13px; color: #ff4444; text-align: center; margin-top: 14px; }

/* ============ FAQ ============ */
.faq-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.85s both; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-md); overflow: hidden; transition: var(--ease); }
.faq-item:hover { border-color: var(--color-border-hover); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 18px 20px; background: var(--color-surface); border: none;
    cursor: pointer; color: var(--color-text-muted); font-family: var(--font-body);
    font-size: 14px; font-weight: 500; text-align: left; transition: var(--ease);
}
.faq-question:hover { color: var(--color-text); }
.faq-question i, .faq-question svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--color-text-dim); }
.faq-item.open .faq-question i, .faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--color-accent); }
.faq-item.open .faq-question { color: var(--color-text); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p { padding: 0 20px 18px; font-size: 14px; line-height: 1.8; color: var(--color-text-muted); }

/* ============ AGE NOTICE ============ */
.notice-section { margin-bottom: 28px; }
.notice-text { text-align: center; font-size: 12px; color: var(--color-text-dim); font-style: italic; line-height: 1.7; }

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 900;
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: var(--grad-seductive); border: none; border-radius: 50%;
    color: white; cursor: pointer; transition: var(--ease);
    box-shadow: 0 6px 24px rgba(230,22,63,0.25);
}
.back-to-top:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 36px rgba(230,22,63,0.4); }
.back-to-top i, .back-to-top svg { width: 22px; height: 22px; }

/* ============ FOOTER ============ */
.footer { text-align: center; padding-top: 28px; border-top: 1px solid var(--color-border); animation: fadeInUp 0.8s ease-out 1s both; }
.footer p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 10px; }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 14px; }
.footer-links a { font-size: 13px; color: var(--color-text-muted); text-decoration: none; transition: var(--ease); }
.footer-links a:hover { color: var(--color-accent); }
.footer-sep { color: var(--color-text-dim); font-size: 13px; }

/* Language Switcher — horizontal pill bar */
.lang-switcher {
    display: flex; flex-direction: row; flex-wrap: wrap;
    align-items: center; justify-content: center; gap: 0;
    margin: 18px auto 0; width: fit-content; max-width: 100%;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
    overflow: hidden; background: rgba(255,255,255,0.03);
}
.lang-label { display: none; }
.lang-btn {
    display: flex; flex-direction: row; align-items: center; gap: 7px;
    padding: 10px 18px; font-size: 14px; color: var(--color-text-muted);
    text-decoration: none; transition: var(--ease); font-weight: 500;
    border: none; border-right: 1px solid rgba(255,255,255,0.08);
    background: transparent; white-space: nowrap; font-family: var(--font-body); line-height: 1;
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover { color: var(--color-text); background: rgba(255,255,255,0.06); }
.lang-btn.active { color: white; background: rgba(230,22,63,0.2); font-weight: 600; }
.lang-flag { width: 20px; height: 15px; vertical-align: middle; border-radius: 2px; object-fit: cover; }

/* ============ AGE MODAL ============ */
.age-modal {
    position: fixed; inset: 0; z-index: 9999; display: flex;
    align-items: center; justify-content: center;
    background: rgba(10, 4, 7, 0.97); backdrop-filter: blur(20px);
    transition: opacity 0.4s ease;
}
.age-modal.hidden { opacity: 0; pointer-events: none; }
.age-modal-content { text-align: center; max-width: 440px; padding: 44px 32px; }
.age-modal-icon { margin-bottom: 20px; }
.age-modal-icon i, .age-modal-icon svg { width: 56px; height: 56px; color: var(--color-accent); filter: drop-shadow(0 0 20px var(--color-accent-glow)); }
.age-modal-content h2 { font-family: var(--font-display); font-size: 26px; color: var(--color-text); margin-bottom: 14px; font-weight: 600; }
.age-modal-content p { font-size: 15px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 28px; }
.age-modal-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-verify {
    padding: 16px 36px; background: var(--grad-seductive); color: white;
    border: none; border-radius: var(--r-md); font-size: 16px; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 28px rgba(230,22,63,0.3);
}
.btn-verify:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(230,22,63,0.45); }
.btn-leave {
    padding: 16px 32px; color: var(--color-text-dim); text-decoration: none;
    font-size: 15px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-md);
    transition: color 0.2s, border-color 0.2s; display: inline-flex; align-items: center;
}
.btn-leave:hover { color: var(--color-text); border-color: rgba(255,255,255,0.3); }

/* ============ GDPR BANNER ============ */
.gdpr-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
    background: rgba(18, 8, 16, 0.98); border-top: 1px solid var(--color-border);
    padding: 20px 28px; backdrop-filter: blur(16px);
    animation: gdprSlideUp 0.3s ease-out;
}
@keyframes gdprSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.gdpr-content { max-width: 920px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.gdpr-text { flex: 1; font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
.gdpr-text h3 { color: var(--color-text); font-size: 15px; margin-bottom: 5px; font-weight: 600; }
.gdpr-text p { margin: 0; }
.gdpr-text a { color: var(--color-accent-soft); text-decoration: underline; }
.gdpr-buttons { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.gdpr-btn { padding: 12px 22px; border: none; border-radius: var(--r-md); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.gdpr-accept { background: var(--color-accent); color: white; }
.gdpr-accept:hover { background: #c4003a; }
.gdpr-essential { background: transparent; color: var(--color-text-muted); border: 1px solid rgba(255,255,255,0.15); }
.gdpr-essential:hover { color: var(--color-text); border-color: rgba(255,255,255,0.3); }
.gdpr-manage { background: transparent; color: var(--color-text-dim); border: 1px solid transparent; }
.gdpr-manage:hover { color: var(--color-text-muted); }
.gdpr-preferences { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--color-border); }
.gdpr-option { margin-bottom: 10px; }
.gdpr-option label { display: flex; align-items: center; gap: 10px; color: var(--color-text-muted); font-size: 14px; cursor: pointer; }
.gdpr-option input[type="checkbox"] { width: auto; accent-color: var(--color-accent); }
.gdpr-save { margin-top: 10px; }
@media (max-width: 480px) { .gdpr-buttons { flex-direction: column; } .gdpr-btn { width: 100%; text-align: center; } }

/* ============ Q&A / AMA ============ */
.qa-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.qa-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.qa-item {
    padding: 20px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); transition: var(--ease);
}
.qa-item.qa-pinned { border-left: 3px solid var(--color-accent); }
.qa-question {
    display: flex; align-items: start; gap: 10px; font-size: 14px; font-weight: 600;
    color: var(--color-text); margin-bottom: 10px; line-height: 1.5;
}
.qa-question i, .qa-question svg { width: 18px; height: 18px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.qa-answer {
    display: flex; align-items: start; gap: 10px; font-size: 13px;
    color: var(--color-text-muted); line-height: 1.7; padding-left: 28px;
}
.qa-answer i, .qa-answer svg { width: 16px; height: 16px; color: var(--color-accent-soft); flex-shrink: 0; margin-top: 3px; }
.qa-meta { font-size: 11px; color: var(--color-text-dim); margin-top: 8px; padding-left: 28px; }
.qa-submit-form {
    padding: 20px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); text-align: center;
}
.qa-submit-title { font-family: var(--font-display); font-size: 16px; color: var(--color-text); margin-bottom: 14px; }
.qa-form { display: flex; flex-direction: column; gap: 10px; }
.qa-input, .qa-textarea {
    width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border); border-radius: var(--r-md);
    color: var(--color-text); font-family: var(--font-body); font-size: 14px;
    outline: none; transition: var(--ease);
}
.qa-input:focus, .qa-textarea:focus { border-color: var(--color-accent); box-shadow: 0 0 18px rgba(230,22,63,0.1); }
.qa-submit-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; background: var(--grad-seductive); border: none; border-radius: var(--r-md);
    color: white; font-family: var(--font-body); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--ease); align-self: center;
}
.qa-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,22,63,0.3); }
.qa-submit-btn i, .qa-submit-btn svg { width: 16px; height: 16px; }

/* ============ POLLS / VOTING ============ */
.poll-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.poll-card {
    padding: 28px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); text-align: center;
}
.poll-question { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--color-text); margin-bottom: 20px; line-height: 1.4; }
.poll-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.poll-option {
    position: relative; display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; background: rgba(255,255,255,0.03); border: 1px solid var(--color-border);
    border-radius: var(--r-md); cursor: pointer; overflow: hidden; transition: var(--ease);
    color: var(--color-text); font-family: var(--font-body); font-size: 14px; text-align: left;
}
.poll-option:hover { border-color: var(--color-accent); background: rgba(230,22,63,0.04); }
.poll-option-label { position: relative; z-index: 1; font-weight: 500; }
.poll-option-bar {
    position: absolute; left: 0; top: 0; height: 100%;
    background: linear-gradient(90deg, rgba(230,22,63,0.15), rgba(230,22,63,0.05));
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1); border-radius: var(--r-md);
}
.poll-option-pct { position: relative; z-index: 1; font-size: 13px; font-weight: 700; color: var(--color-accent); }
.poll-meta { font-size: 12px; color: var(--color-text-dim); }

/* ============ CONTENT SCHEDULE ============ */
.schedule-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.schedule-grid { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.schedule-day {
    flex: 0 0 90px; display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 16px 10px; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); text-align: center; transition: var(--ease);
}
.schedule-day.schedule-today { border-color: var(--color-accent); background: rgba(230,22,63,0.06); box-shadow: 0 0 20px rgba(230,22,63,0.1); }
.schedule-day-name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-dim); }
.schedule-day.schedule-today .schedule-day-name { color: var(--color-accent); }
.schedule-icon { width: 22px; height: 22px; color: var(--color-accent-soft); }
.schedule-title { font-size: 11px; font-weight: 500; color: var(--color-text-muted); line-height: 1.3; }
.schedule-platform { font-size: 9px; color: var(--color-text-dim); margin-top: 2px; }

/* ============ AUDIO / ASMR ============ */
.audio-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.audio-list { display: flex; flex-direction: column; gap: 10px; }
.audio-item {
    display: flex; align-items: center; gap: 14px; padding: 14px 18px;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-md); transition: var(--ease);
}
.audio-item.audio-premium { border-color: rgba(219,179,104,0.2); }
.audio-player { flex: 0 0 200px; height: 36px; border-radius: 18px; }
.audio-locked {
    flex: 0 0 200px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: rgba(219,179,104,0.08); border: 1px solid rgba(219,179,104,0.2); border-radius: 18px;
}
.audio-locked i, .audio-locked svg { width: 16px; height: 16px; color: var(--color-gold); }
.audio-info { flex: 1; }
.audio-title { font-size: 14px; font-weight: 500; color: var(--color-text); display: flex; align-items: center; gap: 6px; }
.audio-duration { font-size: 12px; color: var(--color-text-dim); display: block; margin-top: 2px; }

/* ============ STORIES ============ */
.stories-section { margin-bottom: 24px; }
.stories-row { display: flex; gap: 12px; overflow-x: auto; padding: 8px 0; -webkit-overflow-scrolling: touch; }
.story-bubble {
    flex: 0 0 72px; width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
    border: 3px solid var(--color-accent); padding: 2px; cursor: pointer; transition: var(--ease);
    background: var(--color-bg);
}
.story-bubble:hover { transform: scale(1.08); box-shadow: 0 0 20px var(--color-accent-glow); }
.story-media { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* ============ MERCH / SHOP ============ */
.merch-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.3s both; }
.merch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.merch-card {
    display: flex; flex-direction: column; text-decoration: none;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); overflow: hidden; transition: var(--ease);
}
.merch-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); border-color: var(--color-accent); }
.merch-image { aspect-ratio: 1; overflow: hidden; }
.merch-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.merch-card:hover .merch-image img { transform: scale(1.06); }
.merch-info { padding: 14px; text-align: center; }
.merch-name { font-size: 14px; font-weight: 600; color: var(--color-text); display: block; margin-bottom: 4px; }
.merch-price { font-size: 15px; font-weight: 700; color: var(--color-accent); }

/* ============ EROTIC STORIES PREVIEW ============ */
.estories-section { margin-bottom: 44px; animation: fadeInUp 0.8s ease-out 0.3s both; text-align: center; }
.estories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 18px; }
.estory-card {
    display: flex; flex-direction: column; text-decoration: none;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--r-lg); overflow: hidden; transition: all 0.3s ease; position: relative;
}
.estory-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(230,22,63,0.15); border-color: var(--color-accent); }
.estory-cover { aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(145deg, rgba(230,22,63,0.08), rgba(18,8,16,0.9)); position: relative; }
.estory-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.estory-card:hover .estory-cover img { transform: scale(1.06); }
.estory-premium { position: absolute; top: 8px; right: 8px; padding: 3px 8px; background: rgba(219,179,104,0.9); border-radius: 10px; font-size: 10px; }
.estory-info { padding: 12px; text-align: left; }
.estory-title { font-size: 13px; font-weight: 700; color: var(--color-text); display: block; margin-bottom: 4px; line-height: 1.3; }
.estory-teaser { font-size: 11px; color: var(--color-text-dim); display: block; margin-bottom: 6px; line-height: 1.4; }
.estory-meta { font-size: 10px; color: var(--color-text-dim); }
.estories-more-btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
    color: var(--color-accent); border: 1px solid var(--color-accent); border-radius: var(--r-full);
    text-decoration: none; font-size: 13px; font-weight: 600; transition: var(--ease);
}
.estories-more-btn:hover { background: rgba(230,22,63,0.08); }
.estories-more-btn i, .estories-more-btn svg { width: 16px; height: 16px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 480px) {
    .container { padding: 28px 18px 52px; }
    .name { font-size: 44px; }
    .tagline { font-size: 13px; letter-spacing: 3px; }
    .stats { gap: 18px; padding: 20px; }
    .stat-number { font-size: 26px; }
    .link-card-inner { padding: 18px 20px; }
    .link-platform { font-size: 17px; }
    .social-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .social-link { padding: 16px 10px; }
    .age-modal-content { padding: 40px 26px; }
}

@media (max-width: 360px) {
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.featured { grid-column: span 1; aspect-ratio: 16/9; }
}

/* ============ GAMES SECTION ============ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.game-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: rgba(18, 8, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease, border-color 0.3s;
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220, 20, 60, 0.4);
    box-shadow: 0 16px 48px rgba(220, 20, 60, 0.15), 0 4px 16px rgba(0,0,0,0.4);
}
.game-card a { text-decoration: none; color: inherit; display: block; }
.game-poster {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex; align-items: center; justify-content: center;
}
.game-poster img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), filter 0.3s;
}
.game-card:hover .game-poster img { transform: scale(1.06); }
.game-poster .poster-placeholder {
    font-size: 52px; opacity: 0.4;
}
.game-poster .play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.35s ease;
}
.game-card:hover .play-overlay { opacity: 1; }
.game-poster .play-btn {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(220, 20, 60, 0.9);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #fff;
    box-shadow: 0 4px 24px rgba(220, 20, 60, 0.5);
    transform: scale(0.85); transition: transform 0.3s;
}
.game-card:hover .play-btn { transform: scale(1); }
.game-poster .lock-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.game-poster .lock-overlay span:first-child { font-size: 30px; }
.game-poster .lock-overlay span:last-child { font-size: 11px; color: #ccc; font-weight: 500; }
.game-meta {
    padding: 14px 16px 16px;
}
.game-meta h3 {
    font-size: 15px; font-weight: 700; color: var(--color-text);
    margin: 0 0 5px; line-height: 1.3;
}
.game-meta p {
    font-size: 12px; color: var(--color-muted); line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.game-badge {
    display: inline-block; padding: 3px 10px; border-radius: var(--r-full);
    font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.game-badge-free { background: rgba(0, 200, 100, 0.1); color: #00c864; }
.game-badge-premium { background: rgba(220, 20, 60, 0.1); color: var(--color-accent); }
.games-more {
    text-align: center; margin-top: 20px;
}
.games-more a {
    color: var(--color-accent); font-size: 13px; font-weight: 600;
    text-decoration: none; transition: color 0.2s;
}
.games-more a:hover { color: #ff4070; }

@media (max-width: 600px) {
    .games-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
