/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    display: flex;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-right: 2px solid rgba(255, 0, 102, 0.3);
    transition: left 0.3s;
    z-index: 2000;
    overflow-y: auto;
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    background: rgba(255, 0, 102, 0.1);
    border-bottom: 2px solid rgba(255, 0, 102, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    color: #ff0066;
    font-size: 20px;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.sidebar-open-btn {
    position: fixed;
    left: 20px;
    top: 20px;
    background: linear-gradient(135deg, #ff0066, #ff3385);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    z-index: 1500;
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
    transition: all 0.3s;
}

.sidebar-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.6);
}

.sidebar-open-btn.hidden {
    display: none;
}

.favorites-list {
    padding: 10px 0;
}

.loading-favorites {
    padding: 20px;
    text-align: center;
    color: #666;
}

.favorite-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.favorite-item:hover {
    background: rgba(255, 0, 102, 0.1);
    border-left-color: #ff0066;
}

.favorite-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff0066, #ff3385);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.favorite-info {
    flex: 1;
}

.favorite-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.favorite-status {
    font-size: 12px;
    color: #888;
}

.main-wrapper {
    flex: 1;
    margin-left: 0;
    transition: margin-left 0.3s;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-content {
    background: linear-gradient(135deg, #1a0a0f 0%, #2d1420 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 30px 80px rgba(255, 0, 102, 0.4);
    border: 2px solid rgba(255, 0, 102, 0.3);
}

.age-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0066, #ff3385, #ff0066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.age-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ccc;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-btn.enter {
    background: linear-gradient(135deg, #ff0066 0%, #ff3385 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.5);
}

.age-btn.enter:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.7);
}

.age-btn.exit {
    background: #333;
    color: white;
}

.age-btn.exit:hover {
    background: #555;
}

/* Hero Header */
.hero-header {
    background: linear-gradient(135deg, #1a0a0f 0%, #2d1420 50%, #1a0a0f 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ff0066;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 102, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-logo {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0066, #ff3385, #ff6699);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-description {
    font-size: 24px;
    color: #ff3385;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-cta {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff0066 0%, #ff3385 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.6);
}

.hero-btn.secondary {
    background: transparent;
    border: 2px solid #ff0066;
}

/* Navigation */
.nav-bar {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 102, 0.3);
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ff0066;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ff0066;
    color: #ff0066;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn:hover,
.nav-btn.active {
    background: #ff0066;
    color: white;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 60px 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.section {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ff0066;
}

.section-header p {
    font-size: 20px;
    color: #999;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: #1a1a1a;
    border: 2px solid #333;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff0066;
    border-color: #ff0066;
    transform: translateY(-2px);
}

/* Webcam Grid */
.cam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 30px;
}

.cam-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.cam-card:hover {
    transform: translateY(-10px);
    border-color: #ff0066;
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.4);
}

.cam-embed-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    overflow: hidden;
}

.cam-embed {
    width: 100%;
    height: 100%;
    border: none;
}

.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 0, 102, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.cam-info-extended {
    padding: 20px;
    background: #1a1a1a;
}

.cam-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cam-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.cam-location {
    font-size: 13px;
    color: #888;
}

.cam-age-badge {
    background: rgba(255, 0, 102, 0.2);
    color: #ff3385;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.room-subject {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 40px;
}

.cam-stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-icon {
    font-size: 18px;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #ff0066;
}

.stat-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.room-tags {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(255, 0, 102, 0.1);
    border-radius: 8px;
}

.watch-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff0066, #ff3385);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    text-transform: uppercase;
}

.watch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 102, 0.6);
}

.loading {
    text-align: center;
    padding: 60px;
    font-size: 20px;
    color: #666;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #ff0066;
    box-shadow: 0 15px 40px rgba(255, 0, 102, 0.4);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.product-desc {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-price {
    color: #ff0066;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff0066 0%, #ff3385 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 102, 0.5);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 80px;
}

.footer p {
    color: #666;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo { font-size: 48px; }
    .hero-tagline { font-size: 24px; }
    .hero-description { font-size: 18px; }
    .nav-bar { padding: 15px 20px; }
    .main-content { padding: 30px 20px; }
    .cam-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr; }
    .cam-stats-row { flex-wrap: wrap; }
}