/**
 * Modern Guest Design - Based on VIP Modern Theme
 * PHP 5.6+ Compatible
 * Matches /vip/index3.php color scheme
 */

/* ============================================
   Age Verification Banner
   ============================================ */

.age-verify-banner {
    position: relative;
    z-index: 999;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-verify-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3.5rem 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
}

.age-verify-banner-icon {
    font-size: 2.5rem;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.age-verify-banner-text {
    flex: 1;
    min-width: 250px;
    color: white;
    font-size: 1rem;
    line-height: 1.4;
}

.age-verify-banner-text strong {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.age-verify-banner-subtext {
    display: block;
    font-size: 0.875rem;
    opacity: 0.95;
    margin-top: 0.25rem;
}

.age-verify-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.age-verify-banner-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    white-space: nowrap;
}

.age-verify-banner-btn-primary {
    background: white;
    color: #c44569;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.age-verify-banner-btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.age-verify-banner-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border: 2px solid white;
    text-decoration: none;
}

.age-verify-banner-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.age-verify-banner-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.age-verify-banner-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.age-verify-banner-close:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.age-verify-banner.hidden {
    display: none;
}

@media (max-width: 768px) {
    .age-verify-banner-content {
        padding: 1rem 3rem 1rem 1rem;
        gap: 1rem;
    }
    
    .age-verify-banner-icon {
        font-size: 2rem;
    }
    
    .age-verify-banner-text {
        font-size: 0.9375rem;
    }
    
    .age-verify-banner-actions {
        width: 100%;
        padding-right: 0.5rem;
    }
    
    .age-verify-banner-btn {
        flex: 1;
        text-align: center;
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
    
    .age-verify-banner-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

/* ============================================
   AGE VERIFICATION STYLES
   ============================================ */

/* Go.cam overlay - ensure it appears above all site elements */
#avs-gocam-hosted-overlay,
#avs-gocam-hosted-overlay *,
div[id*="gocam"],
div[class*="gocam"],
iframe[src*="go.cam"] {
    z-index: 999999 !important;
    position: relative !important;
}

/* Reduce header z-index when Go.cam overlay is active */
body.avs-active .modern-header {
    z-index: 999 !important;
}

/* Blur effect for content requiring age verification */
.age-verify-blur {
    filter: blur(20px);
    pointer-events: none;
}

/* Show content after verification check completes */
body.age-verify-checked .card-image img,
body.age-verify-checked .update-card-image img,
body.age-verify-checked .update-row-image img,
body.age-verify-checked .model-photo img,
body.age-verify-checked .photoset-grid img,
body.age-verify-checked .video-player,
body.age-verify-checked .star-card-image img {
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}

/* Flash Notification */
.age-verify-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.age-verify-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.age-verify-notification-success {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.age-verify-notification-error {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.age-verify-notification-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Overlay container for age verify button */
.age-verify-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    cursor: pointer;
}

/* Age verify button */
.age-verify-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.age-verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Age verification modal */
.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.age-verify-modal.active {
    display: flex;
}

.age-verify-modal-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.age-verify-modal h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.age-verify-modal p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-verify-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.age-verify-provider-btn {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.age-verify-provider-btn.gocam {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.age-verify-provider-btn.ageverif {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.age-verify-provider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.age-verify-modal-close {
    margin-top: 1.5rem;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
}

.age-verify-modal-close:hover {
    color: #6b7280;
}

@media (max-width: 768px) {
    .age-verify-modal-content {
        padding: 2rem;
    }
    
    .age-verify-modal h2 {
        font-size: 1.5rem;
    }
    
    .age-verify-btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   CSS VARIABLES - THEME COLORS
   ============================================ */

:root {
    --primary-color: #dc2626;
    --primary-hover: #b91c1c;
    --primary-light: #fee2e2;
    --accent-color: #7c3aed;
    --accent-hover: #6d28d9;
}

/* Site-specific color overrides */
/* 10 Man Cum Slam - Red */
.theme-oral-gangbangs {
    --primary-color: #cd252b;
    --primary-hover: #a01d22;
    --primary-light: #fed6c7;
}

/* Barefoot Confidential - Hot Pink */
.theme-foot-fetish {
    --primary-color: #fc0165;
    --primary-hover: #d10154;
    --primary-light: #ffe0f0;
}

/* Ultra Cuckolds - Deep Blue */
.theme-cuckolds {
    --primary-color: #00558d;
    --primary-hover: #003d66;
    --primary-light: #cce5f2;
}

/* 5-Guy Cream Pie - Orange/Red */
.theme-gangbang-cream-pies {
    --primary-color: #dc2626;
    --primary-hover: #b91c1c;
    --primary-light: #fee2e2;
}

/* Black Jelly - Purple */
.theme-black-jelly {
    --primary-color: #7c3aed;
    --primary-hover: #6d28d9;
    --primary-light: #ede9fe;
}

/* Pussy Pump - Pink */
.theme-pussy-pumps {
    --primary-color: #ec4899;
    --primary-hover: #db2777;
    --primary-light: #fce7f3;
}

/* ============================================
   NETWORK ACCESS BANNER
   ============================================ */

.network-access-banner {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.network-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.network-banner-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.network-banner-text {
    flex: 1;
    text-align: left;
}

.network-banner-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c4a6e;
    margin: 0 0 0.5rem 0;
}

.network-banner-text p {
    font-size: 1rem;
    color: #0369a1;
    margin: 0;
    line-height: 1.6;
}

.network-banner-text strong {
    color: #0c4a6e;
    font-weight: 700;
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
    margin: 0;
    padding: 0;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.modern-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1001;
    margin-bottom: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-left {
    flex: 1;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    display: inline-block;
}

.site-tagline {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* ============================================
   SITE SWITCHER
   ============================================ */

.site-switcher {
    position: relative;
}

.site-switcher-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.site-switcher-btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.site-switcher-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.site-switcher-btn .dropdown-arrow {
    transition: transform 0.2s ease;
    font-size: 0.75rem;
}

.site-switcher-btn[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.site-switcher-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.site-switcher-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-switcher-header {
    padding: 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: #111827;
    border-bottom: 2px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 12px 12px 0 0;
}

.site-switcher-note {
    font-size: 0.75rem;
    font-weight: 400;
    color: #6b7280;
    margin-top: 0.25rem;
    font-style: italic;
}

.site-switcher-list {
    overflow-y: auto;
    max-height: 350px;
}

.site-switcher-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.site-switcher-item:last-child {
    border-bottom: none;
}

.site-switcher-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

.site-switcher-name {
    font-weight: 500;
    font-size: 0.9375rem;
}

.site-switcher-item span:last-child {
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.site-switcher-item:hover span:last-child {
    opacity: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */

/* Mobile Site Switcher - Hidden on Desktop */
.mobile-site-switcher {
    display: none;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.hamburger-menu:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger-line {
    width: 32px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
    background: #f9fafb;
    padding: 0.75rem 20px;
    border-top: 1px solid #e5e7eb;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.nav-link.active {
    background: var(--primary-color);
    color: white;
}

.nav-link.join-btn {
    background: #10b981;
    color: white;
}

.nav-link.join-btn:hover {
    background: #059669;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

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

.hero-section {
    text-align: center;
    padding: 1.5rem 0 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white !important;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-danger {
    background: #10b981;
    color: white !important;
}

.btn-danger:hover {
    background: #059669;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-image {
    position: relative;
    padding-bottom: 56.25%;
    background: #1f2937;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1f2937;
}

/* Video Preview Styling */
.card-image.video-preview {
    position: relative;
    background: #000;
}

.card-image.video-preview video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay:hover > div {
    transform: scale(1.1);
}

/* Photo Preview Grid Styling */
.card-image.photo-preview {
    padding-bottom: 56.25%;
    position: relative;
    background: #1f2937;
}

.card-image.photo-preview > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-image.photo-preview img {
    object-fit: contain;
    background: #1f2937;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination-wrapper {
    margin: 0.5rem 0 1.5rem 0 !important;
    display: flex;
    justify-content: center;
    padding: 0 !important;
    background: transparent;
    border-radius: 0;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: #f9fafb;
    border: 2px solid transparent;
    border-radius: 10px;
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.pagination-link:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pagination-link.pagination-current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    cursor: default;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
}

.pagination-link.pagination-current:hover {
    transform: scale(1.1);
}

.pagination-link.pagination-disabled {
    background: #f3f4f6;
    color: #d1d5db;
    border-color: transparent;
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-link.pagination-disabled:hover {
    background: #f3f4f6;
    color: #d1d5db;
    border-color: transparent;
    transform: none;
    box-shadow: none;
}

.pagination-prev,
.pagination-next {
    font-weight: 700;
    padding: 0 1.25rem;
    min-width: auto;
}

.pagination-prev::before {
    content: '←';
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

.pagination-next::after {
    content: '→';
    margin-left: 0.5rem;
    font-size: 1.125rem;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination-wrapper {
        padding: 1rem 0;
    }
    
    .pagination {
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
    
    .pagination-numbers {
        gap: 0.375rem;
    }
    
    .pagination-link {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 0.9375rem;
    }
    
    .pagination-prev,
    .pagination-next {
        padding: 0 1rem;
    }
}

/* ============================================
   PHOTOSET PREVIEW
   ============================================ */

.photoset-header {
    text-align: center;
    margin-bottom: 2rem;
}

.photo.site-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.photoset-meta {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.photoset-cta-top {
    margin-bottom: 2rem;
}

.photoset-cta-bottom {
    margin-top: 3rem;
}

.photoset-cta-features {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-top: 1rem;
    font-weight: 500;
}

.photoset-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.photoset-item {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.photoset-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.photoset-image {
    position: relative;
    padding-bottom: 133%;
    background: #1f2937;
    overflow: hidden;
}

.photoset-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1f2937;
}

.photoset-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photoset-item:hover .photoset-overlay {
    opacity: 1;
}

.photo-number {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.photoset-cta {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 16px;
    margin-top: 3rem;
}

.photoset-cta h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.photoset-cta p {
    font-size: 1.125rem;
    color: #374151;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

/* Responsive photoset grid */
@media (max-width: 1024px) {
    .photoset-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .photoset-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .photoset-title {
        font-size: 1.5rem;
    }
    
    .photoset-preview-notice {
        padding: 1rem;
    }
    
    .photoset-cta {
        padding: 2rem 1rem;
    }
    
    .photoset-cta h2 {
        font-size: 1.5rem;
    }
    
    .photoset-cta p {
        font-size: 1rem;
    }
}

/* ============================================
   MODEL PROFILE PAGE
   ============================================ */

.model-header-top {
    text-align: center;
    margin-bottom: 2rem;
}

.model-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.model-stats {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

.model-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.model-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.model-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.model-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.model-bio h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 1rem 0;
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bio-item {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 6px;
}

.bio-label {
    font-weight: 600;
    color: #374151;
}

.bio-value {
    color: #6b7280;
}

.model-cta-bottom {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 16px;
}

.model-cta-bottom h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
}

.model-cta-bottom p {
    font-size: 1.125rem;
    color: #374151;
    margin: 0 0 2rem 0;
}

.updates-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.update-row {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.update-row:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.update-row-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.update-row-image {
    position: relative;
    padding-bottom: 56.25%;
    background: #1f2937;
    overflow: hidden;
}

.update-row-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1f2937;
}

.update-row-content {
    padding: 1rem;
}

.update-row-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.update-row-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.no-content {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    padding: 3rem 1rem;
}

/* ============================================
   VIDEO PREVIEW PAGE
   ============================================ */

.video-page-header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(to bottom, #f9fafb, white);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.video-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.video-page-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

.video-section {
    padding-top: 0 !important;
}

.video-player-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.video-player-wrapper {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.video-preview-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(220, 38, 38, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.video-details-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.video-details-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.video-details-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.video-publish-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.video-details-body {
    padding: 1.5rem;
}

.video-description {
    color: #374151;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.video-meta-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-meta-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.meta-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.875rem;
}

.meta-value {
    color: #111827;
    font-size: 0.9375rem;
}

.meta-value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.meta-value a:hover {
    text-decoration: underline;
}

.video-join-cta {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
}

.cta-content p {
    font-size: 1.125rem;
    color: #374151;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-features span {
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive video preview */
@media (max-width: 1024px) {
    .video-player-container {
        max-width: 100%;
    }
    
    .video-player-wrapper,
    .video-details-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .video-page-title {
        font-size: 1.75rem;
    }
    
    .video-page-subtitle {
        font-size: 1rem;
    }
    
    .video-preview-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .video-details-header h2 {
        font-size: 1.25rem;
    }
    
    .video-join-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   MODELS PAGE STYLING (VIP-style)
   ============================================ */

.page-header-guest {
    text-align: center;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.page-title-guest {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.25rem 0 !important;
}

.search-results-info {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 0.25rem 0 !important;
}

.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(to bottom, #f9fafb, white);
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.alphabet-label {
    font-weight: 700;
    color: #111827;
    margin-right: 1rem;
    font-size: 1rem;
}

.alphabet-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: white;
    color: #374151;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.alphabet-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.2);
}

.alphabet-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.alphabet-link.clear {
    width: auto;
    padding: 0 1.5rem;
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.alphabet-link.clear:hover {
    background: var(--primary-color);
    color: white;
}

.stars-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.star-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.star-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.star-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.star-card-image {
    position: relative;
    padding-bottom: 150%;
    overflow: hidden;
    background: #f3f4f6;
}

.star-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.star-card:hover .star-card-image img {
    transform: scale(1.05);
}

.star-card-name {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #111827;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.star-card:hover .star-card-name {
    color: var(--primary-color);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results-icon {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.no-results h2 {
    font-size: 1.5rem;
    color: #111827;
    margin: 0 0 1rem 0;
}

.no-results p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .stars-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .stars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .alphabet-filter {
        padding: 1rem;
    }
    
    .alphabet-link {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .stars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-title-guest {
        font-size: 1.5rem;
    }
}

/* ============================================
   PHOTOS/VIDEOS PAGES
   ============================================ */

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.update-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.update-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.update-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.update-card-image {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #1f2937;
}

.update-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1f2937;
    transition: transform 0.3s ease;
}

.update-card:hover .update-card-image img {
    transform: scale(1.05);
}

.update-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.photo-badge {
    background: var(--primary-color);
}

.video-badge {
    background: var(--primary-color);
}

.update-card-content {
    padding: 1.25rem;
}

.update-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
    transition: color 0.2s ease;
}

.update-card:hover .update-card-title {
    color: var(--primary-color);
}

.update-card-date {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

.guest-limit-cta {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.1);
    margin-top: 2rem;
}

.guest-limit-cta .cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
}

.guest-limit-cta .cta-content p {
    font-size: 1.125rem;
    color: #374151;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Inline CTA for pages 1-2 */
.preview-cta {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #fbbf24;
}

.cta-content-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.cta-text p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .guest-limit-cta {
        padding: 2rem 1rem;
    }
    
    .guest-limit-cta .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content-inline {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-icon {
        font-size: 2.5rem;
    }
    
    /* Mobile Header Layout */
    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1rem 20px;
    }
    
    .header-left {
        flex: 1;
    }
    
    .site-title {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .site-tagline {
        font-size: 0.75rem;
    }
    
    /* Hide site switcher on mobile */
    .site-switcher {
        display: none !important;
    }
    
    .site-switcher-btn {
        display: none !important;
    }
    
    .site-switcher-dropdown {
        display: none !important;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex !important;
    }
    
    /* Mobile Navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        padding: 5rem 1.5rem 2rem;
        border-left: 1px solid #e5e7eb;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    /* Mobile overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Site switcher in mobile menu */
    .mobile-site-switcher {
        display: block;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 2px solid #e5e7eb;
    }
    
    .mobile-site-switcher-title {
        font-size: 0.875rem;
        font-weight: 700;
        color: #6b7280;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .mobile-site-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        max-height: 200px;
        overflow-y: auto;
    }
    
    .mobile-site-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        background: #f9fafb;
        border-radius: 8px;
        color: #374151;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }
    
    .mobile-site-link:hover {
        background: var(--primary-light);
        color: var(--primary-color);
    }
    
    .network-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .network-banner-text {
        text-align: center;
    }
    
    .network-banner-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .updates-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive model profile */
@media (max-width: 768px) {
    .model-name {
        font-size: 2rem;
    }
    
    .model-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .model-photo {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
    }
    
    .updates-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .model-cta-bottom {
        padding: 2rem 1rem;
    }
    
    .model-cta-bottom h2 {
        font-size: 1.5rem;
    }
    
    .model-cta-bottom p {
        font-size: 1rem;
    }
}

.card-content {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.5rem 0;
}

.card-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.75rem 0;
}

.card-description {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   GRID SYSTEM
   ============================================ */

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    margin-bottom: 3rem;
}


.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-light);
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: 16px;
    margin: 3rem 0;
    border: 2px solid var(--primary-light);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

.modern-footer {
    background: white;
    border-top: 3px solid var(--primary-color);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .col-md-3,
    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Prevent body scroll when mobile menu is open */
body.nav-open {
    overflow: hidden;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
