:root {
  --bg: #08080c;
  --panel: rgba(18, 18, 28, 0.84);
  --panel-strong: #171722;
  --text: #f7f7fb;
  --muted: #aaaabd;
  --line: rgba(255, 255, 255, 0.12);

  --theme-a: #1f2937;
  --theme-b: #6b7280;
  --theme-c: #111827;
  --theme-glow: rgba(107, 114, 128, 0.26);

  --nxt-a: #111827;
  --nxt-b: #f59e0b;
  --nxt-c: #facc15;

  --raw-a: #450a0a;
  --raw-b: #dc2626;
  --raw-c: #111827;

  --smackdown-a: #061b4f;
  --smackdown-b: #2563eb;
  --smackdown-c: #020617;

  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

body[data-theme="nxt"] {
  --theme-a: #111827;
  --theme-b: #f59e0b;
  --theme-c: #facc15;
  --theme-glow: rgba(245, 158, 11, 0.34);
}

body[data-theme="raw"] {
  --theme-a: #450a0a;
  --theme-b: #dc2626;
  --theme-c: #111827;
  --theme-glow: rgba(220, 38, 38, 0.36);
}

body[data-theme="smackdown"] {
  --theme-a: #061b4f;
  --theme-b: #2563eb;
  --theme-c: #020617;
  --theme-glow: rgba(37, 99, 235, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--theme-b) 24%, transparent), transparent 32rem),
    radial-gradient(circle at top right, color-mix(in srgb, var(--theme-c) 24%, transparent), transparent 36rem),
    linear-gradient(135deg, var(--bg), color-mix(in srgb, var(--theme-a) 12%, var(--bg)), var(--bg));
  transition: background 350ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.035), transparent 38%),
    radial-gradient(circle at 50% 0%, var(--theme-glow), transparent 34rem);
  opacity: 0.85;
  z-index: -1;
}

body.admin-bar .site-header {
  top: 32px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 12, 0.86);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
  box-shadow: 0 14px 34px var(--theme-glow);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark span {
  font-weight: 900;
}

.brand-text {
  font-size: 1.2rem;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
  box-shadow: 0 12px 28px var(--theme-glow);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid var(--line);
  transition: 180ms ease;
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
  box-shadow: 0 12px 28px var(--theme-glow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  border-radius: 999px;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-section {
  display: none;
  padding: 34px 0 56px;
}

.active-section {
  display: block;
}

.home-intro {
  margin: 34px 0 18px;
  padding: 24px 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.home-intro p {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: .92;
  letter-spacing: -.08em;
  font-weight: 900;
}

.home-intro span {
  display: inline-flex;
  margin-top: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
}

.featured-carousel {
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.carousel-track {
  position: relative;
  min-height: clamp(480px, 45vw, 600px);
  background: #05050a;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: none;
  align-content: center;
  padding: 54px 62px 98px;
  background-size: cover;
  background-position: center;
}

.carousel-slide.active {
  display: grid;
}

.carousel-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.54), rgba(0,0,0,.18)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.76));
}

.carousel-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.carousel-content h1 {
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.07em;
  margin: 14px 0 12px;
}

.carousel-content p {
  max-width: 640px;
  color: #e5e7eb;
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.carousel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #d1d5db;
  margin-bottom: 14px;
}

.carousel-meta span,
.article-modal-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: 180ms ease;
}

.carousel-arrow:hover {
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
}

.carousel-prev {
  left: 18px;
}

.carousel-next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  left: 62px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--theme-b);
}

.eyebrow {
  color: var(--theme-b);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin: 0 0 12px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
  color: white;
  box-shadow: 0 12px 32px var(--theme-glow);
}

.btn-secondary,
.btn-small {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-small {
  min-height: 40px;
  padding: 0 15px;
}

.btn:hover {
  transform: translateY(-2px);
}

.home-videos-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -6px auto 28px;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at right, var(--theme-glow), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.028));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.home-videos-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--theme-b), rgba(255,255,255,.35));
}

.home-videos-cta-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.home-videos-cta-kicker {
  color: var(--theme-b);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-videos-cta-copy strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: -.035em;
}

.home-videos-cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 10px 26px rgba(0,0,0,.2);
  transition: 180ms ease;
}

