:root {
  --podcast-primary: #0199b2;
  --podcast-secondary: #177370;
  --podcast-light: #e8eef2;
  --podcast-gold: #d7af11;
  --podcast-yellow: #ffcf00;
  --podcast-white: #ffffff;
  --podcast-primary-light: rgba(1, 153, 178, 0.1);
  --podcast-secondary-light: rgba(23, 115, 112, 0.1);
  --podcast-gold-light: rgba(215, 175, 17, 0.1);
}

body {
  background:
    radial-gradient(circle at 0% 0%, var(--podcast-primary-light), transparent 45%),
    radial-gradient(circle at 100% 100%, var(--podcast-gold-light), transparent 50%),
    var(--podcast-light);
  min-height: 100vh;
  color: #1f2d3d;
}

.container {
  max-width: 760px;
}

h1, h2, h3, .hero-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--podcast-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}

.hero-title {
  color: var(--podcast-primary);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: inherit;
  font-weight: 700;
}

.brand-logo {
  max-height: 120px;
  width: auto;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 50, 70, 0.18);
}

.prize-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: min(360px, 70%);
  height: auto;
}

.prize-blurb {
  max-width: 520px;
  font-size: 1.05rem;
}

.deadline-line {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--podcast-secondary);
  line-height: 1.2;
}

.deadline-line strong {
  color: var(--podcast-primary);
  font-weight: 400;
}

.section-title {
  color: var(--podcast-secondary);
  font-size: 1.75rem;
}

.steps .step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.steps .step-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--podcast-white);
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(1, 153, 178, 0.15);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--podcast-primary);
  color: var(--podcast-white);
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
}

.steps h3 {
  color: var(--podcast-secondary);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.steps p {
  margin-bottom: 0.75rem;
  color: #475569;
}

.entry-card {
  border: none;
  border-radius: 18px;
  background: var(--podcast-white);
}

.form-control,
.form-control-lg {
  border-radius: 10px;
  border-color: var(--podcast-light);
}

.form-control:focus {
  border-color: var(--podcast-primary);
  box-shadow: 0 0 0 0.2rem var(--podcast-primary-light);
}

.btn-primary {
  background-color: var(--podcast-primary);
  border-color: var(--podcast-primary);
  font-weight: 600;
  border-radius: 10px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--podcast-secondary);
  border-color: var(--podcast-secondary);
}

.btn-outline-primary {
  color: var(--podcast-primary);
  border-color: var(--podcast-primary);
}

.btn-outline-primary:hover {
  background-color: var(--podcast-primary);
  border-color: var(--podcast-primary);
}

.upload-area {
  display: block;
  border: 2px dashed var(--podcast-light);
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background-color .15s;
  background: var(--podcast-white);
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--podcast-primary);
  background-color: var(--podcast-primary-light);
}

.upload-prompt i {
  color: var(--podcast-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.upload-preview img {
  max-width: 100%;
  max-height: 280px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.rules {
  background: var(--podcast-white);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(1, 153, 178, 0.15);
}

.rules summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--podcast-secondary);
}

.rules ul {
  color: #475569;
}

footer a {
  color: var(--podcast-secondary);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .steps .step-list li {
    grid-template-columns: 44px 1fr;
    gap: 0.875rem;
    padding: 1rem;
  }
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
