:root {
  --background: hsl(240, 10%, 3.9%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(240, 10%, 3.9%);
  --card-foreground: hsl(0, 0%, 98%);
  --popover: hsl(240, 10%, 3.9%);
  --popover-foreground: hsl(0, 0%, 98%);
  --primary: hsl(346, 77%, 49.8%);
  --primary-foreground: hsl(355, 100%, 97.3%);
  --secondary: hsl(240, 3.7%, 15.9%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(240, 3.7%, 15.9%);
  --muted-foreground: hsl(240, 5%, 64.9%);
  --accent: hsl(240, 3.7%, 15.9%);
  --accent-foreground: hsl(0, 0%, 98%);
  --destructive: hsl(0, 62.8%, 30.6%);
  --destructive-foreground: hsl(0, 0%, 98%);
  --border: hsl(240, 3.7%, 15.9%);
  --input: hsl(240, 3.7%, 15.9%);
  --ring: hsl(346, 77%, 49.8%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

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

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

a:hover {
  filter: brightness(1.2);
  text-decoration: underline;
}

/* Header */
header {
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.breadcrumbs {
  font-size: 0.9em;
  color: var(--muted-foreground);
  margin-bottom: 15px;
}

.breadcrumbs a {
  color: var(--muted-foreground);
}

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

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--foreground);
}

h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--foreground);
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 0;
}

/* Profile Sections */
.company-profile, .actress-profile {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
}

.company-info p, .actress-info p {
  margin-bottom: 15px;
  color: var(--card-foreground);
}

/* Grids */
.actresses-list, .works-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.actress-item, .work-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px;
  height: 100%;
  transition: transform 0.2s;
}

.actress-item:hover, .work-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.actress-item p, .work-item p {
  font-size: 0.9em;
  color: var(--muted-foreground);
  margin: 5px 0;
}

.work-description {
  font-size: 0.8em !important;
  margin-top: 10px !important;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pager */
.pager {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pager a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--foreground);
  font-weight: 500;
}

.pager a:hover {
  background-color: var(--muted);
  text-decoration: none;
  border-color: var(--primary);
}

.navigation-links {
  margin-top: 30px;
  text-align: center;
}

/* Footer */
footer {
  margin-top: 60px;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.9em;
}

/* Blog specific */
.blog-post {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
}

.blog-meta {
  color: var(--muted-foreground);
  font-size: 0.9em;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.blog-content {
  font-size: 1.1em;
  line-height: 1.8;
}

.blog-content h2 {
  margin-top: 40px;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
