:root {
  --accent: #D33F4C;
  --accent-dark: #b32f3b;
  --ink: #16161a;
  --muted: #6c6c75;
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --line: rgba(13, 13, 15, 0.1);
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: "Anton", "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.accent { color: var(--accent); }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(211, 63, 76, 0.3);
}
.btn:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(211, 63, 76, 0.4); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { padding: 11px 22px; font-size: 14px; box-shadow: none; }
.btn-block { width: 100%; justify-content: center; margin-top: 6px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 44px) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 70px);
  background-image: url("assets/background-img.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(211, 63, 76, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.62) 38%, rgba(0,0,0,0.82) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero main */
.hero-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

/* Floating "Presented by" badge (fixed, left side) */
.presented-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 160px;
  padding: 18px 18px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  animation: floatIn 0.6s ease both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.pf-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}
.pf-logo { display: block; transition: transform 0.2s ease; }
.pf-logo:hover { transform: scale(1.06); }
.pf-logo img { height: 74px; width: auto; display: block; }
.pf-logo .pf-2l { height: 62px; }

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  width: 42px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cueBob 1.8s ease-in-out infinite;
}
.scroll-cue::before {
  content: "";
  width: 11px; height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -2px);
}
.scroll-cue:hover { border-color: var(--accent); }
@keyframes cueBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* Section dot navigation */
.dotnav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #9a9aa0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.dot::after {
  content: attr(data-label);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dot:hover { transform: scale(1.25); }
.dot:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.65);
}
.hero-copy h1 {
  font-size: clamp(46px, 7vw, 92px);
  letter-spacing: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.lead {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 24px 0 32px;
  max-width: 500px;
}
.hero-foot {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 18px;
  letter-spacing: 0.4px;
  font-weight: 500;
}
.hero-graphic img {
  width: 112%;
  max-width: 112%;
  margin-left: -6%;
  animation: floaty 6s ease-in-out infinite;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.55));
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Photo strip */
.photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.photo {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo:hover img { transform: scale(1.08); }

/* Prize section (ultra-simple teaser) */
.prize-section {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 50px);
  text-align: center;
}
.prize-head h2 {
  font-size: clamp(34px, 5.5vw, 64px);
  margin-bottom: 14px;
}
.prize-head .prize-when {
  font-family: "Roboto Slab", serif;
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}
.ribbon {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 14px;
}

