/* ============================================
   REXO Campaign - 1:1 Reference Match
   ============================================ */

/* Font Declarations */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2Yp2ywxg089UriI5-g4vlH9VoD8Cmcqbu0-K4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure {
  margin: 0;
}

/* CSS Variables - Exact from Reference */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #090909;
  --white: #fff;
  --green: #59d1a5;
  --text-white: #ffffffde;
  --text-muted: #999;
  --overlay-light: rgba(207, 207, 207, 0.04);
  --overlay-medium: rgba(207, 207, 207, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.02);
  --border-light: rgba(255, 255, 255, 0.1);
  --gold: #c9a84c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Featured Globally - Make all logos white/visible */
section[style*="padding: 35px 0 50px"] img {
  filter: brightness(0) invert(1);
  opacity: 0.85 !important;
}

section[style*="padding: 35px 0 50px"] a:hover img {
  opacity: 1 !important;
}

/* Body */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 800px;
}

/* Trustpilot Bar */
.trustpilot-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.trustpilot-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trustpilot-bar__label {
  font-weight: 600;
}

.trustpilot-stars-block {
  display: flex;
  gap: 2px;
}

.star-box {
  width: 16px;
  height: 16px;
  background: #00b67a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  border-radius: 2px;
}

.trustpilot-logo {
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--green {
  background: var(--green);
  color: #000;
}

.btn--green:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: #000;
}

