/* style.css - FINAL version with all corrections and features */

/* ==========================================================================
   1. Root Variables & Global Styles
   ========================================================================== */
:root {
    --color-primary-magenta: #C2185B;
    --color-primary-dark: #212121;
    --color-secondary-grey: #757575;
    --color-background-light: #f4f4f4;
    --color-white: #ffffff;
    --color-border: #e0e0e0;
    --color-accent-gold: #FFC107;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background-light);
    color: var(--color-primary-dark);
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

a {
    color: var(--color-primary-magenta);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-heading {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-primary-magenta);
    display: inline-block;
    padding-bottom: 10px;
}

/* ==========================================================================
   2. Header & Footer Styles
   ========================================================================== */
.site-header-v2 {
    background-color: var(--color-white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.site-logo-v2 {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color-primary-dark);
    letter-spacing: -1px;
}
.site-logo-v2:hover {
    color: var(--color-primary-magenta);
}

.main-navigation a {
    margin: 0 15px;
    font-weight: 500;
    color: var(--color-secondary-grey);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
.main-navigation a:hover {
    color: var(--color-primary-magenta);
    border-bottom-color: var(--color-primary-magenta);
}

.site-footer-v2 {
    background-color: var(--color-primary-dark);
    color: var(--color-secondary-grey);
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9em;
}

.site-footer-v2 p {
    margin: 5px 0;
}

.site-footer-v2 a {
    color: var(--color-white);
}

.site-footer-v2 a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   3. Homepage Fan Hub Styles
   ========================================================================== */
.fan-hub-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center 30%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.header-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.fan-hub-header h1 {
    font-size: 3.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.fan-hub-header .hero-subtitle {
    font-size: 1.5em;
    margin: 10px 0 30px;
    font-weight: 300;
}

.cta-button {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.quick-action-buttons .cta-button {
    margin: 0 10px;
}

.cta-button.primary {
    background-color: var(--color-primary-magenta);
    color: var(--color-white);
    border-color: var(--color-primary-magenta);
}

.cta-button.primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-white);
    color: var(--color-white);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.cta-button.secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.cta-button.outline {
    background-color: transparent;
    border-color: var(--color-primary-magenta);
    color: var(--color-primary-magenta);
}

.cta-button.outline:hover {
    background-color: var(--color-primary-magenta);
    color: var(--color-white);
}

.header-disclaimer {
    margin-top: 25px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

.hub-content-section {
    background-color: var(--color-white);
    padding: 40px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.bio-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
}

.photo-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.h1-subtext {
    display: block;
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* ==========================================================================
   4. Blog Section Styles
   ========================================================================== */
.page-heading-v2 h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.blog-highlights {
    text-align: center;
}

.blog-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.blog-summary-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 20px;
    border-radius: 8px;
}

.blog-card-text h4 {
    margin-top: 0;
}

.blog-featured-post, .post-hero-image {
    position: relative;
    height: 50vh;
    min-height: 350px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.featured-post-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.featured-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
}

.featured-post-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.featured-post-content h1 {
    font-size: 3em;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.featured-post-content h1 a {
    color: var(--color-white);
}

.article-category {
    background-color: var(--color-primary-magenta);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}
.article-category:hover {
    color: var(--color-white);
    opacity: 0.9;
}

.article-excerpt {
    font-size: 1.1em;
    font-weight: 300;
}

.read-article-link.featured {
    color: var(--color-white);
    font-weight: bold;
    text-decoration: underline;
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.blog-grid-view {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-summary-card-v2 {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-summary-card-v2:hover .card-image-link img {
    transform: scale(1.05);
}

.card-image-link {
    display: block;
    overflow: hidden;
    line-height: 0;
}
.card-image-link img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-summary-card-v2 .blog-card-text {
    padding: 25px;
}
.blog-summary-card-v2 .article-category {
    font-size: 0.75em;
}
.blog-summary-card-v2 h4 {
    font-size: 1.5em;
    margin: 10px 0;
}
.blog-summary-card-v2 h4 a {
    color: var(--color-primary-dark);
}
.blog-summary-card-v2 p.article-excerpt {
    color: var(--color-secondary-grey);
    font-size: 1em;
}

.blog-sidebar .sidebar-widget {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.blog-sidebar .widget-title {
    font-size: 1.3em;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}
.blog-category-nav {
    display: flex;
    flex-direction: column;
}
.blog-category-nav a {
    color: var(--color-secondary-grey);
    padding: 10px;
    border-radius: 5px;
}
.blog-category-nav a:hover {
    background-color: var(--color-background-light);
    color: var(--color-primary-dark);
}
.blog-category-nav a.active {
    background-color: var(--color-primary-magenta);
    color: var(--color-white);
    font-weight: bold;
}

.content-wrapper-full-width {
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.article-meta {
    margin-top: 15px;
    font-size: 0.9em;
}
.article-body {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
    font-size: 1.1em;
}
.article-body h2, .article-body h3 {
    margin-top: 1.5em;
}
.article-body p {
    margin-bottom: 1.2em;
}
.article-sharing-widget a {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: var(--color-white);
    font-weight: bold;
}
.article-sharing-widget a.twitter { background-color: #1DA1F2; }
.article-sharing-widget a.facebook { background-color: #1877F2; }

/* ==========================================================================
   5. Profile Page Styles
   ========================================================================== */
.profile-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.profile-main-content .section-heading,
.profile-biography-section .section-heading,
.faq-section-new .section-heading {
    text-align: left;
    border-bottom: none;
    font-size: 1.8em;
    margin-bottom: 20px;
}
.live-stream-container, .profile-video-clips-section, .profile-biography-section, .profile-photo-gallery-section {
    margin-bottom: 40px;
}
.live-feed-highlight-box {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    border: 1px solid var(--color-border);
}
.live-feed-highlight-box iframe,
.live-feed-highlight-box div[id*="container"] {
    width: 100% !important;
    max-width: 100%;
}
.profile-sidebar {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    align-self: start;
}
.sidebar-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}
.sidebar-profile-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary-magenta);
}
.sidebar-header-text h1 {
    font-size: 1.8em;
    margin: 0;
}
.sidebar-header-text .profile-subtitle {
    font-size: 0.9em;
    color: var(--color-secondary-grey);
    margin: 0;
}
.profile-hero-button.sidebar-cta {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--color-primary-magenta);
    color: var(--color-white);
    padding: 15px;
    font-size: 1.2em;
    border-radius: 5px;
    margin: 20px 0;
    box-sizing: border-box;
}
.profile-hero-button.sidebar-cta:hover {
    opacity: 0.85;
}
.sidebar-widget {
    margin-bottom: 25px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}
.sidebar-widget:first-of-type {
    border-top: none;
    padding-top: 0;
}
.widget-title {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 15px;
}
.details-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.9em;
}
.details-grid-v2 strong {
    color: var(--color-primary-dark);
}
.details-grid-v2 span {
    color: var(--color-secondary-grey);
}
.tags-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tags-list-v2 li {
    background-color: var(--color-background-light);
    color: var(--color-secondary-grey);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
}
.content-panel {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    line-height: 1.8;
}

/* ==========================================================================
   6. Lightbox Styles
   ========================================================================== */
.lightbox-overlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none; /* This is the key line that hides it by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
    box-sizing: border-box;
}
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    cursor: default; 
}
.lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    border-radius: 5px;
}
.lightbox-close {
    position: absolute;
    top: -45px;
    right: -15px;
    font-size: 3em;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}
.lightbox-cta {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary-magenta);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    opacity: 0.9;
}
.lightbox-cta:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
    color: var(--color-white);
}

/* ==========================================================================
   7. Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .profile-layout-grid, .blog-layout-grid {
        grid-template-columns: 1fr;
    }
    .photo-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container-v2 {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    .main-navigation {
        margin: 15px 0;
        order: 2;
    }
    .header-cta-button {
        display: none;
    }
    .fan-hub-header h1 {
        font-size: 2.5em;
    }
    .fan-hub-header .hero-subtitle {
        font-size: 1.2em;
    }
    .quick-action-buttons {
        display: flex;
        flex-direction: column;
    }
    .quick-action-buttons .cta-button {
        margin: 10px 0;
        width: 80%;
        align-self: center;
    }
    .photo-showcase-grid {
        grid-template-columns: 1fr;
    }
}
@font-face {
  font-family: 'PT Icons';
  src: url('/assets/fonts/pt-icons.32d91.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* This is the key change */
}
/* ============================================= */
/* == CSS FOR ACTIVITY & BROADCAST FEATURES == */
/* ============================================= */

/* --- Sidebar Broadcast Info Widget --- */
/* Ensures the long "Activity" text wraps correctly in the grid */
.activity-summary-container {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid #eee;
}

/* --- Activity Chart Widget in Sidebar --- */
.chart-container {
    position: relative;
    height: 100px; /* Gives the chart a defined height */
    width: 100%;
}

.chart-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between legend items */
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
}

.legend-box {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 2px;
}

.legend-box.online {
    background-color: rgb(75, 192, 192); /* Matches the "Online" bar color in the chart */
}

.legend-box.offline {
    background-color: #e0e0e0; /* A neutral gray for the "Offline" state */
}

/* --- Favorites Button --- */
/* Provides a visual style for the favorite button */
.add-favorite-button {
    font-size: 1.5rem;
    color: #ccc; /* Default empty heart color */
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.add-favorite-button:hover {
    transform: scale(1.1);
}

.add-favorite-button.favorited {
    color: #ff4d4d; /* Red filled heart color */
}

/* ==========================================================================
   Video Profile Section Styles
   ========================================================================== */
.video-container-style {
    position: relative; /* This is the critical fix for the play button */
    border-radius: 8px;
    overflow: hidden;
    line-height: 0; /* Prevents extra space below the image */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-thumbnail-style {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.play-button-style {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 80px;
    opacity: 0.8;
    pointer-events: none; /* Allows the link to be clicked through the button */
    transition: opacity 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hover effects */
.video-container-style a:hover .video-thumbnail-style {
    transform: scale(1.05);
}

.video-container-style a:hover .play-button-style {
    opacity: 1;
}



/* --- UPDATED: Styles for Photo Gallery CTA Overlay (Static "Unlock 18+" design) --- */
.showcase-item {
    position: relative; /* This is crucial for positioning the overlay */
    display: block;     /* Ensures the link takes up the full space of the image */
    overflow: hidden;   /* Hides anything that might spill out */
    cursor: pointer;    /* Indicates it's clickable */
}

.showcase-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px); /* Apply blur directly to the image initially */
    transition: filter 0.3s ease-in-out; /* Keep transition for potential future use or consistency */
}

/* This is the new overlay container */
.age-gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5; /* Ensure it's above the blurred image but below the main CTA */
    background-color: rgba(0, 0, 0, 0.2); /* Slight dark tint over blur */
    transition: opacity 0.3s ease-in-out;
}

/* The circular unlock button */
.age-gate-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 150px; /* Adjust size as needed */
    height: 150px;
    background-color: rgba(40, 40, 40, 0.7); /* Darker semi-transparent background */
    backdrop-filter: blur(10px); /* Additional blur for the circle itself */
    border-radius: 50%;
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif; /* Or your preferred font */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Add transition for the press effect */
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, background-color 0.1s ease-out;
}

.age-gate-circle .lock-icon {
    font-size: 40px; /* Size of the lock icon */
    color: var(--color-primary-magenta, #ec4899); /* Pink color for the lock */
    margin-bottom: 5px;
    /* We'll use this for the default locked state */
    content: '🔒';
    transition: content 0.1s ease-out, opacity 0.1s ease-out; /* Smooth emoji change */
}

.age-gate-circle .unlock-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
    /* This text remains constant */
    transition: none; /* No transition needed as content doesn't change */
}

.age-gate-circle .free-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    /* This text remains constant */
    transition: none; /* No transition needed as content doesn't change */
}


/* --- Hover Effects for the "Press" and Emoji Change --- */

.showcase-item:hover .age-gate-circle {
    transform: scale(0.95); /* Shrink slightly for press effect */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); /* Less intense shadow */
    background-color: rgba(60, 60, 60, 0.8); /* Slightly darker on press */
}

/* Change the lock icon to an unlock icon on hover */
.showcase-item:hover .age-gate-circle .lock-icon {
    content: '🔓'; /* UNLOCK EMOJI */
    opacity: 1; /* Ensure it's visible */
    transform: scale(1.1); /* Make it pop slightly */
    color: var(--color-primary-magenta, #ec4899); /* Maintain pink color */
}

/* On hover, the image *remains* blurred, and the overlay *remains* visible */
.showcase-item:hover img {
    filter: blur(8px); /* Keep blurred */
}

.showcase-item:hover .age-gate-overlay {
    opacity: 1; /* Keep visible */
}
/* =========================================================
   LUNASYNNFANS.COM — DISTINCT FAN HUB DESIGN
   Scoped so legacy admin/blog components remain functional.
   ========================================================= */
:root {
    --ev-bg: #0d0b10;
    --ev-panel: #16121a;
    --ev-panel-2: #211a25;
    --ev-text: #f7f2f5;
    --ev-muted: #b9acb6;
    --ev-rose: #d95d86;
    --ev-rose-2: #f18daf;
    --ev-champagne: #d9bd8c;
    --ev-line: rgba(255,255,255,.10);
    --ev-white: #fff;
    --ev-shadow: 0 28px 70px rgba(0,0,0,.32);
}
body.lunasynn-site { margin:0; background:#f7f3f5; color:#241d23; font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; }
.lunasynn-site * { box-sizing:border-box; }
.ev-shell { width:min(1180px, calc(100% - 40px)); margin:0 auto; }
.ev-header { position:sticky; top:0; z-index:100; background:rgba(13,11,16,.94); backdrop-filter:blur(18px); border-bottom:1px solid var(--ev-line); }
.ev-header-inner { width:min(1240px,calc(100% - 32px)); margin:auto; min-height:78px; display:flex; align-items:center; gap:28px; }
.ev-brand { color:var(--ev-white); text-decoration:none; display:flex; align-items:center; gap:12px; margin-right:auto; }
.ev-brand-mark { width:44px; height:44px; display:grid; place-items:center; border:1px solid rgba(217,189,140,.55); border-radius:50%; font-family:Georgia,serif; font-weight:700; letter-spacing:-1px; color:var(--ev-champagne); }
.ev-brand-copy { display:flex; flex-direction:column; line-height:1; }
.ev-brand-copy strong { font:700 1.18rem/1 Georgia,serif; letter-spacing:.02em; }
.ev-brand-copy small { margin-top:5px; font-size:.62rem; letter-spacing:.22em; color:var(--ev-muted); }
.ev-nav { display:flex; align-items:center; gap:25px; }
.ev-nav a { color:#e9e0e6; text-decoration:none; font-size:.9rem; font-weight:650; }
.ev-nav a:hover { color:var(--ev-rose-2); }
.ev-header-live { text-decoration:none; color:#171018; background:linear-gradient(135deg,var(--ev-champagne),#f0d9ad); padding:12px 18px; border-radius:999px; font-size:.86rem; font-weight:800; white-space:nowrap; }
.ev-hero { background:radial-gradient(circle at 75% 25%,rgba(217,93,134,.19),transparent 31%),linear-gradient(145deg,#0d0b10 0%,#151018 52%,#0f0c12 100%); color:var(--ev-text); position:relative; overflow:hidden; }
.ev-hero:after { content:"LUNASYNN"; position:absolute; right:-25px; bottom:-45px; font:800 clamp(5rem,13vw,12rem)/.8 Georgia,serif; letter-spacing:-.06em; color:rgba(255,255,255,.025); pointer-events:none; }
.ev-hero-grid { min-height:690px; display:grid; grid-template-columns:minmax(0,1.05fr) minmax(360px,.75fr); align-items:center; gap:70px; padding:78px 0 72px; position:relative; z-index:2; }
.ev-eyebrow,.ev-kicker { display:inline-block; font-size:.72rem; letter-spacing:.2em; font-weight:800; color:var(--ev-champagne); text-transform:uppercase; }
.ev-hero h1 { max-width:720px; margin:18px 0 22px; font:700 clamp(3.1rem,6vw,6.4rem)/.94 Georgia,"Times New Roman",serif; letter-spacing:-.045em; }
.ev-hero-lead { max-width:700px; margin:0; color:#d2c6ce; font-size:1.12rem; line-height:1.78; }
.ev-live-line { display:flex; align-items:center; gap:10px; margin:28px 0 0; font-size:.91rem; color:#eadfe6; }
.ev-status-dot { width:10px; height:10px; border-radius:50%; background:#7f7580; box-shadow:0 0 0 6px rgba(127,117,128,.12); }
.ev-status-dot.is-online { background:#49d17f; box-shadow:0 0 0 6px rgba(73,209,127,.12); }
.ev-hero-actions { display:flex; flex-wrap:wrap; gap:13px; margin-top:30px; }
.ev-btn { display:inline-flex; min-height:52px; align-items:center; justify-content:center; padding:0 23px; border-radius:999px; font-weight:850; text-decoration:none; transition:transform .2s ease,box-shadow .2s ease; }
.ev-btn:hover { transform:translateY(-2px); }
.ev-btn-primary { color:#fff; background:linear-gradient(135deg,#c84270,var(--ev-rose)); box-shadow:0 15px 30px rgba(217,93,134,.22); }
.ev-btn-ghost { color:#f7f2f5; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.04); }
.ev-ad-note { font-size:.72rem; color:#887c85; margin-top:13px; }
.ev-portrait-card { position:relative; }
.ev-portrait-link,.ev-portrait-placeholder { min-height:540px; display:block; overflow:hidden; border-radius:220px 220px 24px 24px; border:1px solid rgba(217,189,140,.27); background:#211a25; box-shadow:var(--ev-shadow); position:relative; }
.ev-portrait-link:before { content:""; position:absolute; inset:14px; border:1px solid rgba(255,255,255,.16); border-radius:205px 205px 18px 18px; z-index:2; pointer-events:none; }
.ev-portrait-link img { width:100%; height:560px; object-fit:cover; display:block; transition:transform .45s ease; }
.ev-portrait-link:hover img { transform:scale(1.025); }
.ev-portrait-overlay { position:absolute; left:26px; right:26px; bottom:26px; padding:18px 20px; border-radius:14px; display:flex; flex-direction:column; background:rgba(13,11,16,.76); backdrop-filter:blur(12px); color:#fff; border:1px solid rgba(255,255,255,.12); }
.ev-portrait-overlay b { font:700 1.35rem Georgia,serif; }
.ev-portrait-overlay small { color:#cabdc6; margin-top:4px; }
.ev-portrait-placeholder { display:grid; place-content:center; text-align:center; padding:40px; }
.ev-portrait-placeholder span { font:700 7rem Georgia,serif; color:rgba(217,189,140,.5); }
.ev-portrait-placeholder strong { font:700 2rem Georgia,serif; }
.ev-portrait-placeholder small { margin-top:10px; color:var(--ev-muted); max-width:260px; }
.ev-quick-strip { background:#fff; border-bottom:1px solid #eadfe5; }
.ev-quick-grid { min-height:104px; display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); align-items:center; gap:1px; }
.ev-quick-grid>div { min-height:64px; padding:8px 24px; border-left:1px solid #eee3e9; display:flex; flex-direction:column; justify-content:center; }
.ev-quick-grid>div:first-child { border-left:0; }
.ev-quick-grid span { font-size:.68rem; text-transform:uppercase; letter-spacing:.15em; font-weight:800; color:#8d7c87; }
.ev-quick-grid strong { margin-top:7px; font-size:1rem; color:#261d24; overflow-wrap:anywhere; }
.ev-section { padding:92px 0; }
.ev-intro-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:80px; align-items:start; }
.ev-section h2 { margin:11px 0 0; font:700 clamp(2.2rem,4vw,4.2rem)/1.04 Georgia,serif; letter-spacing:-.035em; color:#241b22; }
.ev-prose { font-size:1.06rem; line-height:1.9; color:#5b4e57; }
.ev-prose p:first-child { margin-top:0; }
.ev-section-dark { background:var(--ev-bg); color:var(--ev-text); }
.ev-section-dark h2 { color:#fff; }
.ev-section-heading-row { display:flex; justify-content:space-between; gap:30px; align-items:end; margin-bottom:34px; }
.ev-section-heading-row>a { color:#7b455e; font-weight:800; text-decoration:none; }
.ev-feature-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--ev-line); border-left:1px solid var(--ev-line); }
.ev-feature-card { min-height:310px; padding:38px; color:#fff; text-decoration:none; border-right:1px solid var(--ev-line); border-bottom:1px solid var(--ev-line); transition:background .2s ease; }
.ev-feature-card:hover { background:#19141c; }
.ev-feature-card>span { color:var(--ev-champagne); font:700 1rem Georgia,serif; }
.ev-feature-card h3 { font:700 1.8rem/1.1 Georgia,serif; margin:54px 0 14px; }
.ev-feature-card p { color:#b8acb5; line-height:1.7; }
.ev-feature-card b { display:block; margin-top:24px; color:var(--ev-rose-2); }
.ev-post-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.ev-post-card { background:#fff; border:1px solid #eadfe5; padding:30px; min-height:300px; box-shadow:0 16px 35px rgba(49,30,43,.05); }
.ev-post-card>span { font-size:.67rem; color:#9b7b8d; text-transform:uppercase; letter-spacing:.14em; font-weight:800; }
.ev-post-card h3 { margin:18px 0 15px; font:700 1.55rem/1.18 Georgia,serif; }
.ev-post-card h3 a { color:#291f26; text-decoration:none; }
.ev-post-card p { color:#665862; line-height:1.7; }
.ev-text-link { color:#b33d68; font-weight:850; text-decoration:none; }
.ev-final-cta { background:#eadfe5; padding:70px 0; }
.ev-final-cta-inner { display:flex; justify-content:space-between; gap:40px; align-items:center; }
.ev-final-cta h2 { font-size:clamp(2rem,4vw,3.6rem); max-width:760px; }
.ev-final-cta p { color:#6c5c66; }
.ev-footer { background:#0a080c; color:#a99ca5; border-top:1px solid rgba(255,255,255,.08); padding:54px 0 24px; }
.ev-footer-inner { width:min(1180px,calc(100% - 40px)); margin:auto; display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
.ev-footer-brand { font:700 1.6rem Georgia,serif; color:#fff; }
.ev-footer p { max-width:600px; line-height:1.7; }
.ev-footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:16px 22px; }
.ev-footer a { color:#d9ccd4; text-decoration:none; }
.ev-footer-bottom { width:min(1180px,calc(100% - 40px)); margin:35px auto 0; padding-top:22px; border-top:1px solid rgba(255,255,255,.08); font-size:.78rem; line-height:1.6; }

/* Profile page visual reset / LunaSynn identity */
body.lunasynn-site .content-wrapper { width:min(1180px,calc(100% - 34px)); max-width:none; }
.lunasynn-site .profile-layout-grid { gap:26px; align-items:start; }
.lunasynn-site .profile-main-content,.lunasynn-site .profile-sidebar,.lunasynn-site .content-panel,.lunasynn-site .sidebar-widget { border-radius:18px; }
.lunasynn-site .profile-main-content { overflow:hidden; }
.lunasynn-site .section-heading { border-left:0 !important; padding-left:0 !important; font:700 2rem/1.08 Georgia,serif !important; color:#251c23 !important; }
.lunasynn-site .live-stream-container { background:#fff; border:1px solid #e8dde4; border-radius:20px; padding:20px; box-shadow:0 18px 40px rgba(40,24,35,.06); }
.lunasynn-site .cam-preview-box { border-radius:16px; overflow:hidden; }
.lunasynn-site .profile-sidebar { background:#fff; border:1px solid #e8dde4; box-shadow:0 18px 40px rgba(40,24,35,.06); overflow:hidden; }
.lunasynn-site .profile-hero-button,.lunasynn-site .sidebar-cta { background:linear-gradient(135deg,#b83664,#df648c) !important; border-radius:999px !important; box-shadow:none !important; }
.lunasynn-site .notify-btn { border-radius:999px !important; }
.lunasynn-site .tags-list-v2 li { background:#f5edf1 !important; color:#6c314a !important; border-color:#ead8e1 !important; }
.lunasynn-site .profile-biography-section,.lunasynn-site .profile-faq-section,.lunasynn-site .profile-photo-gallery-section,.lunasynn-site .profile-video-section { margin-top:34px; }

@media (max-width: 940px) {
    .ev-nav { display:none; }
    .ev-hero-grid { grid-template-columns:1fr; gap:42px; min-height:auto; }
    .ev-portrait-card { max-width:560px; width:100%; }
    .ev-intro-grid { grid-template-columns:1fr; gap:28px; }
    .ev-feature-grid,.ev-post-grid { grid-template-columns:1fr; }
    .ev-feature-card { min-height:240px; }
    .ev-final-cta-inner,.ev-footer-inner { grid-template-columns:1fr; display:grid; }
    .ev-footer-links { justify-content:flex-start; }
}
@media (max-width: 620px) {
    .ev-shell { width:min(100% - 26px,1180px); }
    .ev-header-inner { width:calc(100% - 22px); min-height:68px; }
    .ev-brand-copy small { display:none; }
    .ev-header-live { padding:10px 12px; font-size:.76rem; }
    .ev-hero-grid { padding:56px 0 50px; }
    .ev-hero h1 { font-size:clamp(2.8rem,15vw,4.4rem); }
    .ev-hero-lead { font-size:1rem; }
    .ev-hero-actions { flex-direction:column; }
    .ev-btn { width:100%; }
    .ev-portrait-link,.ev-portrait-placeholder { min-height:430px; border-radius:150px 150px 20px 20px; }
    .ev-portrait-link img { height:450px; }
    .ev-quick-grid { grid-template-columns:1fr 1fr; padding:14px 0; }
    .ev-quick-grid>div { border-left:0; border-bottom:1px solid #eee3e9; padding:12px 10px; }
    .ev-section { padding:66px 0; }
    .ev-section-heading-row { align-items:flex-start; flex-direction:column; }
    .ev-feature-card { padding:28px; }
    .ev-feature-card h3 { margin-top:38px; }
    .ev-final-cta { padding:56px 0; }
}
.ev-profile-intro {
    margin: 34px 0 24px;
    padding: 36px 40px;
    border-radius: 22px;
    background: linear-gradient(135deg,#171219,#261a22);
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    overflow: hidden;
    position: relative;
}
.ev-profile-intro:after {
    content: "LS";
    position: absolute;
    right: 24px;
    top: -24px;
    font: 700 8rem Georgia,serif;
    color: rgba(255,255,255,.035);
    pointer-events: none;
}
.ev-profile-intro > div { max-width: 780px; position: relative; z-index: 1; }
.ev-profile-intro h1 { margin: 10px 0 14px; font: 700 clamp(2.4rem,5vw,4.8rem)/.98 Georgia,serif; letter-spacing: -.04em; color: #fff; }
.ev-profile-intro p { margin: 0; max-width: 760px; color: #cfc1ca; line-height: 1.75; }
.ev-profile-intro .ev-btn { flex: 0 0 auto; position: relative; z-index: 1; }
@media (max-width: 760px) {
    .ev-profile-intro { padding: 28px 24px; align-items: flex-start; flex-direction: column; }
    .ev-profile-intro .ev-btn { width: 100%; }
}

/* =========================================================
   LUNASYNNFANS.COM — CONTACT FORM
   ========================================================= */
.ev-contact-page { padding-top: 54px; padding-bottom: 84px; }
.ev-contact-hero { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.ev-contact-hero h1 { margin: 12px 0 16px; font: 700 clamp(2.6rem, 5vw, 4.8rem)/1 Georgia, "Times New Roman", serif; letter-spacing: -.04em; color: #241b22; }
.ev-contact-hero p { margin: 0 auto; max-width: 760px; color: #675a63; font-size: 1.04rem; line-height: 1.8; }
.ev-contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 26px; align-items: start; }
.ev-contact-card { background: #fff; border: 1px solid #e8dde4; border-radius: 22px; padding: clamp(25px, 4vw, 44px); box-shadow: 0 20px 48px rgba(40,24,35,.07); }
.ev-contact-card-heading { margin-bottom: 28px; }
.ev-contact-card-heading > span { display: block; color: #ad4569; font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .17em; }
.ev-contact-card-heading h2 { margin: 8px 0 0; font: 700 clamp(1.9rem, 3vw, 2.8rem)/1.08 Georgia, serif; color: #281f25; }
.ev-contact-form { display: grid; gap: 20px; }
.ev-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ev-field { display: grid; gap: 8px; }
.ev-field label { color: #3a2d35; font-size: .88rem; font-weight: 800; }
.ev-field input,
.ev-field textarea { width: 100%; border: 1px solid #d9cbd3; border-radius: 12px; background: #fcfafb; color: #251d22; font: inherit; padding: 14px 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.ev-field textarea { resize: vertical; min-height: 180px; line-height: 1.6; }
.ev-field input:focus,
.ev-field textarea:focus { border-color: #c34b74; background: #fff; box-shadow: 0 0 0 4px rgba(195,75,116,.1); }
.ev-field small { color: #857681; font-size: .76rem; line-height: 1.5; }
.ev-contact-submit { min-height: 52px; border: 0; border-radius: 999px; cursor: pointer; padding: 0 25px; background: linear-gradient(135deg,#b83664,#df648c); color: #fff; font: inherit; font-size: .95rem; font-weight: 800; box-shadow: 0 13px 28px rgba(184,54,100,.19); justify-self: start; }
.ev-contact-submit:hover { filter: brightness(1.04); }
.ev-form-alert { margin-bottom: 24px; padding: 16px 18px; border-radius: 12px; line-height: 1.55; }
.ev-form-alert strong { display: block; margin-bottom: 3px; }
.ev-form-alert ul { margin: 8px 0 0 18px; padding: 0; }
.ev-form-success { background: #edf8f1; border: 1px solid #bce0c8; color: #225e38; }
.ev-form-error { background: #fff1f3; border: 1px solid #ecc8d0; color: #7e2940; }
.ev-contact-aside { background: linear-gradient(145deg,#0d0b10,#1c141b); border-radius: 22px; padding: 34px; color: #d8ccd4; box-shadow: 0 20px 48px rgba(40,24,35,.1); }
.ev-contact-aside h2 { margin: 10px 0 14px; color: #fff; font: 700 2rem/1.08 Georgia, serif; }
.ev-contact-aside p { color: #c4b7c0; line-height: 1.75; }
.ev-contact-note { margin-top: 30px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.ev-contact-note h3 { margin: 0 0 9px; color: #fff; font: 700 1.25rem Georgia, serif; }
.ev-contact-note a { color: #ef93b2; font-weight: 800; text-decoration: none; }
.ev-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 820px) {
    .ev-contact-layout { grid-template-columns: 1fr; }
    .ev-contact-aside { order: 2; }
}
@media (max-width: 580px) {
    .ev-contact-page { padding-top: 38px; padding-bottom: 60px; }
    .ev-form-grid { grid-template-columns: 1fr; }
    .ev-contact-card, .ev-contact-aside { border-radius: 17px; }
    .ev-contact-submit { width: 100%; justify-self: stretch; }
}
