/* ===== CSS Custom Properties from Figma ===== */
:root {
  --color-purple-bg: rgba(105, 44, 224, 1);
  --color-light-purple: rgba(210, 175, 255, 1);
  --color-cyan: rgba(36, 210, 229, 1);
  --color-pink-cta: rgba(242, 65, 112, 1);
  --color-white: #ffffff;
  --color-navy: rgba(25, 24, 98, 1);
  --color-lime: rgba(202, 246, 27, 1);
  --color-light-cyan: rgba(151, 240, 255, 1);
  --color-gray: rgba(144, 144, 144, 1);
  --font-montserrat: 'Montserrat', sans-serif;
  --font-bebas: 'Bebas Neue', cursive;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-montserrat); margin: 0; padding: 0; overflow-x: hidden; background-color: var(--color-white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.hero { display: flex; flex-direction: row; width: 100%; }

.hero-text-zone {
  background-color: var(--color-purple-bg);
  width: 38%;
  min-width: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 48px;
  min-height: 580px;
}

.hero-logo { display: flex; align-items: flex-start; }
.logo-header { width: 308px; height: auto; }
.hero-headline-container { display: flex; flex-direction: column; gap: 18px; width: 100%; }

.hero-headline {
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: clamp(120px, 9.5vw, 170px);
  line-height: clamp(96px, 7.6vw, 135px);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-light-purple);
  margin: 0;
}

.hero-subheadline {
  font-family: var(--font-bebas);
  font-weight: 700;
  font-size: clamp(44px, 3.5vw, 63px);
  line-height: 1.08;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  color: var(--color-light-purple);
  margin: 0;
  white-space: nowrap;
}

.cta-container { display: flex; flex-direction: row; align-items: center; gap: 24px; padding-top: 16px; }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; text-decoration: none; transition: opacity 0.3s ease; }
.cta-btn:hover { opacity: 0.85; }

.cta-btn-primary {
  background-color: var(--color-pink-cta);
  color: var(--color-white);
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 25px;
  text-transform: uppercase;
  padding: 20px 30px;
  border-radius: 9999px;
  border: none;
  letter-spacing: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.username-badge { display: flex; flex-direction: row; align-items: center; gap: 8px; flex-shrink: 0; }
.badge-icon { width: 59px; height: 29px; }
.badge-username { font-family: var(--font-bebas); font-weight: 400; font-size: 30px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--color-light-purple); white-space: nowrap; }

.hero-visual-zone { flex: 1; overflow: hidden; position: relative; }
.hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-section {
  background-color: var(--color-cyan);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 100px 80px;
  gap: 80px;
  width: 100%;
}

.video-bloc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1;
  max-width: 760px;
}

.video-info { display: flex; flex-direction: column; align-items: center; gap: 16px; width: fit-content; }
.video-username-row { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.jerky-icon { width: 41px; height: 21px; }
.video-username { font-family: var(--font-bebas); font-weight: 700; font-size: 28px; letter-spacing: 0; text-transform: uppercase; color: var(--color-white); }
.video-title-container { display: flex; align-items: center; justify-content: center; padding: 10px; }
.video-title { font-family: var(--font-bebas); font-weight: 700; font-size: 48px; letter-spacing: 0; text-transform: uppercase; color: var(--color-lime); white-space: nowrap; }
.over-video-link { display: block; width: 100%; border-radius: 20px; overflow: hidden; }
.over-video-img { width: 100%; height: auto; display: block; border-radius: 20px; }

.cta-btn-outline {
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 20px 30px;
  border-radius: 9999px;
  border: 2px solid var(--color-lime);
  background: transparent;
  letter-spacing: 0;
  white-space: nowrap;
}

.taste-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  flex: 1;
  max-width: 643px;
}

.taste-text-container { display: flex; align-items: center; justify-content: center; padding: 10px; }

.taste-text {
  font-family: var(--font-montserrat);
  font-weight: 900;
  font-size: clamp(90px, 7vw, 120px);
  line-height: clamp(80px, 6.2vw, 105px);
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-light-cyan);
}

.logo-taste { width: 374px; height: 65px; }

.footer {
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 20px;
  width: 100%;
}

.footer-top { display: flex; flex-direction: row; align-items: center; gap: 11px; padding-left: 30px; }
.rta-icon { width: auto; height: 29px; }
.footer-copyright { font-family: var(--font-montserrat); font-weight: 700; font-size: 14px; text-transform: uppercase; color: var(--color-navy); letter-spacing: 0; }
.footer-divider { border: none; border-top: 1px solid var(--color-navy); width: 100%; }
.footer-bottom { display: flex; flex-direction: row; align-items: center; gap: 20px; padding-left: 30px; flex-wrap: wrap; }
.footer-link { font-family: var(--font-montserrat); font-weight: 400; font-size: 16px; color: var(--color-navy); text-decoration: none; letter-spacing: 0; }
.footer-link:hover { text-decoration: underline; }
.footer-link-2257 { order: 1; }
.footer-link-privacy { order: 2; }
.footer-link-disclosure { order: 3; }
.footer-link-dmca { order: 4; }

@media (min-width: 1920px) {
  .hero-text-zone { width: 731px; min-width: 731px; }
  .hero-headline { font-size: 170px; line-height: 135px; }
  .hero-subheadline { font-size: 63px; line-height: 68px; }
  .video-section { padding: 120px 179px; gap: 168px; }
  .video-bloc { max-width: 760px; }
  .taste-section { max-width: 643px; }
  .taste-text { font-size: 120px; line-height: 105px; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column-reverse; }
  .hero-text-zone { width: 100%; min-width: unset; padding: 29px 28px; min-height: auto; gap: 16px; overflow: hidden; }
  .hero-headline { font-size: 85px; line-height: 70px; }
  .hero-subheadline { font-size: 37px; line-height: 40px; letter-spacing: 0.74px; white-space: nowrap; }
  .hero-headline-container { gap: 11px; }
  .hero-visual-zone { width: 100%; height: 263px; flex: none; }
  .hero-image { object-position: center top; }
  .logo-header { width: 200px; }
  .cta-container { gap: 16px; padding-top: 9px; }
  .cta-btn-primary { font-size: 15px; padding: 12px 18px; }
  .badge-icon { width: 35px; height: 17px; }
  .badge-username { font-size: 18px; }
  .video-section { flex-direction: column; padding: 40px 15px; gap: 30px; }
  .video-bloc { width: 100%; max-width: 400px; gap: 16px; }
  .video-username { font-size: 22px; }
  .video-title { font-size: 34px; }
  .taste-section { width: 100%; max-width: 400px; gap: 20px; }
  .taste-text { font-size: 55px; line-height: 50px; }
  .logo-taste { width: 230px; height: auto; }
  .cta-btn-outline { font-size: 16px; padding: 16px 24px; }
  .footer { padding: 10px 12px 16px; gap: 8px; }
  .footer-top { padding-left: 0; justify-content: center; flex-direction: column; gap: 6px; }
  .rta-icon { height: 26px; }
  .footer-copyright { font-size: 12px; text-align: center; }
  .footer-divider { border-top-color: var(--color-gray); }
  .footer-bottom { flex-direction: column; align-items: center; padding-left: 0; gap: 6px; text-align: center; }
  .footer-link { font-size: 12px; font-weight: 500; text-transform: uppercase; color: var(--color-gray); }
  .footer-link-2257 { order: 1; }
  .footer-link-disclosure { order: 2; }
  .footer-link-privacy { order: 3; }
  .footer-link-dmca { order: 4; }
}