:root {
  --primary: #FF4A6A;
  --primary-hover: #E03E5C;
  --bg: #FDF9F9;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --muted: #757575;
  --border: #EAEAEA;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 1.25rem;
}
.brand img { height: 40px; }
nav { display: flex; gap: 24px; }
nav a { font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
nav a:hover { color: var(--primary); }

/* Search Bar */
.search-bar {
  background: #F5F5F5;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-inner input {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.9rem;
}
.search-inner button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: #000;
  color: white;
  overflow: hidden;
}
.hero img.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero h1 { font-size: 3rem; margin: 0 0 16px; line-height: 1.2; }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; }
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.2s;
}
.btn:hover { background: var(--primary-hover); }

/* Section Titles */
section { padding: 60px 0; }
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.section-title span { color: var(--primary); }

/* Video Cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s;
  position: relative;
  cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #EAEAEA;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px; height: 50px;
  background: rgba(255,74,106,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.2s;
}
.play-btn::after {
  content: "";
  border-left: 14px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.video-card:hover .play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.video-info { padding: 16px; }
.video-info h3 { margin: 0 0 8px; font-size: 1.1rem; }
.video-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--muted); }

/* FAQ & Text Blocks */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  margin-bottom: 16px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.faq-item h4 { margin: 0 0 8px; color: var(--primary); }
.faq-item p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* Footer */
footer {
  background: #111;
  color: #CCC;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h2 { color: white; margin: 0 0 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 400px; }
.footer-links h3 { color: white; margin: 0 0 16px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  nav { display: none; } /* Mobile nav hidden for simplicity in this pure static demo */
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
