:root {
    --primary: #0077B6;
    --secondary: #90E0EF;
    --bg-dark: #0a0a0c;
    --bg-card: #16161a;
    --text-light: #f8f9fa;
    --text-dim: #adb5bd;
    --accent: #ff4d6d;
    --spacing: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(10, 10, 12, 0.95);
    border-bottom: 1px solid #333;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-light);
}

.logo span {
    color: var(--primary);
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: #222;
    padding: 5px 15px;
    border-radius: 20px;
}

.search-bar input {
    background: transparent;
    border: none;
    color: white;
    padding-left: 10px;
    outline: none;
}

/* Hero */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&q=80&w=1200') center/cover;
    border-bottom: 3px solid var(--primary);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.camgirl-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    position: relative;
    display: flex;
    flex-direction: column;
}

.camgirl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #111;
    position: relative;
}

.platform-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--primary);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.online-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2ecc71;
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.offline-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-name {
    font-size: 1.2rem;
    font-weight: 700;
}

.card-rating {
    color: #f1c40f;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tag {
    background: #222;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Tag List */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn-tag {
    background: var(--bg-card);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    border: 1px solid #333;
    transition: all 0.3s;
}

.btn-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Country Grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.country-item {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s;
}

.country-item:hover {
    background: #222;
}

.flag {
    width: 30px;
    height: 20px;
    object-fit: cover;
}

/* SEO Accordion */
.seo-section {
    background: #000;
    margin-top: 50px;
}

.accordion-item {
    border: 1px solid #333;
    border-radius: 8px;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-dim);
}

/* Footer */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--primary);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #111;
    color: #444;
    font-size: 0.9rem;
}

/* Reveal on scroll */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .nav { display: none; }
}