:root {
  --bg: #111315;
  --bg-soft: #181b1f;
  --card: #1d2126;
  --card-2: #22272e;
  --text: #f5f7fa;
  --muted: #b6bec9;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c62828;
  --accent-hover: #a61f1f;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(198, 40, 40, 0.08), transparent 22%),
    linear-gradient(180deg, #101214 0%, #111315 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img,
video {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.hero {
  padding: 44px 0 22px;
}

.hero-card {
  background:
    radial-gradient(circle at top right, rgba(198, 40, 40, 0.16), transparent 22%),
    linear-gradient(180deg, #191c20 0%, #15181b 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 42px 28px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #ff7575;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-note {
  margin: 16px auto 0;
  color: #98a3af;
  font-size: 0.92rem;
  max-width: 720px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
}

.btn.primary:hover {
  background: var(--accent-hover);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(198, 40, 40, 0.55);
  color: #ffffff;
}

.btn.secondary:hover {
  background: rgba(198, 40, 40, 0.12);
  border-color: rgba(198, 40, 40, 0.95);
}

.section {
  padding: 26px 0 44px;
}

.section-tight {
  padding-top: 20px;
}

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

.section-header h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.section-header p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.video-card {
  background: linear-gradient(180deg, #191c20 0%, #15181b 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #0c0d0f;
  overflow: hidden;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000000;
}

.media-meta {
  padding: 14px 14px 16px;
}

.media-meta h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.media-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.photo-card {
  appearance: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #191c20 0%, #15181b 100%);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.photo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 40, 40, 0.4);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.cta-section {
  padding-top: 12px;
  padding-bottom: 52px;
}

.cta-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top center, rgba(198, 40, 40, 0.12), transparent 26%),
    linear-gradient(180deg, #191c20 0%, #15181b 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.cta-card p {
  margin: 0;
  color: var(--muted);
}

footer {
  padding: 0 0 32px;
}

footer p {
  margin: 0;
  text-align: center;
  color: #88929e;
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 24px;
  }

  .hero-card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .section {
    padding-bottom: 34px;
  }

  .lightbox {
    padding: 16px;
  }
}

.hero-buttons a {
  min-width: 220px;
  text-align: center;
}