
:root{
  --bg:#11100e;
  --bg-2:#171411;
  --panel:#1d1915;
  --text:#f6f0e6;
  --muted:#d4c8b7;
  --paper-text:#1e1813;
  --accent:#f1d273;
  --line:rgba(255,255,255,.09);
  --shadow:0 24px 70px rgba(0,0,0,.45);
  --radius:26px;
  --container:min(1180px, calc(100vw - 32px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.04), transparent 30%),
    linear-gradient(180deg, #1a1714 0%, #100f0d 100%);
}
body.modal-open{overflow:hidden}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}

.site-shell{
  min-height:100vh;
  position:relative;
}
.site-shell::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.08;
  mix-blend-mode:screen;
}

.hero,
.recipes-section{
  width:var(--container);
  margin:0 auto;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 0 14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-logo{
  width:68px;
  height:68px;
  object-fit:contain;
  border-radius:50%;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}
.brand-name{
  font-size:1.6rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.brand-note{
  color:var(--muted);
  font-size:.92rem;
}
.topbar-links{
  display:flex;
  align-items:center;
  gap:10px;
}
.top-link{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  font-weight:700;
  color:#ebe2d4;
}

.hero-stage{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:26px;
  padding:18px 0 54px;
  align-items:stretch;
}

.hero-left{
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 34px;
    padding: 44px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .38)), url(assets/textures/dark-texture3.png) center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
    isolation: isolate;
    background-size: 120%;
}
.hero-left::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,193,94,.18), transparent 22%),
    radial-gradient(circle at 78% 15%, rgba(255,255,255,.09), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.18));
  z-index:-1;
}
.hero-kicker{
  margin:0 0 16px;
  color:var(--accent);
  font-weight:800;
  letter-spacing:.18em;
  font-size:.78rem;
}
.hero-title{
  margin:0;
  font-size:clamp(3.4rem, 9vw, 7rem);
  line-height:.9;
  text-transform:uppercase;
  letter-spacing:-.05em;
}
.hero-lead{
  max-width:30rem;
  margin:18px 0 28px;
  color:#efe6da;
  font-size:1.08rem;
  line-height:1.65;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.hero-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.01em;
  transition:transform .2s ease, opacity .2s ease;
}
.hero-button:hover{transform:translateY(-1px)}
.hero-button--solid{
  color:#16110d;
  background:var(--accent);
}

.hero-right{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:24px;
}
.hero-paper{
  width:100%;
  margin-left:0;
  color:var(--paper-text);
  padding:30px 26px 34px;
  border-radius:22px;
  background:linear-gradient(rgba(255,255,255,.14), rgba(255,255,255,.03)), url("assets/textures/beige_texture_cropped.png") center/cover no-repeat;
  box-shadow:var(--shadow);
  transform:rotate(-1.5deg);
  background-position-x:-80px;
  background-size:200%;
  margin-top: -30px;
}
.hero-paper__script{
  display:block;
  margin-bottom:10px;
  font-family:"Caveat", cursive;
  font-size:2.2rem;
  line-height:1;
}
.hero-paper h2{
  margin:0 0 10px;
  font-size:2rem;
  line-height:1.05;
}
.hero-paper p{
  margin:0;
  line-height:1.65;
  font-weight:600;
}

.recipes-section{
  padding:8px 0 72px;
}
.section-head{
  margin-bottom:22px;
}
.section-script{
  margin:0 0 6px;
  font-family:"Caveat", cursive;
  font-size:2rem;
  color:var(--accent);
}
.section-head h2{
  margin:0;
  font-size:clamp(2rem, 4vw, 3rem);
  letter-spacing:-.04em;
  text-transform:uppercase;
}

.recipes-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}
.recipe-card{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  min-height:430px;
  border:1px solid rgba(255,255,255,.08);
  background:#191511;
  box-shadow:var(--shadow);
}
.recipe-card__image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.recipe-card__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.86) 100%);
}
.recipe-card__content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:24px;
}
.recipe-card__title{
  margin:0 0 8px;
  font-size:1.9rem;
  line-height:1;
  letter-spacing:-.04em;
  text-transform:uppercase;
}
.recipe-card__subtitle{
  margin:0 0 16px;
  max-width:32ch;
  color:#eadfce;
  line-height:1.55;
}
.recipe-card__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 16px;
  border:none;
  border-radius:999px;
  background:var(--accent);
  color:#17120f;
  font-weight:800;
  cursor:pointer;
  transition:transform .2s ease, opacity .2s ease;
}
.recipe-card__button:hover{transform:translateY(-1px)}

