/*
 * Stylesheet for AlwaysCamGirls.com
 * Version: 5.0
 * Description: A modern, dark-themed, and responsive design focused on user engagement and SEO.
 */

/* --- Fonts & Global Styles --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500&display=swap');

:root {
    --color-background: #121212;
    --color-surface: #1E1E1E;
    --color-primary: #E91E63;
    --color-primary-hover: #C2185B;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B0B0B0;
    --color-border: #2c2c2c;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 12px;
    --container-width: 1200px;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-top: 0;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Header --- */
.site-header {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-text-primary);
}
.site-logo:hover {
    color: var(--color-text-primary);
}

.search-form {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.search-form input[type="text"] {
    background: none;
    border: none;
    color: var(--color-text-primary);
    padding: 10px 15px;
    font-size: 1em;
    width: 250px;
}
.search-form input[type="text"]:focus {
    outline: none;
    background-color: rgba(255,255,255,0.05);
}

.search-form button {
    background-color: var(--color-primary);
    border: none;
    color: white;
    padding: 0 15px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}
.search-form button:hover {
    background-color: var(--color-primary-hover);
}

.site-nav a {
    color: var(--color-text-secondary);
    margin-left: 25px;
    font-weight: 500;
    font-size: 1em;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* --- Model Thumbnails / Cards --- */
.thumbnails-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.model-thumbnail {
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.model-thumbnail a {
    display: block;
}

.model-thumbnail img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.model-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0));
    text-align: center;
    transition: background 0.3s ease;
}

.model-thumbnail:hover .model-info {
    background: linear-gradient(to top, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
}

.model-name {
    font-family: var(--font-heading);
    font-size: 1.3em;
    color: var(--color-text-primary);
    margin: 0 0 5px 0;
    line-height: 1.2;
    font-weight: 600;
}

.model-cta {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.model-thumbnail:hover .model-cta {
    color: var(--color-text-primary);
}

/* --- NEW Live Indicator --- */
.live-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #2ecc71; /* A nice green color */
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2; /* Ensure it's above the image */
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 8px;
}
.page-link, .page-link-ellipsis, .page-link.current {
    padding: 10px 15px;
    border-radius: 8px;
    background-color: var(--color-surface);
    color: var(--color-text-secondary);
    font-weight: 500;
}
.page-link:hover {
    background-color: var(--color-primary);
    color: white;
}
.page-link.current {
    background-color: var(--color-primary);
    color: white;
    font-weight: 700;
}

/* --- Page Headers & Sections --- */
.page-header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 40px;
}
.page-header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 1.2em;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
}

/* --- Model Profile Page --- */
.profile-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}
.profile-sidebar {
    position: sticky;
    top: 100px;
}
.profile-image-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.profile-image-container a:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    font-family: var(--font-heading);
    font-size: 1.4em;
    font-weight: 600;
    padding: 20px;
    line-height: 1.3;
}

.profile-image {
    width: 100%;
}
.profile-header h1 {
    font-size: 3.5em;
    margin: 0;
}

.sidebar-details {
    text-align: center;
    padding: 15px;
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
}

.sidebar-details .subtitle {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    margin: 0;
}

.live-cam-header {
    text-align: center;
    font-size: 2em;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.live-embed {
    width: 100%;
    aspect-ratio: 16/10;
    background-color: #000;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.section-header {
    font-size: 1.8em;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}
.details-table {
    width: 100%;
}
.details-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}
.details-table td:first-child {
    font-weight: bold;
    color: var(--color-text-secondary);
    width: 40%;
}

.tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-list li a {
    display: block;
    background: var(--color-surface);
    color: var(--color-text-secondary);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9em;
    transition: all 0.2s;
}
.tag-list li a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* --- Styles for Favorites & Ratings --- */
.rating-box {
    background: var(--color-surface);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 20px;
}

.favorite-btn {
    font-size: 1.8em;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0;
    line-height: 1;
}

.favorite-btn:hover {
    color: var(--color-primary);
}

.favorite-btn.favorited {
    color: var(--color-primary);
    transform: scale(1.1);
}

.rating-display {
    font-size: 0.9em;
    color: var(--color-text-secondary);
    margin-top: 10px;
    margin-bottom: 10px;
}

.stars .star {
    font-size: 2.5em;
    color: var(--color-border);
    cursor: pointer;
    transition: color 0.2s;
    display: inline-block;
}

.stars:hover .star {
    color: #f1c40f;
}

.stars .star:hover ~ .star {
    color: var(--color-border);
}

/* --- Social Sharing --- */
.social-share {
    background-color: var(--color-surface);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 20px;
}

