.themed-hero{
  padding-top:var(--space-16);
}
.themed-hero__grid{
  display:grid;
  gap:var(--space-8);
}
@media(min-width:768px){
  .themed-hero__grid{
    grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);
    align-items:center;
  }
}
.themed-hero__lead{
  font-size:var(--font-size-lg);
  color:var(--color-text-soft);
  margin-bottom:var(--space-4);
}
.themed-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-3);
  margin-bottom:var(--space-4);
}
.themed-hero__meta{
  display:grid;
  gap:var(--space-4);
}
@media(min-width:768px){
  .themed-hero__meta{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
.themed-hero__meta h2{
  font-size:var(--font-size-lg);
  margin-bottom:var(--space-2);
}
.themed-hero__visual{
  position:relative;
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-elevated);
}
.themed-hero__image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.themed-hero__overlay-card{
  position:absolute;
  right:var(--space-4);
  bottom:var(--space-4);
  max-width:260px;
}
.themed-hero__overlay-title{
  font-weight:600;
  margin-bottom:var(--space-1);
}
.themed-breadcrumbs ol{
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-2);
  list-style:none;
  font-size:var(--font-size-sm);
  color:var(--color-text-muted);
}
.themed-breadcrumbs li+li::before{
  content:"/";
  margin-right:var(--space-2);
  color:var(--gray-400);
}
.themed-concept__card{
  align-self:start;
}
.themed-list{
  list-style:none;
}
.themed-list li{
  position:relative;
  padding-left:1.25rem;
  margin-bottom:var(--space-2);
  font-size:var(--font-size-sm);
}
.themed-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.55rem;
  width:0.55rem;
  height:0.55rem;
  border-radius:999px;
  background:linear-gradient(135deg,var(--color-primary),var(--color-accent-gold));
  box-shadow:0 0 8px var(--color-primary-glow);
}
.themed-list--compact li{
  margin-bottom:var(--space-1);
}
.themed-games__wrapper{
  display:grid;
  gap:var(--space-6);
}
@media(min-width:900px){
  .themed-games__wrapper{
    grid-template-columns:minmax(0,1.1fr) minmax(0,1.3fr);
    align-items:stretch;
  }
}
.themed-games__image-wrapper{
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-elevated);
}
.themed-games__image{
  width:100%;
  height:100%;
  object-fit:cover;
}
.themed-games__content{
  align-self:center;
}
.themed-schedule__card{
  align-self:start;
}
.themed-guests__grid{
  display:grid;
  gap:var(--space-8);
}
@media(min-width:900px){
  .themed-guests__grid{
    grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);
    align-items:start;
  }
}
.themed-visual__grid{
  display:grid;
  gap:var(--space-8);
}
@media(min-width:900px){
  .themed-visual__grid{
    grid-template-columns:minmax(0,1.4fr) minmax(0,0.8fr);
    align-items:center;
  }
}
.themed-visual__note{
  font-size:var(--font-size-sm);
  color:var(--color-text-muted);
  margin-top:var(--space-3);
}
.themed-hosts__wrapper{
  display:grid;
  gap:var(--space-6);
}
@media(min-width:900px){
  .themed-hosts__wrapper{
    grid-template-columns:minmax(0,1.1fr) minmax(0,1.4fr);
    align-items:center;
  }
}
.themed-hosts__image{
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow-elevated);
}
.themed-hosts__img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.themed-packages__header{
  max-width:720px;
  margin:0 auto var(--space-8);
  text-align:center;
}
.themed-packages__grid{
  align-items:stretch;
}
.themed-packages__item{
  display:flex;
  flex-direction:column;
}
.themed-packages__subtitle{
  font-size:var(--font-size-sm);
  color:var(--color-text-muted);
  margin-bottom:var(--space-3);
}
.themed-packages__item--highlight{
  position:relative;
  box-shadow:var(--shadow-glow-violet);
}
.themed-cta__card{
  display:flex;
  flex-direction:column;
  gap:var(--space-4);
  align-items:flex-start;
}
@media(min-width:900px){
  .themed-cta__card{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
}
.themed-cta__content{
  max-width:720px;
}
.themed-cta__actions{
  display:flex;
  flex-direction:column;
  gap:var(--space-3);
}
@media(min-width:600px){
  .themed-cta__actions{
    flex-direction:row;
  }
}
.themed-cta__primary{
  min-width:230px;
}
@media(max-width:767px){
  .section{
    padding-top:var(--space-10);
    padding-bottom:var(--space-10);
  }
}