.recipe-modal{
  position:fixed;
  inset:0;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .2s ease, visibility .2s ease;
  z-index:40;
}
.recipe-modal.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.recipe-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(4px);
}
.recipe-modal__dialog{
  position:relative;
  width:min(1240px, calc(100vw - 24px));
  max-height:calc(100vh - 24px);
  margin:12px auto;
  background:#100f0e;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.recipe-modal__close{
  position:absolute;
  right:14px;
  top:14px;
  z-index:4;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.38);
  color:#fff;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
}
.recipe-modal__body{
  max-height:calc(100vh - 24px);
  overflow:hidden;
}

/* injected recipe view */
.recipe-view{
  display:grid;
  grid-template-columns:minmax(320px, 40%) minmax(0, 1fr);
  height:min(780px, calc(100vh - 24px));
}

.recipe-view__visual{
  position:relative;
  height:100%;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22)),
    url("assets/textures/texture_clean.png") center/cover no-repeat;
}

.recipe-view__visual img{
  width:120%;
  height:120%;
  object-fit:cover;
  object-position:left;
}

.recipe-view__content{
  position:relative;
  height:100%;
  overflow-y:auto;
  overflow-x:hidden;
  padding:52px 42px 42px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.04), transparent 28%),
    #13110f;

  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.18) transparent;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    black 24px,
    black calc(100% - 24px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    black 24px,
    black calc(100% - 24px),
    transparent 100%
  );
}
.recipe-view__title{
  margin:0 0 20px;
  font-size:clamp(2.2rem,4vw,4rem);
  line-height:.95;
  letter-spacing:-.04em;
  text-transform:uppercase;
}
.ingredients-paper{
  color:#241d17;
  background:
    linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,.05)),
    url("assets/textures/beige_texture_cropped.png") center/cover no-repeat;
  border-radius:18px;
  padding:28px 26px;
  box-shadow:0 16px 40px rgba(0,0,0,.25);
  margin-bottom:24px;
  background-size: 150%;
}
.ingredients-paper__kicker{
  display:block;
  margin-bottom:12px;
  font-family:"Caveat", cursive;
  font-size:2.15rem;
  line-height:1;
}
.ingredients-paper__grid{
  display:grid;
  gap:18px;
}
.ingredients-paper h3,.recipe-steps h3{
  margin:0 0 10px;
  font-size:1.35rem;
  text-transform:uppercase;
  letter-spacing:-.02em;
}
.ingredients-paper ul{
  list-style:none;
  padding:0;
  margin:0;
}
.ingredients-paper li{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:5px 0;
  border-bottom:1px dashed rgba(0,0,0,.12);
}
.ingredients-paper li span:last-child{
  font-weight:700;
}
.recipe-steps{
  display:grid;
  gap:22px;
}
.recipe-steps section{
  padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.recipe-steps section:last-child{
  border-bottom:none;
  padding-bottom:0;
}
.recipe-steps ol,.recipe-steps ul{
  margin:0;
  padding-left:22px;
  color:#e9e2d7;
  line-height:1.62;
}
.recipe-steps li+li{
  margin-top:10px;
}
.recipe-note{
  color:var(--muted);
  font-style:italic;
  margin-top:14px;
  line-height:1.55;
}
.loading,.error{
  padding:42px;
  color:#fff;
}

@media (max-width: 980px){
  .hero-stage,
  .recipes-grid,
  .recipe-view{
    grid-template-columns:1fr;
  }
  .hero-left{
    min-height:420px;
  }
  .hero-right{
    align-items:flex-start;
  }
  .hero-paper{
    width:100%;
    max-width:none;
    transform:none;
  }
  .recipe-view__visual{
    min-height:340px;
  }
}
@media (max-width: 640px){
  .topbar{
    align-items:flex-start;
    flex-direction:column;
  }
  .topbar-links{
    flex-wrap:wrap;
  }
  .hero-left{
    padding:28px;
    min-height:360px;
  }
  .recipe-card{
    min-height:360px;
  }
  .recipe-view__content{
    padding:44px 20px 24px;
  }
  .ingredients-paper{
    padding:22px 18px;
  }
}


.hero-button--ghost{
  color:var(--text);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}
.highlight-strip{
  width:var(--container);
  margin:0 auto 18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.highlight-card{
  border-radius:24px;
  padding:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), #171411;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.highlight-card h3{
  margin:8px 0 8px;
  font-size:1.35rem;
}
.highlight-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.highlight-label,
.social-card__tag{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(241,210,115,.12);
  color:var(--accent);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
}
.info-block,
.info-grid-two,
.social-section,
.support-section{
  width:var(--container);
  margin:0 auto;
}
.info-block{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  padding:18px 0 30px;
}
.info-block__copy,
.status-panel,
.dark-panel{
  border-radius:28px;
  padding:30px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.info-block__copy,
.dark-panel,
.status-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), #161310;
}
.info-block__copy h2,
.social-section h2,
.support-section h2{
  margin:0 0 12px;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1;
  letter-spacing:-.04em;
  text-transform:uppercase;
}
.info-block__copy p,
.status-panel p,
.dark-panel p,
.paper-panel p,
.support-card p{
  color:var(--muted);
  line-height:1.65;
}
.paper-panel p{
    color: var(--paper-text);
}
.action-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.status-chip{
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  color:#17120f;
  background:var(--accent);
  font-weight:800;
  font-size:.8rem;
}
.status-panel h3,
.paper-panel h3,
.dark-panel h3,
.support-card h3{
  margin:12px 0 10px;
  font-size:1.5rem;
  line-height:1.05;
}
.info-grid-two{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
  padding:12px 0 28px;
}
.paper-panel{
  color:var(--paper-text);
  border-radius:24px;
  padding:28px;
  background:
    linear-gradient(rgba(255,255,255,.14), rgba(255,255,255,.03)),
    url("assets/textures/beige_texture_cropped.png") center/cover no-repeat;
  box-shadow:var(--shadow);
      background-size: 110%;
}
.dark-panel{
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    url("assets/textures/texture_clean.png") center/cover no-repeat;
        background-size: 120%;
    background-position-y: 0px;
}
.text-link{
  display:inline-block;
  margin-top:8px;
  color:inherit;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:4px;
}
.social-section{
  padding:12px 0 30px;
}
.social-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.social-card{
  min-height:220px;
  border-radius:24px;
  padding:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), #171411;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  transition:transform .2s ease, border-color .2s ease;
}
.social-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.18);
}
.social-card strong{
  display:block;
  margin:14px 0 10px;
  font-size:1.2rem;
}
.social-card p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.support-section{
  padding:10px 0 80px;
}
.support-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.support-card{
  border-radius:24px;
  padding:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), #171411;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
}
.support-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.live-panel {
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  color: #f5f1e8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
   width:100%;
}