.btn--facebook {
  background: #1877f2;
  color: white;
  border-radius: 50px;
  padding: 12px 24px;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 40px 0 60px;
  background: var(--bg-primary);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__portrait-large {
  position: relative;
  width: 400px;
  height: 500px;
  margin: 0 auto 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__portrait-image {
  width: 100%;
  height: 100%;
}

.hero__live-badge-overlay {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  z-index: 2;
}

.live-dot-pulse {
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes marquee-down {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes pulse-animation {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

.live-text-large {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}

.free-text-large {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
}

.hero__event-info-center {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(89, 209, 165, 0.1);
  border: 1px solid rgba(89, 209, 165, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}

.event-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero__headline-main {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 16px;
}

.highlight-gold {
  color: var(--gold);
}

.hero__subheadline-enhanced {
  font-size: 18px;
  color: var(--text-white);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Media Logos */
.media-logos--front {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.media-logos--front span {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Social Proof Strip */
.social-proof-strip--enhanced {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.social-proof-strip__item {
  text-align: center;
}

/* Event Cards */
.live-event {
  padding: 60px 0;
}

.live-event__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.live-event__subtitle {
  font-size: 16px;
  color: var(--text-white);
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.event-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
}

.event-card--reverse {
  direction: rtl;
}

.event-card--reverse > * {
  direction: ltr;
}

.event-card__image {
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.event-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.event-card__heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-card__heading .number {
  color: var(--gold);
  margin-right: 8px;
}

.event-card__text {
  font-size: 15px;
  color: var(--text-white);
  line-height: 1.6;
}

/* Reviews */
.reviews {
  padding: 60px 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-card__name {
  font-size: 14px;
  font-weight: 600;
}

.review-card__stars {
  color: #00b67a;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  gap: 2px;
}

.review-card__text {
  font-size: 14px;
  color: var(--text-white);
  line-height: 1.6;
}

/* Host Section */
.host {
  padding: 60px 0;
}

.host__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.host__card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.host__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
}

.host__name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.host__role {
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 16px;
}

.host__bio {
  font-size: 15px;
  color: var(--text-white);
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  padding: 60px 0;
  text-align: center;
}

.cta-banner__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.countdown__block {
  text-align: center;
}

.countdown__number {
  font-size: 32px;
  font-weight: 700;
}

.countdown__label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Ticker */
.ticker {
  background: var(--bg-secondary);
  padding: 12px 0;
  overflow: hidden;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* Facebook Reviews Section */
.fb-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.fb-reviews-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 40px;
  opacity: 0.3;
  z-index: 1;
}

.fb-review-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
}

.fb-review-col__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fb-review-col--up .fb-review-col__inner {
  animation: marquee-up 20s linear infinite;
}

.fb-review-col--down .fb-review-col__inner {
  animation: marquee-down 20s linear infinite;
}

.fb-review-col img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  /* Event Cards - Remove horizontal padding on mobile */
  div[style*="max-width: 1100px"] {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  /* Hero Section */
  .hero__portrait-large {
    width: 320px;
    height: 400px;
  }

  .hero__headline-main {
    font-size: 28px;
  }

  .live-text-large,
  .free-text-large {
    font-size: 24px;
  }

  .hero__event-info-center {
    font-size: 13px;
    padding: 6px 16px;
  }

  .hero__subheadline-enhanced {
    font-size: 16px;
    padding: 0 10px;
  }

  /* Event Cards */
  .event-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .event-card__image {
    max-height: 450px;
    min-height: 400px;
  }

  .event-card__content {
    padding: 24px 20px;
  }

  .event-card__heading {
    font-size: 20px;
  }

  .event-card__text {
    font-size: 14px;
  }

  /* Host Section - Mobile Layout with Image Overlay (matching event cards) */
  .host__card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .host__photo {
    width: 100%;
    max-height: 400px;
  }

  /* Host Profile - Mobile: Two separate sections */
  .host-profile-card {
    margin: 0 auto 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  /* Image section - hide on mobile */
  .host-profile-image {
    display: none !important;
  }

  /* Mobile-only square image between header and text */
  .host-mobile-image {
    display: block !important;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
  }

  /* Text section - separate card below */
  .host-profile-content {
    padding: 30px clamp(20px, 6vw, 44px) !important;
    background: #111 !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    margin-bottom: 40px !important;
  }

  .host-profile-content h2 {
    font-size: 24px !important;
  }

  .host__name {
    font-size: 24px;
  }

  .host__bio {
    font-size: 14px;
  }

  /* Section Titles */
  .section-title,
  .live-event__title,
  .host__title,
  .cta-banner__title {
    font-size: 26px;
  }

  .section {
    padding: 40px 0;
  }

  /* Buttons */
  .btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 32px;
    font-size: 15px;
  }

  /* Container */
  .container {
    padding: 0 16px;
  }

  /* Media Logos */
  .media-logos--front {
    gap: 20px;
  }

  .media-logos--front span {
    font-size: 16px;
  }

  /* Social Proof */
  .social-proof-strip--enhanced {
    gap: 24px;
    flex-direction: column;
  }

  /* Reviews */
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card {
    padding: 16px;
  }

  /* CTA Banner */
  .cta-banner__title {
    font-size: 24px;
  }

  /* Countdown */
  .countdown {
    gap: 12px;
  }

  .countdown__number {
    font-size: 24px;
  }

  .countdown__label {
    font-size: 11px;
  }

  /* Trustpilot Bar */
  .trustpilot-bar {
    font-size: 12px;
    padding: 8px 0;
  }

  .trustpilot-bar__inner {
    gap: 6px;
  }

  .star-box {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  /* Footer */
  .footer {
    padding: 30px 0;
    font-size: 13px;
  }
}

/* Mobile Specific Improvements - Based on Original Design */
@media (max-width: 809.98px) {
  /* Global padding adjustments for all sections */
  section > div[style*="padding: 0 50px"] {
    padding: 0 20px !important;
  }

  section > div[style*="max-width: 1200px"],
  section > div[style*="max-width: 1100px"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Hero Section - Mobile optimizations */
  .hero section > div {
    padding: 0 20px !important;
  }

  /* Featured Globally Section */
  section[style*="padding: 35px 0 50px"] {
    padding: 30px 0 40px !important;
  }

  /* Media Logos Grid - Better mobile spacing */
  div[style*="display: flex; justify-content: center; gap: 30px"] {
    gap: 20px !important;
    padding: 0 10px;
  }

  /* Logo Ticker - Better mobile mask */
  div[style*="animation: marquee 15s linear infinite"] {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%) !important;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%) !important;
  }

  /* Testimonial Bar - Stack vertically on mobile */
  .testimonial-bar {
    height: auto !important;
    flex-direction: column !important;
    padding: 20px 15px !important;
    gap: 15px !important;
    min-height: unset !important;
  }

  .testimonial-bar > div:first-child {
    width: 100% !important;
  }

  .testimonial-bar > div:nth-child(2) {
    display: none !important; /* Hide divider on mobile */
  }

  .testimonial-bar > div:last-child {
    width: 100% !important;
    min-width: unset !important;
    flex-direction: row !important;
    justify-content: center !important;
    padding: 15px 0 0 !important;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  /* Live Event Section - Mobile padding */
  .live-event {
    padding: 30px 0 !important;
  }

  .live-event .container {
    padding: 0 20px !important;
  }

  /* Event Cards - Mobile stacked layout (image on top, text below) */
  .event-card-1,
  .event-card-2,
  .event-card-3 {
    margin-bottom: 40px !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  /* Event card images - full width, natural height */
  .event-card-1 > div[style*="position: relative"],
  .event-card-2 > div[style*="position: relative"],
  .event-card-3 > div[style*="position: relative"] {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 750px !important;
    max-height: 750px !important;
    padding: 0 !important;
    order: 1 !important;
    overflow: hidden !important;
  }

  /* Add fade gradient at bottom of event card images */
  .event-card-1 > div[style*="position: relative"]::after,
  .event-card-2 > div[style*="position: relative"]::after,
  .event-card-3 > div[style*="position: relative"]::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 200px !important;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,1) 100%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  /* Event card images should fill container */
  .event-card-1 > div[style*="position: relative"] img,
  .event-card-2 > div[style*="position: relative"] img,
  .event-card-3 > div[style*="position: relative"] img {
    width: 100% !important;
    height: 100% !important;
    min-height: 750px !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* Content below image */
  .event-card-1 > div[style*="padding"],
  .event-card-2 > div[style*="padding"],
  .event-card-3 > div[style*="padding"] {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 1 !important;
    padding: 24px 20px !important;
    background: transparent !important;
    order: 2 !important;
  }

  /* Host Profile - already handled in 768px query */

  /* Portfolio Grid - Stack videos and images on mobile */
  .meet-your-host-section div[style*="display: grid; grid-template-columns: 1fr 1fr"][style*="gap: 20px"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
  }

  /* Facebook Reviews Background - Show only 2 columns on mobile */
  .fb-reviews-bg {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    padding: 0 20px !important;
    opacity: 0.25 !important;
  }

  /* Hide columns 3, 4, 5 on mobile */
  .fb-reviews-bg .fb-review-col:nth-child(n+3) {
    display: none !important;
  }

  /* Review Marquees - Stack on mobile */
  .fb-content > div[style*="display: grid; grid-template-columns: 1fr 1fr"]:not([style*="max-width: 800px"]) {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .fb-content > div[style*="display: grid; grid-template-columns: 1fr 1fr"]:not([style*="max-width: 800px"]) > div {
    height: 400px !important;
  }

  /* Featured Reviews - Stack on mobile */
  .fb-content > div[style*="max-width: 800px"][style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    padding: 0 20px;
  }

  /* Bonus section - Better spacing on mobile */
  .fb-content > div[style*="text-align: center"]:first-child {
    padding: 0 20px;
  }

  /* Sticky Footer - Center countdown on mobile */
  .sticky-footer > div {
    justify-content: center !important;
    padding: 16px 20px !important;
  }

  .sticky-footer button {
    display: none !important;
  }

  /* Video iframes in portfolio */
  .meet-your-host-section iframe[width="100%"][height="300"] {
    height: 250px !important;
  }

  /* Image containers in portfolio */
  .meet-your-host-section div[style*="height: 310px"] {
    height: 280px !important;
  }

  /* Featured Articles Section - Mobile */
  div[style*="max-width: 1100px; margin: 80px auto"] {
    margin: 50px auto !important;
    padding: 25px 15px !important;
  }

  /* Article Cards in Ticker - Scale down for mobile */
  div[style*="flex-shrink: 0; width: 316px; height: 267px"] {
    width: 280px !important;
    height: auto !important;
    min-height: 240px;
    padding: 15px 10px !important;
  }

  div[style*="width: 286px; height: 130px"] {
    width: 100% !important;
    max-width: 260px;
    height: 120px !important;
    margin: 0 auto;
  }

  /* CTA Buttons - Mobile friendly */
  button[class*="hero-cta-btn"],
  button[class*="btn"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 30px !important;
  }

  /* Typography adjustments */
  h1[style*="font-size: 30px"] {
    font-size: 24px !important;
    line-height: 1.2em !important;
  }

  h1[style*="font-size: 35px"] {
    font-size: 26px !important;
  }

  /* Section spacing improvements */
  section[style*="padding: 60px 0"],
  section[style*="padding: 35px 0"] {
    padding: 30px 0 !important;
  }

  /* Fix text that wraps poorly on mobile */
  p[style*="max-width: 700px"],
  p[style*="max-width: 950px"] {
    max-width: 100% !important;
    padding: 0 10px !important;
  }
}

/* Extra Small Devices */
@media (max-width: 380px) {
  .hero__portrait-large {
    width: 280px;
    height: 360px;
  }

  .hero__headline-main {
    font-size: 24px;
  }

  .live-text-large,
  .free-text-large {
    font-size: 20px;
  }

  .section-title,
  .live-event__title,
  .host__title {
    font-size: 22px;
  }

  .btn {
    max-width: 280px;
    padding: 14px 24px;
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }
}
