/*
 * STYLESHEET FOR LIVEGIRLSTREAMS.COM
 * Version 10.0 - Added Favorites Page styles
 */

/* --- VARIABLES & BASE STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Roboto:wght@700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --color-primary: #2ECC71; /* Lush Green */
    --color-secondary-rating: #FFC107; /* Amber Gold for ratings */
    --color-secondary-favorite: #ff4757; /* Red for favorites */
    --color-background: #121212;
    --color-surface: #1e1e1e;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-border: #333333;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-logo: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--color-background); color: var(--color-text); font-family: var(--font-body); line-height: 1.6; }
.container, .profile-container-new { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-text); margin-bottom: 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #ffffff; }
img { max-width: 100%; height: auto; display: block; }

/* --- HEADER & FOOTER --- */
.site-header { background-color: var(--color-surface); padding: 1rem 0; border-bottom: 1px solid var(--color-border); }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.site-logo { font-family: var(--font-logo); font-size: 1.6rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; background: linear-gradient(to bottom, #ffffff, #bbbbbb); -webkit-background-clip: text; background-clip: text; color: transparent; }
.search-form input { background: var(--color-background); border: 1px solid var(--color-border); color: white; padding: 0.5rem; border-radius: 5px; }
.site-nav { display: flex; gap: 1.5rem; }
.site-nav a { color: var(--color-text-muted); font-weight: 600; }
.site-nav a:hover, .site-nav a.active { color: white; }
.site-footer { background-color: var(--color-surface); text-align: center; padding: 2rem 0; margin-top: 3rem; border-top: 1px solid var(--color-border); }
.footer-links a { color: var(--color-text-muted); margin: 0 0.5rem; }

/* --- REUSABLE STYLED BOX UTILITY --- */
.styled-box-container { background-color: var(--color-surface); padding: 2rem; border-radius: 8px; border: 1px solid var(--color-border); }

/* --- FILTER, SORT & INFO BARS --- */
.filter-sort-bar, .live-count-bar, .category-subheader-bar { display: flex; align-items: center; padding: 1rem 1.5rem; background-color: var(--color-surface); border-radius: 8px; margin-bottom: 2rem; border: 1px solid var(--color-border); }
.filter-sort-bar { justify-content: space-between; }
.live-count-bar, .category-subheader-bar { justify-content: center; }
.live-count-bar p, .category-subheader-bar p { margin: 0; font-size: 1rem; color: var(--color-text-muted); font-weight: 600; }
.filter-bar-info { font-size: 1rem; color: var(--color-text-muted); }
.filter-group { display: flex; align-items: center; gap: 0.75rem; }
.filter-group label { font-weight: 600; color: var(--color-text-muted); }
.select-wrapper { position: relative; }
.filter-group select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-color: var(--color-background); border: 1px solid var(--color-border); color: var(--color-text); padding: 0.75rem 2.5rem 0.75rem 1rem; border-radius: 5px; font-size: 1rem; cursor: pointer; font-family: var(--font-body); }
.select-wrapper::after { content: ''; position: absolute; top: 50%; right: 1rem; transform: translateY(-50%); width: 12px; height: 12px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M8 11.293l-4.646-4.647a.5.5 0 0 1 .708-.708L8 9.879l4.94-4.934a.5.5 0 0 1 .707.707L8 11.293z'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; pointer-events: none; }

/* --- MODEL & CATEGORY GRIDS --- */
.model-grid-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.model-card { background-color: var(--color-surface); border-radius: 8px; overflow: hidden; position: relative; border: 1px solid var(--color-border); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.model-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); }
.model-card img { width: 100%; height: 100%; object-fit: cover; }
.model-card .live-indicator { position: absolute; top: 10px; left: 10px; background-color: #ff0000; color: white; padding: 3px 8px; font-size: 0.8rem; font-weight: bold; border-radius: 5px; z-index: 2; }
.model-card .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 2rem 1rem 1rem; color: white; }
.model-card .model-name { margin: 0; font-size: 1.2rem; }
.model-card .model-cta { font-size: 0.9rem; color: var(--color-text-muted); }

/* --- Card Status Indicator (NEW - Favorites Page) --- */
.card-status-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    z-index: 2;
    text-transform: uppercase;
}
.card-status-indicator.online {
    background-color: var(--color-primary);
}
.card-status-indicator.offline {
    background-color: #777;
}