.live-panel__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d8b65c;
  font-weight: 700;
}

.live-platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5f5f5f;
}

.live-badge.is-live .live-dot {
  background: #2dff33;
  box-shadow: 0 0 0 0 #2dff33;
  animation: pulseLive 1.5s infinite;
}

.live-badge.is-live {
    border-color: rgb(92 255 45 / 40%);
    background: rgb(53 255 45 / 8%);
}

.live-message {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(255,45,45,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255,45,45,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,45,0); }
}

.sponsors-section{
  width:var(--container);
  margin:0 auto;
  padding:20px 0 80px;
}

.sponsors-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
}

/* Card base */
.sponsor-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:32px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    #161310;
  box-shadow:var(--shadow);
  transition:transform .2s ease, border-color .2s ease;
}

.sponsor-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.18);
}

/* THOT grande */
.sponsor-card--main img{
  max-width:220px;
  filter:brightness(1.1);
}

.sponsor-name{
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--muted);
}

/* Duo */
.sponsor-duo{
  display:flex;
  flex-direction:column;
  gap:24px;
  width:100%;
}

.sponsor-mini{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.sponsor-mini img{
  height:46px;
  object-fit:contain;
}

.sponsor-mini span{
  font-weight:700;
  color:#efe6da;
}
.sponsor-card--mini{
  padding:0;
}

.sponsor-mini--stack{
  width:100%;
  min-height:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:24px;
}

.sponsor-mini--stack img{
  max-height:64px;
  width:auto;
  object-fit:contain;
}

.sponsor-mini--stack span{
  font-weight:800;
  color:#efe6da;
  text-align:center;
}
@media (max-width: 900px){
  .sponsors-grid{
    grid-template-columns:1fr;
  }
}
.recipe-view__content::-webkit-scrollbar{
  width:10px;
}

.recipe-view__content::-webkit-scrollbar-track{
  background:transparent;
}

.recipe-view__content::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.16);
  border-radius:999px;
  border:2px solid transparent;
  background-clip:padding-box;
}

