:root {
  color-scheme: dark;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #e8fbff;
  background: #101820;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #0d1119;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 1.5rem 0;
}

.site-header h1 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.showreel,
.projects {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 20px;
  background: #141b24;
  box-shadow: 0 18px 50px rgba(0, 154, 154, 0.12);
}

.showreel__content {
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #5de4d7;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.showreel h2,
.projects h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
}

.showreel p,
.project-card p {
  margin: 1rem 0 0;
  color: #c6d8e0;
}

.showreel__video {
  margin-top: 2rem;
}

.showreel__video:hover,
.showreel__video video:hover,
.showreel__video iframe:hover {
  filter: none;
  opacity: 1;
}

.video-placeholder {
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0c7f8b 0%, #25d8cd 100%);
  color: #f0fcff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.projects {
  display: grid;
  gap: 1.5rem;
}

.project-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.project-card {
  padding: 1.25rem;
  border-radius: 16px;
  background: #121923;
}

.project-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

@media (min-width: 900px) {
  .showreel {
    display: block;
    gap: 0;
  }
}