/* --- PROFILE PAGE STYLES --- */
.profile-container-new { display: flex; flex-direction: column; gap: 3rem; }
.profile-hero { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1rem 0; }
.hero-image-container { width: 200px; height: 200px; margin-bottom: 1.5rem; border-radius: 50%; overflow: hidden; border: 4px solid var(--color-primary); }
.hero-details h1 { font-size: 3rem; margin-bottom: 0.25rem; }
.hero-subtitle { font-size: 1.2rem; color: var(--color-text-muted); margin-top: 0; margin-bottom: 1.5rem; }
.hero-cta-button { display: inline-block; background-color: var(--color-primary); color: white; padding: 1rem 2.5rem; border-radius: 50px; font-size: 1.2rem; font-weight: bold; text-transform: uppercase; transition: background-color 0.2s ease, transform 0.2s ease; }
.hero-cta-button:hover { background-color: #27ae60; color: white; transform: scale(1.05); }
.stream-embed-section { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.live-embed { width: 100%; max-width: 800px; aspect-ratio: 16 / 9; background-color: #000; border-radius: 8px; }
.post-stream-info { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; background-color: var(--color-surface); padding: 1rem 1.5rem; border-radius: 8px; border: 1px solid var(--color-border); margin-top: 2rem; }
.rating-box, .social-share { display: flex; align-items: center; gap: 1rem; }
.favorite-btn { background: none; border: none; font-size: 2.2rem; line-height: 1; color: var(--color-text-muted); cursor: pointer; transition: color 0.2s ease, transform 0.2s ease; }
.favorite-btn:hover { transform: scale(1.1); }
.favorite-btn.favorited { color: var(--color-secondary-favorite); }
.rating-display { font-size: 1rem; color: var(--color-text-muted); }
.rating-display strong { color: var(--color-text); font-size: 1.1rem; }
.stars { display: flex; gap: 0.2rem; }
.star { font-size: 1.8rem; color: var(--color-border); cursor: pointer; transition: color 0.2s ease; }
.star:hover { color: var(--color-secondary-rating); }
.social-share strong { color: var(--color-text-muted); font-weight: 600; }
.social-links { display: flex; gap: 0.75rem; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: white; font-weight: bold; font-size: 1rem; text-decoration: none; transition: transform 0.2s ease; }
.social-icon:hover { transform: scale(1.1); }
.x-social { background-color: #000000; }
.facebook { background-color: #1877F2; }
.info-tabs-section { margin-top: 1rem; }
.tab-nav { display: flex; justify-content: center; border-bottom: 1px solid var(--color-border); margin-bottom: 2rem; }
.tab-link { padding: 0.75rem 1.5rem; cursor: pointer; background: none; border: none; color: var(--color-text-muted); font-size: 1.1rem; font-weight: 600; border-bottom: 4px solid transparent; transition: color 0.2s ease; }
.tab-link:hover { color: var(--color-text); }
.tab-link.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.tab-pane { display: none; background-color: var(--color-surface); padding: 2rem; border-radius: 8px; }
.tab-pane.active { display: block; }
.details-grid-new { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.details-grid-new > div { background-color: var(--color-background); padding: 1rem; border-radius: 5px; }
.details-grid-new strong { color: var(--color-primary); }
.tag-list-new { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.tag-list-new li a { display: block; background-color: var(--color-border); color: var(--color-text); padding: 0.5rem 1rem; border-radius: 20px; }
.tag-list-new li a:hover { background-color: var(--color-primary); }
.faq-section-new.styled-box-container { margin-top: 3rem; }
.faq-section-new .section-title { text-align: left; border-bottom: none; padding-bottom: 0; margin-bottom: 1.5rem; }
.faq-item { border-top: 1px solid var(--color-border); padding: 1.5rem 0; }
.faq-item:first-of-type { border-top: none; padding-top: 0; }
.faq-item:last-of-type { padding-bottom: 0; }
.faq-item h4 { color: var(--color-text); margin: 0 0 0.5rem 0; }
.faq-item p { color: var(--color-text-muted); margin: 0; }

/* --- SEARCH FORM & STATIC PAGES --- */
.modern-search-form { display: flex; flex-wrap: wrap; gap: 1rem; background-color: var(--color-surface); padding: 2rem; border-radius: 8px; margin-bottom: 3rem; justify-content: center; }
.modern-search-form .form-group { display: flex; flex-direction: column; }
.modern-search-form label { margin-bottom: 0.5rem; color: var(--color-text-muted); }
.modern-search-form input, .modern-search-form select { background: var(--color-background); border: 1px solid var(--color-border); color: white; padding: 0.8rem; border-radius: 5px; min-width: 200px; }
.modern-search-form button { background-color: var(--color-primary); color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 5px; cursor: pointer; font-weight: bold; }
.static-content { max-width: 800px; margin: 0 auto; line-height: 1.8; }
.static-content h2 { font-size: 1.8em; color: var(--color-primary); margin-top: 40px; border-bottom: 2px solid var(--color-border); padding-bottom: 10px; }
.static-content p { margin-bottom: 20px; }
.text-center { text-align: center; }

/* --- PAGINATION --- */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.page-link, .page-link-ellipsis { padding: 0.5rem 1rem; border-radius: 5px; background-color: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); }
.page-link:hover { background-color: var(--color-border); color: white; }
.page-link.current { background-color: var(--color-primary); border-color: var(--color-primary); color: white; font-weight: bold; }

/* --- RESPONSIVE STYLES --- */
@media (max-width: 768px) {
    .site-nav, .header-search { display: none; }
    .hero-details h1 { font-size: 2rem; }
    .model-grid-masonry { grid-template-columns: 1fr 1fr; }
    .filter-sort-bar { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
    .model-grid-masonry { grid-template-columns: 1fr; }
}