.recipe-view__content::-webkit-scrollbar-thumb:hover{
  background:rgba(255,255,255,.28);
  border:2px solid transparent;
  background-clip:padding-box;
}
.live-embed-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.stream-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stream-tab {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #f5eadf;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  background: #17130f;
  color: #f1d26a;
  border-color: #17130f;
}

.stream-tab:hover {
  background: #f1d26a;
  color: #17130f;
  border-color: #f1d26a;
}

.stream-tab.is-active {
  background: #f1d26a;
  color: #17130f;
  border-color: #f1d26a;
}

.stream-embed {
  position: relative;
  width: 100%;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
}

.stream-placeholder {
  padding: 24px;
}

.stream-placeholder h3 {
  margin: 0 0 12px;
}

.stream-placeholder p {
  margin: 0;
  line-height: 1.6;
}

.stream-frame {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  background: #000;
}

@media (max-width: 720px) {
  .stream-frame {
    height: 220px;
  }
}
@media (max-width: 1100px){
  .highlight-strip,
  .social-grid,
  .support-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 980px){
  .info-block,
  .info-grid-two{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .highlight-strip,
  .social-grid,
  .support-grid{
    grid-template-columns:1fr;
  }
}
.recipes-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.recipe-card.recipe-card--featured {
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.recipe-card.recipe-card--featured .recipe-card__image {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.recipe-card.recipe-card--featured .recipe-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  z-index: 2;
}

.recipe-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f0d06b;
  color: #16120f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.recipes-carousel-block {
  position: relative;
}

.recipes-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.recipes-subtitle {
  margin: 0;
  color: #f5efe7;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.recipes-carousel-nav {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.16);
}

.recipes-carousel-viewport {
  overflow: hidden;
}

.recipes-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.recipes-carousel-track::-webkit-scrollbar {
  display: none;
}

.recipe-card.recipe-card--compact {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.recipe-card.recipe-card--compact .recipe-card__image {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: left;
}

.recipe-card.recipe-card--compact .recipe-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  z-index: 2;
}

.recipe-card.recipe-card--compact .recipe-card__title {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  margin-bottom: 8px;
}

.recipe-card.recipe-card--compact .recipe-card__subtitle {
  font-size: 1rem;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .recipes-featured {
    grid-template-columns: 1fr;
  }

  .recipe-card.recipe-card--featured,
  .recipe-card.recipe-card--featured .recipe-card__image {
    min-height: 360px;
  }

  .recipes-carousel-head {
    align-items: start;
    flex-direction: column;
  }
}

/* versión dentro de la card beige */
.live-embed-panel--hero {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.live-embed-panel--hero .status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ecd06c;
  color: #111;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.live-embed-panel--hero .stream-tabs {
  margin-bottom: 16px;
}

.live-embed-panel--hero .stream-tab {
  background: rgba(20, 18, 16, 0.82);
  color: #f5efe2;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.live-embed-panel--hero .stream-tab.is-active {
  background: #ecd06c;
  color: #111;
  border-color: transparent;
}

.live-embed-panel--hero .stream-embed {
  background: transparent;
  border: 0;
  padding: 0;
  min-height: auto;
}

.live-embed-panel--hero .stream-placeholder {
  background: rgba(16, 14, 12, 0.92);
  color: #f5efe2;
  border-radius: 28px;
  padding: 28px 24px;
  min-height: 240px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.live-embed-panel--hero .stream-placeholder h3 {
  margin: 0 0 12px;
  color: #ffffff;
}

.live-embed-panel--hero .stream-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

/* iframe cuando esté activo arriba */
.live-embed-panel--hero iframe,
.live-embed-panel--hero .stream-embed iframe {
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  border: 0;
  border-radius: 24px;
  background: #111;
  display: block;
}

.live-embed-panel--hero {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.live-embed-panel--hero .stream-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.live-embed-panel--hero .stream-tab {
  background: rgba(20, 18, 16, 0.82);
  color: #f5efe2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.live-embed-panel--hero .stream-tab.is-active {
  background: #ecd06c;
  color: #111;
  border-color: transparent;
}

.live-embed-panel--hero .stream-embed {
  background: transparent;
  border: 0;
  padding: 0;
  min-height: auto;
}

.live-embed-panel--hero .stream-placeholder {
  background: rgba(16, 14, 12, 0.92);
  color: #f5efe2;
  border-radius: 28px;
  padding: 28px 24px;
  min-height: 240px;
}

.live-embed-panel--hero iframe,
.live-embed-panel--hero .twitch-embed-target {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  display: block;
  background: #111;
}
.hero-paper__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.hero-paper__top .hero-paper__script {
  margin: 0;
  flex: 1;
}

.hero-paper__top .stream-tabs {
  display: flex;
  gap: 10px;
  margin: 0;
  flex-shrink: 0;
}

.live-embed-panel--hero {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.live-embed-panel--hero .stream-embed {
  background: transparent;
  border: 0;
  padding: 0;
  min-height: auto;
}

.live-embed-panel--hero .stream-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 24px;
  display: block;
  background: #111;
}

@media (max-width: 720px) {
  .hero-paper__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-paper__top .stream-tabs {
    width: 100%;
    justify-content: flex-start;
  }
}
.stream-status-text {
  margin-left: 8px;
  font-size: 0.8em;
  font-weight: 600;
  opacity: 0.8;
}

.stream-status-text.offline {
  color: #ff6b6b;
}

.stream-status-text.live {
  color: #4ade80;
}
.social-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.social-card__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.social-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.recipe-view__visual img.recipe-card__image--type-b {
}
.fix_type_b{
height: 220% !important;
    object-position: left center !important;
}
.reels-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 184, 77, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(23, 18, 16, 0.98), rgba(11, 10, 10, 0.98));
  border: 1px solid rgba(247, 210, 138, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.reels-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reels-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.reels-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
}

.reels-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 360px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(8, 8, 9, 0.92);
  border: 1px solid rgba(255,255,255,0.06);
}

.reels-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 122, 89, 0.24), transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(255, 200, 110, 0.18), transparent 30%),
    linear-gradient(135deg, #181312 0%, #0d0d0f 100%);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.reels-card__glow {
  position: absolute;
  inset: auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247, 210, 138, 0.18), transparent 65%);
  filter: blur(10px);
}