.home-videos-cta-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.26);
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
  box-shadow: 0 14px 34px var(--theme-glow);
}

.home-videos-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-size: .74rem;
  line-height: 1;
}

.content-block {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.content-block.narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 12px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.compact-heading {
  margin-bottom: 18px;
}

.filters-shell {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  margin-bottom: 24px;
}

.filter-group {
  display: grid;
  gap: 10px;
}

.sport-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.sport-choice {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 16px;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
  transition: 180ms ease;
}

.sport-choice span {
  display: block;
  font-size: 1.05rem;
}

.sport-choice small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 700;
}

.sport-choice:hover,
.sport-choice.active {
  background: linear-gradient(135deg, var(--pill-a, var(--theme-a)), var(--pill-b, var(--theme-b)), var(--pill-c, var(--theme-c)));
  box-shadow: 0 14px 28px var(--pill-glow, var(--theme-glow));
  transform: translateY(-1px);
}

.sport-choice.active small,
.sport-choice:hover small {
  color: rgba(255,255,255,.78);
}

.filter-group-dependent.is-collapsed {
  display: none;
}

.filter-pill.filter-hidden {
  display: none !important;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.filter-title {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 900;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 800;
  transition: 180ms ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: linear-gradient(135deg, var(--pill-a, var(--theme-a)), var(--pill-b, var(--theme-b)), var(--pill-c, var(--theme-c)));
  box-shadow: 0 10px 24px var(--pill-glow, var(--theme-glow));
  transform: translateY(-1px);
}

.news-toolbar {
  margin: 26px 0 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.news-toolbar h3 {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}

.news-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card,
.portfolio-card,
.story-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 210px;
  backdrop-filter: blur(10px);
}

.news-card {
  width: 100%;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: 220ms ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--theme-b) 55%, white);
  box-shadow: 0 22px 56px var(--theme-glow);
}

.news-card:hover .news-image-wrap img {
  transform: scale(1.07);
}

.news-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--theme-b) 75%, white);
  outline-offset: 4px;
}

.news-card.is-hidden,
.news-card.is-filter-hidden,
.news-card.is-page-hidden {
  display: none;
}

.news-image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 178px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
}

.news-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 360ms ease;
}

.news-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.82)),
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--theme-b) 34%, transparent), transparent 18rem);
}

.news-image-wrap .news-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
}

.no-image {
  display: grid;
  place-items: center;
}

.image-placeholder-text {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.72);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.news-tag {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag-nxt {
  background: rgba(245, 158, 11, 0.18);
  color: #facc15;
}

.tag-raw {
  background: rgba(220, 38, 38, 0.16);
  color: #f87171;
}

.tag-smackdown {
  background: rgba(37, 99, 235, 0.18);
  color: #60a5fa;
}

.tag-rumores,
.tag-eventos,
.tag-ple,
.tag-modo-universo,
.tag-general {
  background: rgba(156, 163, 175, 0.18);
  color: #d1d5db;
}

.news-card h4 {
  font-size: 1.24rem;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.news-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}

.empty-state p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.portfolio-content {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-story {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.story-card {
  padding: 24px;
}

.story-card.wide {
  grid-column: 1 / -1;
}

.story-card span {
  color: var(--theme-b);
  font-weight: 900;
}

.story-card h3 {
  font-size: 1.5rem;
  letter-spacing: -.04em;
}

.story-card p {
  color: var(--muted);
  line-height: 1.75;
}

.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.content-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: color-mix(in srgb, var(--theme-b) 70%, white);
}

.form-message {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
}

.form-message.success {
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.32);
  color: #bbf7d0;
}

.form-message.error {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.32);
  color: #fecaca;
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 22px;
}

.article-modal.open {
  display: grid;
}

.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(10px);
}

.article-modal-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 860px);
  overflow: auto;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg,
      color-mix(in srgb, var(--theme-a) 32%, transparent),
      color-mix(in srgb, var(--theme-b) 16%, transparent),
      rgba(18, 18, 28, 0.97)
    );
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.64);
  animation: modalIn 180ms ease;
}

.article-modal-image {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
  overflow: hidden;
  position: relative;
}

.article-modal-image.has-image {
  display: block;
}

.article-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-modal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(18,18,28,.82));
}

.article-modal-inner {
  padding: 34px;
}