/* Enter form section */
.enter {
  position: relative;
  padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 50px);
  background-image: url("assets/photo-section.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}
.enter-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 120% at 15% 30%, rgba(211, 63, 76, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(10,10,12,0.9), rgba(10,10,12,0.82));
}
.enter-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.enter-form-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* Grand Prize copy (beside the form) */
.enter-intro .ribbon { margin-bottom: 14px; }
.gp-sub {
  font-family: "Roboto Slab", serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 26px;
}
.gp-head {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}
.gp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}
.gp-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.5;
}
.gp-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.gp-total {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Roboto Slab", serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.enter-trust {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-top: 22px;
  letter-spacing: 0.4px;
}
.form-card {
  background: rgba(20, 20, 23, 0.72);
  backdrop-filter: blur(14px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: clamp(26px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #ff6b76);
}
.form-card .row { display: flex; gap: 14px; }
.form-card .phone-zip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 0.42fr);
  gap: 14px;
}
.form-card .row > input,
.form-card .row > .phone-field {
  flex: 1 1 0;
  min-width: 0;
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"] {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.form-card input::placeholder { color: rgba(255, 255, 255, 0.45); }
.form-card input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(211, 63, 76, 0.25);
}
.form-card input.invalid { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(211, 63, 76, 0.5); animation: shake 0.3s ease; }
.phone-field {
  display: grid;
  grid-template-columns: 27px auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 57px;
  margin-bottom: 14px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.phone-field:focus-within {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(211, 63, 76, 0.25);
}
.phone-field.invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(211, 63, 76, 0.5);
  animation: shake 0.3s ease;
}
.phone-field input[type="tel"] {
  display: block;
  width: 100%;
  min-width: 0;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
}
.phone-field input[type="tel"]:focus,
.phone-field input[type="tel"].invalid {
  border: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
}
.us-flag {
  position: relative;
  display: block;
  width: 27px;
  height: 18px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background:
    linear-gradient(
      to bottom,
      #b22234 0 7.69%,
      #fff 7.69% 15.38%,
      #b22234 15.38% 23.07%,
      #fff 23.07% 30.76%,
      #b22234 30.76% 38.45%,
      #fff 38.45% 46.14%,
      #b22234 46.14% 53.83%,
      #fff 53.83% 61.52%,
      #b22234 61.52% 69.21%,
      #fff 69.21% 76.9%,
      #b22234 76.9% 84.59%,
      #fff 84.59% 92.28%,
      #b22234 92.28% 100%
    );
  pointer-events: none;
}
.us-flag span {
  position: absolute;
  left: 0;
  top: 0;
  width: 11px;
  height: 10px;
  background: #3c3b6e;
}
.phone-prefix {
  color: #fff;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  cursor: pointer;
  font-size: 15px;
  user-select: none;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check .box {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  background: #d8d8d8;
  border-radius: 3px;
  position: relative;
  margin-top: 2px;
}
.check .box::after {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}
.check input:checked + .box { background: var(--accent); }
.check input:checked + .box::after { transform: rotate(45deg) scale(1); }

.terms-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.terms-link:hover { text-decoration: underline; }
.turnstile-box { min-height: 0; }
.turnstile-privacy {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
  margin: 14px 0 22px;
}
.turnstile-privacy a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-success { text-align: center; padding: 24px 6px; }
.form-success h3 { font-size: 34px; }
.form-success p { color: #ccc; margin-top: 8px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 34px clamp(20px, 5vw, 50px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.copyright { font-weight: 700; letter-spacing: 0.3px; margin-bottom: 14px; }
.disclaimer { color: #9a9aa0; font-size: 12px; line-height: 1.7; }
.footer-link { color: var(--accent); text-decoration: none; font-weight: 700; }
.footer-link:hover { text-decoration: underline; }

/* Legal / Terms page */
.legal-body { background: var(--bg-soft); }
.legal-header {
  background: #16161a;
  border-bottom: 3px solid var(--accent);
}
.legal-header-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-back {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.legal-back:hover { color: var(--accent); }
.legal-logos { display: flex; align-items: center; gap: 18px; }
.legal-logos img { height: 46px; width: auto; display: block; }
.legal-logos .legal-2l { height: 40px; }
.legal-main { padding: clamp(36px, 6vw, 64px) clamp(20px, 5vw, 40px) 60px; }
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.legal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.legal-title {
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.legal-intro {
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  border-radius: 8px;
  margin-bottom: 22px;
}
.legal-note {
  font-size: 14px;
  color: #6c6c75;
  background: #fff7e8;
  border: 1px solid #f1d9a8;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 30px;
}
.legal-note code {
  background: rgba(0,0,0,0.06);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
}
.legal-section { margin-bottom: 26px; }
.legal-section h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: none;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0;
  margin-bottom: 8px;
  color: var(--ink);
}
.legal-section p { color: #3c3c44; font-size: 15.5px; line-height: 1.75; }
.legal-section ul { margin: 8px 0 8px 20px; }
.legal-section li { color: #3c3c44; font-size: 15.5px; line-height: 1.7; margin-bottom: 6px; }
.legal-disclaimer-block p { color: #6c6c75; font-size: 13px; line-height: 1.7; }
.legal-updated { margin-top: 28px; color: #9a9aa0; font-size: 13px; font-style: italic; }
.legal-foot-links { margin-top: 4px; }
.legal-foot-links a { color: var(--accent); text-decoration: none; font-weight: 700; }
.legal-foot-links a:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .legal-header-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 860px) {
  .hero { min-height: auto; }
  .hero-main { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .hero-graphic { order: -1; max-width: 500px; margin: 0 auto; }
  .hero-graphic img { width: 100%; max-width: 100%; margin-left: 0; }
  .hero-copy .lead { margin-left: auto; margin-right: auto; }
  .hero-copy h1 { font-size: clamp(40px, 11vw, 64px); }
  .enter-inner { grid-template-columns: 1fr; gap: 36px; }
  .enter { background-attachment: scroll; }
  .gp-list { max-width: none; }
}
@media (max-width: 1280px) {
  .presented-float { display: none; }
}
@media (max-width: 760px) {
  .dotnav { display: none; }
  .scroll-cue { display: none; }
}
@media (max-width: 620px) {
  .photos { grid-template-columns: 1fr; }
  .photo { aspect-ratio: 16 / 10; }
  .form-card .row { flex-direction: column; gap: 0; }
  .form-card .phone-zip-row { grid-template-columns: 1fr; gap: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-graphic img { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ========================================
   ADMIN PORTAL STYLES
   ======================================== */

/* Login Page */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #16161a 0%, #2d2d35 100%);
  padding: 20px;
}
.login-container {
  width: 100%;
  max-width: 440px;
}
.login-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.login-header {
  text-align: center;
  margin-bottom: 32px;
}
.login-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.login-logo { height: 52px; width: auto; }
.login-logo-2l { height: 46px; width: auto; }
.login-title {
  font-size: 28px;
  margin-bottom: 6px;
}
.login-subtitle {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}
.login-form { margin-bottom: 24px; }
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.forgot-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.forgot-link:hover { text-decoration: underline; }
.login-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.login-footer p {
  color: var(--muted);
  font-size: 12px;
}

/* YouTube Subscription Section */
.youtube-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.youtube-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.youtube-inner {
  max-width: 700px;
  margin: 0 auto;
}
.youtube-heading {
  font-family: "Anton", "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.youtube-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  font-weight: 500;
}
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FF0000;
  color: #fff;
  padding: 16px 32px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}
.btn-youtube:hover {
  background: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .youtube-section {
    padding: 60px 20px;
  }
  .youtube-heading {
    font-size: 1.75rem;
  }
  .youtube-text {
    font-size: 1rem;
  }
  .btn-youtube {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