.reels-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f7d28a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reels-card__play {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(247, 210, 138, 0.18);
  color: #f7d28a;
  font-size: 2rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.reels-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.3rem 1.3rem;
}

.reels-card__title {
  margin: 0;
  color: #fff8ef;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.02;
}

.reels-card__text {
  margin: 0;
  color: rgba(255, 248, 239, 0.76);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 36ch;
}

.reels-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.reels-card__count {
  color: #f7d28a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reels-card__code {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.reels-card__actions {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.reels-card.is-switching {
  animation: reelsFadeIn 0.28s ease;
}

@keyframes reelsFadeIn {
  from {
    opacity: 0.55;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .reels-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .reels-card__visual {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
}

@media (max-width: 768px) {
  .reels-panel__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .reels-nav {
    width: 100%;
    justify-content: flex-end;
  }
}
.reels-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.reels-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.2) 45%,
    rgba(0,0,0,0.42) 100%
  );
}

.reels-card__badge,
.reels-card__play,
.reels-card__glow {
  z-index: 2;
}
.media-showcase {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1.5rem;
  align-items: stretch;
  margin: 2rem 0 0;
  width: var(--container);
  margin: 0 auto;
}

.media-showcase__spotify,
.media-showcase__reels {
  min-width: 0;
}

.spotify-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(23, 18, 16, 0.96), rgba(11, 10, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.spotify-panel h2 {
  margin: 0;
}

.spotify-panel p {
  margin: 0;
}

.spotify-panel__embed {
  margin-top: auto;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.media-showcase__reels .reels-panel {
  height: 100%;
}

.media-showcase__reels .reels-card {
  min-height: 420px;
}

@media (max-width: 1080px) {
  .media-showcase {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 920px) {
  .media-showcase {
    grid-template-columns: 1fr;
  }

  .media-showcase__reels .reels-card {
    min-height: 360px;
  }
}
.spotify-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(23, 18, 16, 0.96), rgba(11, 10, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.spotify-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.spotify-panel__head h2,
.spotify-panel__head p {
  margin: 0;
}

.spotify-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.spotify-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
}

.spotify-panel__embed {
  margin-top: auto;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

@media (max-width: 920px) {
  .spotify-panel__head {
    flex-direction: column;
  }

  .spotify-nav {
    width: 100%;
    justify-content: flex-end;
  }
}
.spotify-panel__embed-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.spotify-embed-meta {
  display: flex;
  justify-content: flex-end;
}

.spotify-count {
  color: #f7d28a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.spotify-panel__embed {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
.spotify-panel__embed-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}

.spotify-embed-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.spotify-panel__embed {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}
@media (max-width: 920px) {
  .spotify-embed-meta {
    justify-content: flex-end;
  }

  .spotify-count {
    font-size: 0.78rem;
  }
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(6px);
}

.video-modal__dialog {
  position: relative;
  width: min(520px, calc(100vw - 24px));
  margin: 20px auto;
  border-radius: 24px;
  background: #0d0d0f;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  overflow: hidden;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal__body {
  padding: 0;
}

.video-modal__player {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  background: #000;
}

@media (max-width: 640px) {
  .video-modal__dialog {
    width: calc(100vw - 16px);
    margin: 8px auto;
    border-radius: 18px;
  }
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(6px);
}

.video-modal__dialog {
  position: relative;
  width: min(1120px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  border-radius: 28px;
  overflow: hidden;
  background: #0f0d0c;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal__body {
  max-height: calc(100vh - 24px);
  overflow: auto;
}

.video-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 380px);
  min-height: 720px;
  background: #0f0d0c;
}

.video-modal__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  min-height: 720px;
  overflow: hidden;
}

.video-modal__player {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 24px);
  object-fit: contain;
  background: #000;
  display: block;
}

.video-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.42);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.video-modal__nav:hover {
  background: rgba(255,255,255,.14);
}

