/*
Theme Name: Pasión y Pelota
Theme URI: https://pasionypelota.com
Description: Portal deportivo profesional - Marca + Olé Hybrid Design
Version: 1.2
Author: Bot Pasión y Pelota
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,400;0,700;1,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --marca-red: #d90011;
  --ole-green: #89c53f;
  --ole-green-dark: #6fa630;
  --dark-bg: #111111;
  --light-bg: #f4f6f9;
  --border-color: #e3e7ec;
  --text-dark: #1a1a1a;
  --text-light: #606f7b;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light-bg);
  color: #333333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--marca-red);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* TOP BAR */
.top-bar {
  background: #111;
  color: #999;
  font-size: 11px;
  padding: 6px 0;
  font-weight: 500;
  text-transform: uppercase;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #999;
  margin-left: 12px;
}

.top-bar a:hover {
  color: var(--white);
}

/* SCORES STRIP */
.scores-strip {
  background: #f1f3f5;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 11px;
  overflow: hidden;
}

.scores-marquee {
  width: 100%;
  overflow: hidden;
}

.scores-track {
  display: inline-flex;
  gap: 15px;
  animation: scores-scroll 35s linear infinite;
  white-space: nowrap;
}

.scores-track:hover {
  animation-play-state: paused;
}

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

.score-item {
  background: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  flex-shrink: 0;
}

