body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

section {
  padding-block: var(--section-pad);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--color-text-primary);
  text-shadow: var(--shadow-text-heading);
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

p {
  text-shadow: var(--shadow-text-body);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 12px;
  text-shadow: var(--shadow-text-gold);
}

.section-title {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: 16px;
  text-shadow: var(--shadow-text-heading);
}

.section-subtitle {
  font-family: var(--font-subhead);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--color-text-secondary);
  font-weight: 300;
  max-width: 600px;
  text-shadow: var(--shadow-text-body);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

.gold-text {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-spring);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  text-shadow: var(--shadow-text-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: #000;
  transform: translateY(-3px);
  text-shadow: none;
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--color-text-primary);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin-inline: auto;
  margin-block: 16px;
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
  color: #000;
}

.badge-new {
  background: #1a472a;
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
}

.badge-sale {
  background: #4a1010;
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.3);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.star-rating {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  font-size: 0.85rem;
  text-shadow: var(--shadow-text-gold);
}

.page-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(180deg, #1a1005 0%, var(--color-bg) 100%);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  margin-bottom: 16px;
  color: var(--color-text-primary);
}

.page-hero p {
  font-family: var(--font-subhead);
  font-size: 1.2rem;
  color: var(--color-text-secondary);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  justify-content: center;
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb-sep {
  color: var(--color-text-muted);
}

/* YouTube Section */
.yt-section {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.yt-videos-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.yt-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.yt-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-video-label {
  padding: 14px 4px 0;
}

.yt-video-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 6px;
}

.yt-video-title {
  font-family: var(--font-subhead);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  line-height: 1.5;
  text-shadow: var(--shadow-text-body);
}

.yt-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.yt-subscribe-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.yt-subscribe-cta:hover {
  border-color: rgba(255,0,0,0.4);
  background: rgba(255,0,0,0.06);
}

.yt-subscribe-cta > svg:first-child {
  color: #ff0000;
  flex-shrink: 0;
}

.yt-sub-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-shadow: var(--shadow-text-body);
}

.yt-sub-handle {
  display: block;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .yt-videos-grid {
    grid-template-columns: 1fr;
  }
}
