:root {
  --primary: #f26f21; /* Chaturbate-like orange */
  --primary-dark: #d95e1b;
  --secondary: #222222;
  --bg-color: #121212;
  --surface: #1e1e1e;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --border-color: #333333;
  --success: #28a745;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; margin-top: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.btn:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Header & Nav */
header {
  background-color: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: var(--text-primary);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links li a:hover {
  color: var(--primary);
}

.user-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: 0.3s;
}

/* Mobile Nav */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    padding: 20px;
    border-top: 1px solid var(--border-color);
    align-items: flex-start;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .user-actions {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
  }

  .user-actions .btn {
    width: 100%;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/hero-bg1.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: var(--surface);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  fill: var(--primary);
  margin-bottom: 20px;
}

/* Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.category-card {
  background-color: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.category-card:hover {
  border-color: var(--primary);
}

.category-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.category-card span {
  padding: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* Featured Models */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.model-card {
  background-color: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.model-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.model-info {
  padding: 15px;
}

.model-name {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-live {
  font-size: 0.8rem;
  background-color: var(--success);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
}

.model-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.8rem;
  background-color: var(--border-color);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-secondary);
}

/* Content Sections */
.content-section {
  margin-bottom: 60px;
}

.content-section h2 {
  border-left: 4px solid var(--primary);
  padding-left: 15px;
  margin-bottom: 25px;
}

.text-content p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.text-content ul, .text-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.text-content li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: var(--secondary);
  border-top: 1px solid var(--border-color);
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: #777;
  font-size: 0.9rem;
}

/* SEO text hidden visually but available for bots if needed, though we will display it nicely */
.seo-text {
  background-color: var(--surface);
  padding: 40px;
  border-radius: 8px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 60px 20px; }
  .container { padding: 30px 15px; }
}