.article-modal-card h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin: 18px 0 16px;
}

.article-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.article-modal-content {
  color: #ddddec;
  line-height: 1.8;
  font-size: 1.03rem;
}

.article-modal-content p,
.article-modal-content ul,
.article-modal-content ol,
.article-modal-content blockquote {
  margin-bottom: 18px;
}

.article-modal-content a,
.single-article a {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-modal-content img,
.single-article img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.article-full-link {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  transition: 180ms ease;
}

.modal-close:hover {
  transform: rotate(8deg) scale(1.05);
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
}

.single-layout {
  padding: 56px 0;
}

.single-article {
  max-width: 1060px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.single-article-inner {
  padding: 38px;
}

.single-article h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
  margin: 18px 0 16px;
}

.single-featured {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.single-featured img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.single-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8,8,12,.86));
}

.single-actions {
  margin-top: 28px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
  text-align: center;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-content {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #11111a;
    box-shadow: var(--shadow);
  }

  .nav-content.open {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    width: 100%;
  }

  .social-links {
    padding-left: 0;
    padding-top: 12px;
    border-left: 0;
    border-top: 1px solid var(--line);
    justify-content: center;
  }

  .carousel-track {
    min-height: 620px;
  }

  .carousel-slide {
    padding: 56px 24px 120px;
  }

  .carousel-content h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .carousel-arrow {
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .carousel-prev {
    left: auto;
    right: 78px;
  }

  .carousel-next {
    right: 24px;
  }

  .carousel-dots {
    left: 24px;
    bottom: 42px;
  }

  .content-block,
  .single-article-inner {
    padding: 24px;
  }

  .news-grid,
  .portfolio-story {
    grid-template-columns: 1fr;
  }

  .news-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-modal-inner {
    padding: 24px;
  }

  .article-modal-image,
  .single-featured {
    aspect-ratio: 16 / 10;
  }
}


/* SoteSports v8 - contacto corregido */
.contact-form button[type="submit"] {
  width: fit-content;
}


/* SoteSports v9.2 - soporte dinámico mínimo sin cambiar el diseño */
@media (max-width: 520px) {
  .filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter-pill {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: center;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* SoteSports v12 - Videos */
.videos-page .content-block {
  overflow: hidden;
}

.social-carousel-shell {
  margin: 26px 0 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    rgba(255,255,255,.035);
}

.social-carousel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.social-carousel-heading h2,
.videos-list-section h3 {
  margin: 0;
  letter-spacing: -.05em;
}

.social-carousel-controls {
  display: flex;
  gap: 10px;
}

.social-carousel-controls .carousel-arrow {
  position: static;
  transform: none;
}

.social-carousel-track {
  position: relative;
  min-height: 430px;
}

.social-carousel-slide {
  display: none;
}

.social-carousel-slide.active {
  display: block;
}

.social-carousel-content {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.social-embed {
  width: min(560px, 100%);
  margin: 0 auto;
}

.social-embed iframe,
.social-embed blockquote {
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.social-fallback-card {
  width: min(660px, 100%);
  padding: 30px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, var(--theme-glow), transparent 18rem),
    var(--panel);
  text-align: center;
}

.social-fallback-card h3 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -.06em;
  margin: 18px 0 12px;
}

.social-fallback-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}


.social-fallback-thumb {
  display: block;
  margin: 0 0 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.social-fallback-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.social-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.social-carousel-dots .carousel-dot {
  width: 34px;
}

.videos-list-section {
  margin-top: 22px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.video-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.video-embed {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--theme-a), var(--theme-b), var(--theme-c));
}

.video-embed iframe,
.video-embed embed,
.video-embed object,
.video-embed video {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
}

.video-embed-fallback {
  display: grid;
  place-items: center;
}

.video-card-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.video-card-body h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0;
}

.video-card-body p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.video-card-body .btn {
  width: fit-content;
  margin-top: 4px;
}

@media (max-width: 920px) {
  .home-videos-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0;
  }

  .home-videos-cta-button {
    width: 100%;
  }

  .social-carousel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-carousel-track,
  .social-carousel-content {
    min-height: 360px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }
}

.video-fallback-thumb {
  display: block;
  width: 100%;
  height: 100%;
}
.video-fallback-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