.video-modal__nav--prev {
  left: 16px;
}

.video-modal__nav--next {
  right: 16px;
}

.video-modal__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    #14110f;
  border-left: 1px solid rgba(255,255,255,.06);
  color: #f8f1e6;
}

.video-modal__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(241,210,115,.12);
  color: #f1d273;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-modal__title {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.05;
  color: #fff8ef;
}

.video-modal__text {
  margin: 0;
  color: rgba(255,248,239,.78);
  line-height: 1.65;
}

.video-modal__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.54);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.video-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.video-modal__comments {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 6px;
}

.video-modal__comments h4 {
  margin: 0;
  font-size: 1rem;
  color: #f7d28a;
  letter-spacing: .02em;
}

.video-modal__comments-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}

.video-modal__comments-list::-webkit-scrollbar {
  width: 8px;
}

.video-modal__comments-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.16);
  border-radius: 999px;
}

.video-modal__comment {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.video-modal__comment-head {
  margin-bottom: 6px;
  color: #fff8ef;
  font-size: .92rem;
}

.video-modal__comment p {
  margin: 0;
  color: rgba(255,248,239,.78);
  line-height: 1.55;
  font-size: .94rem;
  word-break: break-word;
}

.video-modal__comments-empty {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,248,239,.68);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .video-modal__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .video-modal__media {
    min-height: 420px;
  }

  .video-modal__side {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.06);
  }
}

@media (max-width: 640px) {
  .video-modal__dialog {
    width: calc(100vw - 12px);
    margin: 6px auto;
    border-radius: 18px;
  }

  .video-modal__media {
    min-height: 320px;
  }

  .video-modal__nav {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
  }

  .video-modal__nav--prev {
    left: 10px;
  }

  .video-modal__nav--next {
    right: 10px;
  }

  .video-modal__side {
    padding: 18px 16px 16px;
  }

  .video-modal__title {
    font-size: 1.35rem;
  }

  .video-modal__comments-list {
    max-height: 220px;
  }
}