.league-tag {
  font-weight: 800;
  color: var(--marca-red);
  font-size: 9px;
  background: #ffebeb;
  padding: 2px 5px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.score-item strong {
  color: var(--text-dark);
}

.match-status {
  color: var(--ole-green-dark);
  font-weight: 700;
  font-size: 10px;
}

/* HEADER */
.site-header {
  background: var(--white);
  padding: 18px 0;
  border-bottom: 3px solid var(--marca-red);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1.5px;
}

.logo-pasion {
  color: var(--marca-red);
}

.logo-y-pelota {
  color: var(--ole-green);
  font-style: italic;
}

.header-tagline {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* NAVIGATION */
.main-nav {
  background: var(--dark-bg);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-nav .container {
  display: flex;
}

.nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  display: block;
  padding: 14px 18px;
  color: #dddddd;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  border-top: 3px solid transparent;
}

.nav-menu li a:hover, .nav-menu .current-menu-item a {
  background: #222222;
  color: var(--white);
  border-top-color: var(--ole-green);
}

/* TICKER */
.ticker-bar {
  background: var(--marca-red);
  padding: 8px 0;
  overflow: hidden;
}

.ticker-bar .container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ticker-label {
  background: var(--white);
  color: var(--marca-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-wrap {
  overflow: hidden;
  flex: 1;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}

.ticker-inner a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.ticker-inner a:hover {
  text-decoration: underline;
}

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

/* LAYOUT */
.site-content {
  padding: 24px 0;
}

.content-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

/* HERO SECTION */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  background: #000;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}

.hero-main {
  position: relative;
  overflow: hidden;
  height: 440px;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-main:hover img {
  transform: scale(1.02);
}

.hero-no-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--marca-red), var(--dark-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.92));
  padding: 40px 24px 24px;
}

.volanta {
  display: inline-block;
  color: var(--ole-green);
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.hero-overlay h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-overlay h2 a {
  color: var(--white);
}

.hero-overlay h2 a:hover {
  color: var(--ole-green);
}

.hero-overlay .post-time {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  margin-top: 10px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-side-item {
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 218px;
}

.hero-side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-side-item:hover img {
  transform: scale(1.04);
}

.hero-side-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 20px 15px 15px;
}

.hero-side-overlay h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-side-overlay h3 a {
  color: var(--white);
}

.hero-side-overlay h3 a:hover {
  color: var(--ole-green);
}

/* SECTION HEADING */
.section-heading {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  border-left: 5px solid var(--marca-red);
  padding-left: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* ARTICLE GRID */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.art-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

.art-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: #cbd5e0;
}

.art-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.art-card-no-img {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--marca-red), var(--dark-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}

.art-card-body {
  padding: 15px;
}

.art-card-cat {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ole-green-dark);
  margin-bottom: 6px;
  letter-spacing: 0.8px;
}

.art-card-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.art-card-title a {
  color: var(--text-dark);
}

.art-card-title a:hover {
  color: var(--marca-red);
}

.art-card-excerpt {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.art-card-time {
  font-size: 11px;
  color: #a0aec0;
}

/* LIST ARTICLES */
.articles-list-wrap {
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 24px;
}

.list-art-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

.list-art-item:last-child {
  border-bottom: none;
}

.list-art-thumb {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.list-art-no-thumb {
  width: 90px;
  height: 64px;
  border-radius: 4px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ole-green), var(--dark-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.list-art-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

.list-art-title a {
  color: var(--text-dark);
}

.list-art-title a:hover {
  color: var(--ole-green-dark);
}

.list-art-time {
  font-size: 11px;
  color: #a0aec0;
  margin-top: 6px;
}

/* SIDEBAR */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget-box {
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.widget-head {
  background: var(--dark-bg);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-head::before {
  content: '';
  display: block;
  width: 4px;
  height: 14px;
  background: var(--ole-green);
  border-radius: 2px;
}

.sb-post {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  align-items: flex-start;
}

.sb-post:last-child {
  border-bottom: none;
}

.sb-num {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}

.sb-post:hover .sb-num {
  color: var(--marca-red);
}

.sb-post-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
}

.sb-post-title a {
  color: var(--text-dark);
}

.sb-post-title a:hover {
  color: var(--marca-red);
}

.sb-post-time {
  font-size: 11px;
  color: #a0aec0;
  margin-top: 4px;
}

/* EL SEMAFORO WIDGET */
.semaforo-head {
  background: #111;
  color: #fff;
}
.semaforo-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.semaforo-item {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}
.semaforo-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.semaforo-dot {
  font-size: 16px;
  flex-shrink: 0;
}
.semaforo-content strong {
  display: block;
  font-size: 13px;
  color: #111;
}

/* SINGLE POST TEMPLATE */
.single-header {
  background: var(--white);
  padding: 30px;
  margin-bottom: 16px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.single-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 12px 0;
}

.single-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
}

.single-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}

.post-body {
  background: var(--white);
  padding: 30px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.post-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #2d3748;
  margin-bottom: 20px;
}

.post-body h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 30px 0 15px;
  border-left: 5px solid var(--marca-red);
  padding-left: 12px;
}

.post-body h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 22px 0 12px;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 14px;
}

.post-body table th {
  background: var(--dark-bg);
  color: var(--white);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.post-body table td {
  padding: 10px 14px;
  border-bottom: 1px solid #edf2f7;
}

.post-body table tr:nth-child(even) td {
  background: #f7fafc;
}

.post-body table tr:hover td {
  background: #ffebeb;
}

.affiliate-box {
  background: #f7fafc;
  border: 2px dashed var(--ole-green);
  border-radius: 6px;
  padding: 20px;
  margin: 25px 0;
  text-align: center;
}

.affiliate-box strong {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.affiliate-box a {
  display: inline-block;
  background: var(--ole-green);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.affiliate-box a:hover {
  background: var(--ole-green-dark);
  color: var(--white);
}

.tags-wrap {
  background: var(--white);
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
}

.tag-link {
  background: #edf2f7;
  color: #4a5568;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.tag-link:hover {
  background: var(--marca-red);
  color: var(--white);
  border-color: var(--marca-red);
}

.share-bar {
  background: var(--white);
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.share-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
}

.share-btn.tw { background: #1DA1F2; }
.share-btn.fb { background: #1877F2; }
.share-btn.wa { background: #25D366; }
.share-btn:hover { opacity: 0.9; color: var(--white); }

/* FOOTER */
.site-footer {
  background: var(--dark-bg);
  color: #a0aec0;
  padding: 40px 0 0;
  margin-top: 40px;
  border-top: 4px solid var(--ole-green);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo-text {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-logo-text em {
  color: var(--ole-green);
  font-style: normal;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid #2d3748;
  padding-bottom: 8px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #a0aec0;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--ole-green);
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #718096;
}

.footer-bottom a {
  color: #718096;
}

.footer-bottom a:hover {
  color: var(--marca-red);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .content-wrap { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
  .hero-main { height: 260px; }
  .hero-overlay h2 { font-size: 20px; }
  .logo-text { font-size: 26px; }
  .single-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* FIXTURE WIDGET AND PAGE TEMPLATE */
.hero-fixture-widget {
  background: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
  padding: 15px;
  display: flex;
  flex-direction: column;
  color: #fff;
  height: 100%;
}

.hero-fixture-widget .widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--ole-green);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.hero-fixture-widget .widget-header h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.hero-fixture-widget .widget-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.widget-match-item {
  background: #252525;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s ease;
}

.widget-match-item:hover {
  border-color: var(--ole-green);
  background: #2b2b2b;
}

.widget-match-item .match-teams {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-grow: 1;
  justify-content: space-between;
  padding-right: 10px;
}

.widget-match-item .team {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.widget-match-item .score {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  background: #111;
  padding: 2px 6px;
  border-radius: 4px;
}

.widget-match-item .score-val {
  color: #ffcc00;
}

.widget-match-item .match-status {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  text-align: center;
  min-width: 55px;
}

.widget-match-item.live .match-status {
  background: var(--marca-red);
  color: #fff;
  animation: pulse 1.5s infinite;
}

.widget-match-item.final .match-status {
  background: #444;
  color: #aaa;
}

.widget-match-item.prog .match-status {
  background: #333;
  color: #0cf737;
}

.hero-fixture-widget .widget-footer {
  margin-top: 12px;
  border-top: 1px solid #333;
  padding-top: 10px;
  text-align: center;
}

.hero-fixture-widget .view-all-btn {
  font-size: 11px;
  font-weight: 700;
  color: var(--ole-green);
  text-transform: uppercase;
}

.hero-fixture-widget .view-all-btn:hover {
  color: #fff;
}

/* FIXTURE LONG FORM PAGE */
.fixture-page-container {
  background: #111;
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #333;
  margin-bottom: 30px;
}

.fixture-main-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.fixture-subtitle {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

.fixture-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 25px;
  overflow-x: auto;
}

.fixture-tab-btn {
  background: #252525;
  border: 1px solid #333;
  color: #ccc;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: all 0.15s ease;
}

.fixture-tab-btn:hover {
  background: #333;
  color: #fff;
}

.fixture-tab-btn.active {
  background: var(--ole-green);
  border-color: var(--ole-green);
  color: #111;
}

.fixture-tab-content {
  display: none;
}

.fixture-tab-content.active {
  display: block;
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.group-card {
  background: #181818;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  padding: 15px;
}

.group-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ole-green);
  border-bottom: 1px solid #2d2d2d;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.group-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.group-table th {
  color: #777;
  font-weight: 700;
  padding: 6px 4px;
  border-bottom: 1px solid #2d2d2d;
  text-transform: uppercase;
  font-size: 10px;
}

.group-table td {
  padding: 8px 4px;
  border-bottom: 1px solid #252525;
  text-align: center;
}

.team-row:last-child td {
  border-bottom: none;
}

.team-pos {
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 10px;
}

.team-color-badge {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.team-pts {
  font-weight: 800;
  color: #ffcc00;
}

.no-data-msg {
  text-align: center;
  padding: 40px;
  color: #777;
  font-size: 14px;
}

/* MATCH CARDS IN FIXTURE PAGE */
.matches-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 15px;
}

.fixture-match-card {
  background: #181818;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  padding: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fixture-match-card.match-live {
  border-color: var(--marca-red);
}

.fixture-match-card .match-status-badge {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background: #252525;
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 4px;
}

.fixture-match-card.match-live .match-status-badge {
  background: var(--marca-red);
  animation: pulse 1.5s infinite;
}

.fixture-match-card.match-prog .match-status-badge {
  color: #ffcc00;
}

.fixture-match-card .match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.fixture-match-card .team {
  flex: 1;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.fixture-match-card .home-team {
  justify-content: flex-end;
  text-align: right;
}

.fixture-match-card .away-team {
  justify-content: flex-start;
  text-align: left;
}

.fixture-match-card .match-score {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  padding: 4px 12px;
  border-radius: 6px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin: 0 15px;
}

.fixture-match-card .score-num {
  color: #ffcc00;
}

.fixture-match-card .score-sep {
  color: #777;
}

.fixture-match-card .match-meta {
  font-size: 10px;
  color: #555;
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 6px;
}

/* BRACKETS LIST IN FIXTURE PAGE */
.brackets-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bracket-stage-block {
  background: #181818;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  padding: 20px;
}

.bracket-stage-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ole-green);
  margin-bottom: 15px;
  border-bottom: 1px solid #2d2d2d;
  padding-bottom: 8px;
}

.bracket-matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}

.bracket-match-card {
  background: #252525;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 12px;
  position: relative;
}

.bracket-team {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 4px 0;
  color: #ccc;
}

.bracket-team.winner {
  font-weight: 700;
  color: #fff;
}

.bracket-team-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bracket-vs-divider {
  font-size: 9px;
  color: #555;
  font-weight: 700;
  text-align: center;
  margin: 2px 0;
  border-top: 1px dashed #333;
  border-bottom: 1px dashed #333;
  padding: 2px 0;
}

.bracket-score {
  font-size: 11px;
  font-weight: 700;
  color: #ffcc00;
  text-align: right;
  margin-top: 4px;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