.social-share strong {
    display: block;
    margin-bottom: 15px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a.x-social {
    background-color: #000000;
}
.social-links a.x-social:hover {
    background-color: #333333;
}

.social-links a.facebook {
    background-color: #1877F2;
}
.social-links a.facebook:hover {
    background-color: #166fe5;
}
/* Add these new styles to your existing style.css file */

/* Add these new styles to your existing style.css file */

.go-private-btn {
    display: block;
    max-width: 280px; /* Constrain the button's width */
    margin-left: auto;   /* Center the button horizontally */
    margin-right: auto;  /* Center the button horizontally */
    background-color: var(--color-primary);
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    border-radius: var(--border-radius);
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.go-private-btn:hover {
    background-color: var(--color-primary-hover);
    color: white;
    transform: translateY(-2px);
}



/* --- FAQ Section --- */
.faq-section {
    margin-top: 40px;
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: var(--border-radius);
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 1.2em;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.faq-item p {
    margin: 0;
    color: var(--color-text-secondary);
}

/* --- Forms --- */
.advanced-search-form {
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text-secondary);
}
.form-group input, .form-group select {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px;
    color: var(--color-text-primary);
    font-size: 1em;
}
.form-group button {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.form-group button:hover {
    background-color: var(--color-primary-hover);
}

/* --- Blog --- */
.blog-post-preview, .blog-post-full {
    background-color: var(--color-surface);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
}
.blog-post-preview h3 a {
    color: var(--color-text-primary);
}
.blog-post-preview .read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}
.post-content {
    line-height: 1.8;
}

/* --- Blog Post Enhancements --- */

/* --- Social Sharing (Corrected for Blog) --- */
.blog-social-share {
    background-color: var(--color-surface);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.blog-social-share strong {
    margin-bottom: 0;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* --- This section applies to all social links, including the model page --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.1em;
}

.social-links a.x-social {
    background-color: #000000;
}
.social-links a.x-social:hover {
    background-color: #333333;
}

.social-links a.facebook {
    background-color: #1877F2;
    font-family: sans-serif;
}
.social-links a.facebook:hover {
    background-color: #166fe5;
}
/* Add these new styles to your existing style.css file */

/* --- Blog Category Styles --- */
.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.category-nav a {
    background-color: var(--color-surface);
    color: var(--color-text-secondary);
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-nav a:hover {
    background-color: var(--color-primary-hover);
    color: white;
}

.category-nav a.active {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
}

.post-category {
    background-color: var(--color-primary);
    color: white;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 15px;
}

/* --- Blog Post Meta Styles --- */
.post-meta-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.post-meta {
    margin: 0;
    color: var(--color-text-secondary);
}

.post-category-link {
    background-color: var(--color-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.post-category-link:hover {
    background-color: var(--color-primary-hover);
    color: white;
}



.related-posts-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.related-post-card {
    display: block;
    background-color: var(--color-surface);
    padding: 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.related-post-card h3 {
    color: var(--color-text-primary);
    font-size: 1.3em;
    margin: 0 0 15px 0;
}

.related-post-card .read-more {
    color: var(--color-primary);
    font-weight: 600;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    background-color: var(--color-surface);
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-border);
}

.footer-links {
    margin-top: 10px;
    font-size: 0.9em;
}
.footer-links a {
    color: var(--color-text-secondary);
    margin: 0 10px;
}
.footer-links a:hover {
    color: var(--color-primary);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
    .profile-sidebar {
        position: static;
    }
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .site-nav {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .site-header {
        position: static;
    }
    .site-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .site-nav a {
        margin-left: 0;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 2.5em;
    }
    .profile-header h1 {
        font-size: 2.8em;
    }
}

@media (max-width: 480px) {
    .thumbnails-row {
        grid-template-columns: 1fr;
    }
    .advanced-search-form {
        grid-template-columns: 1fr;
    }
    .site-logo {
        font-size: 1.5em;
    }
    .search-form input[type="text"] {
        width: 180px;
    }
}
/* --- New Featured Showcase Styles --- */

/* Camgirl of the Week Banner */
.motw-banner-container {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.motw-link {
    display: block;
    position: relative;
    transition: transform 0.3s ease;
}

.motw-link:hover {
    transform: translateY(-5px);
}

.motw-banner-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* Widescreen aspect ratio for a banner look */
    object-fit: cover;
}

.motw-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0));
    color: white;
    text-align: center;
}

.motw-content {
    max-width: 600px;
    margin: 0 auto;
}

.motw-title {
    font-family: var(--font-heading);
    font-size: 1.2em;
    color: var(--color-primary);
    margin: 0;
}

.motw-name {
    font-family: var(--font-heading);
    font-size: 3em;
    margin: 5px 0 10px 0;
    line-height: 1.2;
}

.motw-cta {
    font-size: 1em;
    font-weight: 500;
    text-transform: uppercase;
    color: white;
    transition: color 0.3s ease;
}

.motw-link:hover .motw-cta {
    color: var(--color-primary);
}


/* Featured Grid below the banner */
.featured-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .motw-overlay {
        padding: 20px;
    }
    .motw-name {
        font-size: 2em;
    }
}

/* Add these new styles to your main style.css file for the dropdown menu */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-left: 25px;
    padding-bottom: 7px; /* Aligns with other nav links */
}

.dropdown-btn:hover {
    color: var(--color-primary);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--color-surface);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    z-index: 10;
    border-radius: var(--border-radius);
    overflow: hidden; /* Ensures border radius is applied to links */
    right: 0; /* Aligns dropdown to the right */
}

.dropdown-content a {
    color: var(--color-text-secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    margin-left: 0; /* Reset margin from main nav */
    border-bottom: none; /* Reset border from main nav */
}

.dropdown-content a:hover {
    background-color: var(--color-primary);
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}
/* Add these new styles to your main style.css file */

.model-cta-link {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.model-thumbnail:hover .model-cta-link {
    color: var(--color-text-primary);
}
.cta-btn {
      display:inline-block; padding:12px 18px; border-radius:999px; font-weight:700; text-decoration:none;
      background: linear-gradient(90deg, #ff4d6d, #ff8fab); color:#fff; box-shadow:0 6px 18px rgba(255,77,109,0.25);
      transition: transform .08s ease-in-out, box-shadow .2s ease;
    }
    .cta-btn:hover { transform: translateY(-1px); box-shadow:0 8px 22px rgba(255,77,109,0.35); }
    .cta-btn.secondary {
      background: linear-gradient(90deg, #4c6ef5, #74c0fc);
    }

.callout{background:#404040;border:1px solid #ffd4e2;border-radius:12px;padding:16px;margin:18px 0}
    .cta{display:inline-block;background:var(--accent);color:#fff;text-decoration:none;padding:12px 22px;border-radius:10px;font-weight:700;box-shadow:0 6px 14px rgba(209,58,106,.18);}
    .cta:hover{opacity:.92}
    .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:14px}
    .badge{display:inline-block; background:#ffeef5; color:#b4235a; padding:4px 10px; border-radius:999px; font-weight:600; font-size:.9rem}
    .muted{color:var(--muted)}
    .divider{height:1px;background:#eee;margin:28px 0}
    .footnote{font-size:.95rem;color:#666}
    code.kbd{background:#f4f4f4;border:1px solid #e5e5e5;border-radius:6px;padding:1px 6px;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;font-size:.95rem}
    .table{width:100%;border-collapse:collapse;margin:8px 0 18px}
    .table th,.table td{border-bottom:1px solid #eee;padding:10px 8px;text-align:left;vertical-align:top}
    .hero{background:linear-gradient(135deg,#ffeef5 0%,#fff 60%);border:1px solid #ffd8e7;border-radius:16px;padding:22px}

/* --- TEXT ONLY CTA (Dark Version) --- */
.cta-container {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    padding: 30px 20px;
    background: #000;       /* Black Background */
    border: 1px solid #222; /* Subtle dark border */
    border-radius: 12px;
}

.live-cta-btn {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    padding: 20px 30px;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
}

.live-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.6);
    background: linear-gradient(135deg, #ff4081 0%, #E91E63 100%);
}

.live-dot {
    color: #00ff00;
    margin-right: 10px;
    text-shadow: 0 0 10px #00ff00;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.cta-subtext {
    margin-top: 15px;
    color: #888; /* Grey text so it is readable on black */
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
/* Live Feed Container to handle the sizing */
.video-wrapper {
    width: 100%;
    max-width: 1000px; 
    height: 540px; /* Fixed height for Desktop */
    margin: 0 auto 30px auto;
    background: #000;
    position: relative;
    display: block;
}

#object_container {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 540px; /* Forces the box to stay open */
}

@media (max-width: 768px) {
    .video-wrapper {
        height: auto; 
        min-height: auto;
        aspect-ratio: 16 / 9; 
    }
    #object_container {
        min-height: auto;
    }
}
@media (max-width: 768px) {
    .player-container {
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 1.1rem; /* Shrink text slightly for smaller screens */
    }

    .play-icon-large {
        width: 60px; /* Scale down the play button for mobile */
        height: 60px;
    }

    /* Since there is no hover on mobile, ensure the overlay is visible */
    .player-overlay {
        background: rgba(0,0,0,0.4); 
    }
}
/* --- LIVE FEED VISUAL (my Version) --- */
.player-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #333;
}

.main-preview {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.3s ease;
}

.player-container:hover .main-preview {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.player-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); /* Darkens the image slightly */
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.play-icon-large {
    width: 80px; height: 80px;
    background: rgba(233, 30, 99, 0.9);
    border-radius: 50%;
    position: relative;
    margin-bottom: 15px;
}

.play-icon-large::after {
    content: ''; position: absolute; top: 50%; left: 55%;
    transform: translate(-50%, -50%); border-style: solid;
    border-width: 15px 0 15px 25px; border-color: transparent transparent transparent white;
}

.cta-text {
    color: white; font-weight: bold; font-size: 1.4rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.live-tag {
    position: absolute; top: 20px; left: 20px;
    background: #ff0000; color: white; padding: 5px 15px;
    font-weight: bold; border-radius: 4px; font-size: 0.9rem;
}