/* ======================================================
   FC WORLD CUP HUB - VARIABLES
====================================================== */
:root{
  --fcwc-blue:#061a38;
  --fcwc-red:#fc2729;
  --fcwc-gold:#f5b642;
  --fcwc-text:#07152f;
  --fcwc-muted:#64748b;
  --fcwc-bg:#eef3f8;
  --fcwc-card:#fff;
  --fcwc-border:rgba(15,23,42,.10);
}

/* ======================================================
   BASE
====================================================== */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

.fcwc-wrap{
  width:100%;
  max-width:100vw;
  margin:0 auto;
  overflow-x:hidden;
  background:var(--fcwc-bg);
  color:var(--fcwc-text);
  font-family:inherit;
}

.fcwc-wrap *{
  box-sizing:border-box;
}

/* ======================================================
   HERO
====================================================== */
.fcwc-hero{
  min-height:250px;
  border-radius:0 0 18px 18px;
  background-image:
    linear-gradient(90deg,rgba(3,10,26,.82),rgba(3,10,26,.46),rgba(3,10,26,.35)),
    var(--fcwc-hero);
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.fcwc-hero-overlay{
  min-height:250px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:38px 42px;
  color:#fff;
  text-shadow:0 3px 12px rgba(0,0,0,.35);
}

.fcwc-kicker{
  margin:0 0 8px;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-weight:800;
  color:var(--fcwc-gold);
}

.fcwc-hero h1{
  margin:0;
  font-size:clamp(38px,6vw,72px);
  line-height:.95;
  text-transform:uppercase;
  font-weight:900;
  color:#fff;
}

.fcwc-textdate{
  margin:14px 0 0;
  font-size:clamp(14px,1.6vw,19px);
  font-weight:700;
}

/* ======================================================
   COUNTDOWN
====================================================== */
.fcwc-countdown{
  margin-top:18px;
  max-width:340px;
}

.fcwc-countdown-title{
  margin:0 0 8px !important;
  color:#e5e7eb;
  font-size:12px;
  font-weight:800;
}

.fcwc-countdown-row{
  display:grid;
  grid-template-columns:repeat(4,72px);
  gap:6px;
}

.fcwc-timebox{
  border-radius:12px;
  padding:8px 4px;
  text-align:center;
}

.fcwc-timebox strong{
  display:block;
  color:#fff;
  font-size:18px;
  line-height:1;
  font-weight:900;
}

.fcwc-timebox span{
  display:block;
  color:#e5e7eb;
  font-size:9px;
  font-weight:800;
  margin-top:4px;
  text-transform:uppercase;
}

.fcwc-timebox-days{background:rgba(185,28,28,.58);}
.fcwc-timebox-hours{background:rgba(22,101,52,.58);}
.fcwc-timebox-minutes{background:rgba(202,138,4,.58);}
.fcwc-timebox-seconds{background:rgba(29,78,216,.58);}

/* ======================================================
   TABS
====================================================== */
.fcwc-tabs{
  margin:-28px auto 18px;
  width:min(1080px,calc(100% - 28px));
  min-height:58px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  padding:7px;
  background:#fff;
  border:1px solid var(--fcwc-border);
  border-radius:16px;
  box-shadow:0 10px 26px rgba(15,23,42,.12);
  position:relative;
  z-index:4;
  overflow-x:auto;
}

.fcwc-tabs button,
.fcwc-filter-row button,
.fcwc-group-tabs button{
  appearance:none;
  border:0;
  background:transparent;
  color:#0f172a;
  font-weight:800;
  cursor:pointer;
  border-radius:12px;
  white-space:nowrap;
}

.fcwc-tabs button{
  padding:12px 18px;
  font-size:14px;
}

.fcwc-tabs button.is-active,
.fcwc-filter-row button.is-active,
.fcwc-group-tabs button.is-active{
  background:#046bd2;
  color:#fff;
}

/* ======================================================
   LAYOUT
====================================================== */
.fcwc-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:18px;
  padding:0 18px 28px;
  max-width:100%;
}

.fcwc-main,
.fcwc-side-card,
.fcwc-news-card,
.fcwc-match-card,
.fcwc-adbox,
.fcwc-stadium-card{
  border:1px solid var(--fcwc-border);
  background:var(--fcwc-card);
  border-radius:14px;
  box-shadow:0 4px 14px rgba(15,23,42,.06);
}

.fcwc-main{
  padding:16px;
  min-width:0;
  max-width:100%;
}

.fcwc-side{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:100%;
}

.fcwc-side-card{
  padding:12px;
}

.fcwc-side-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.fcwc-side-title h2{
  margin:0;
  font-size:17px;
  text-transform:uppercase;
  font-weight:900;
}

.fcwc-panel{
  display:none;
}

.fcwc-panel.is-active{
  display:block;
}

/* ======================================================
   SECTION HEADERS
====================================================== */
.fcwc-section-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-end;
  margin:0 0 14px;
}

.fcwc-section-head h2{
  margin:0;
  font-size:22px;
  line-height:1.1;
  color:#061a38;
  font-weight:900;
}

.fcwc-section-head p,
.fcwc-muted{
  margin:5px 0 0;
  color:var(--fcwc-muted);
  font-size:14px;
}

.fcwc-section-head a,
.fcwc-side-title a{
  color:#0646c9;
  font-size:13px;
  font-weight:600;
  text-decoration:none;
}

/* ======================================================
   NEWS BASE
====================================================== */
.fcwc-news-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.fcwc-news-card{
  overflow:hidden;
  text-decoration:none !important;
  color:var(--fcwc-text) !important;
  display:block;
}

.fcwc-news-card img{
  width:100%;
  height:125px;
  object-fit:cover;
  display:block;
  background:#dbe4ef;
}

.fcwc-news-body{
  padding:10px;
}

.fcwc-news-body span{
  display:none;
}

.fcwc-news-body h3{
  margin:8px 0 6px;
  color:var(--fcwc-text);
  font-size:15px;
  line-height:1.25;
  font-weight:900;
  text-decoration:none !important;
}

.fcwc-news-body time{
  color:var(--fcwc-muted);
  font-size:12px;
  font-weight:700;
}

/* ======================================================
   MATCH CARDS
====================================================== */
.fcwc-match-card{
  display:grid;
  grid-template-columns:1fr 80px 1fr;
  gap:10px;
  align-items:center;
  padding:13px 10px;
  margin-bottom:10px;
  text-decoration:none !important;
  color:var(--fcwc-text) !important;
  box-shadow:none;
}

.fcwc-team{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  min-width:0;
}

.fcwc-team img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.fcwc-team strong{
  font-size:11px;
  line-height:1.1;
  text-align:center;
  text-transform:uppercase;
}

.fcwc-score{
  text-align:center;
  min-width:0;
}

.fcwc-score strong{
  display:block;
  font-size:18px;
  line-height:1;
  font-weight:700;
}

.fcwc-score span{
  display:block;
  margin-top:5px;
  font-size:12px;
  color:var(--fcwc-muted);
  font-weight:700;
}


.fcwc-score small{
  display:block;
  margin-top:3px;
  font-size:11px;
  font-weight:700;
}

.fcwc-score small.is-live{
  color:#ef4444;
}

.fcwc-score small.is-finished{
  color:#6b7280;
}

.fcwc-score small.is-scheduled{
  color:#046bd2;
}
/* ======================================================
   FILTERS / TABLES / STADIUMS
====================================================== */
.fcwc-filter-row,
.fcwc-group-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}

.fcwc-filter-row button,
.fcwc-group-tabs button{
  padding:9px 12px;
  background:#eef2f7;
  font-size:13px;
}

.fcwc-date-block{
  margin-bottom:16px;
}

.fcwc-date-title{
  margin:0 0 8px;
  font-size:15px;
  font-weight:900;
  color:#061a38;
  text-transform:uppercase;
}

.fcwc-table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  background:#fff;
  border-radius:14px;
  border:1px solid var(--fcwc-border);
}

.fcwc-table th,
.fcwc-table td{
  padding:10px 12px;
  border-bottom:1px solid rgba(15,23,42,.07);
  font-size:14px;
  text-align:center;
}

.fcwc-table th:first-child,
.fcwc-table td:first-child{
  text-align:left;
}

.fcwc-table th{
  color:#475569;
  font-size:12px;
  text-transform:uppercase;
}

.fcwc-table tr:last-child td{
  border-bottom:0;
}

.fcwc-pos-team{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:900;
}

.fcwc-pos-team img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.fcwc-stadium-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.fcwc-stadium-card{
  padding:14px;
}

.fcwc-stadium-card h3{
  margin:0 0 5px;
  font-size:17px;
  color:#061a38;
}

.fcwc-stadium-card p{
  margin:0;
  color:var(--fcwc-muted);
  font-size:13px;
}

.fcwc-match-card{
  position:relative !important;
  z-index:50 !important;
  cursor:pointer !important;
}

.fcwc-match-card *{
  pointer-events:none;
}

.fcwc-match-card{
  pointer-events:auto !important;
}
/* ======================================================
   ADS
====================================================== */


.fcwc-mt{
  margin-top:18px;
}

.fcwc-adbox{
  margin-top:16px;
  min-height:280px;
  display:block;
  background:#f8fafc;
}

.fcwc-calendar-adbox{
  grid-column:1 / -1;
  margin:14px 0;
  min-height:250px;
  display:block;
  text-align:center;
}
.fcwc-details-ad{
  margin:20px 0;
  text-align:center;
}

/* ======================================================
   FLOATING WORLD CUP BUTTON
====================================================== */
.fcwc-floating-worldcup{
  position:fixed;
  right:18px;
  bottom:90px;
  width:72px;
  height:72px;
  border-radius:50%;
  overflow:hidden;
  z-index:99999;
  background:#fff;
  border:3px solid #fff;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  transition:all .2s ease;
  animation:fcwcPulse 8s infinite;
}

.fcwc-floating-worldcup:hover{
  transform:scale(1.08);
}

.fcwc-floating-worldcup img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

@keyframes fcwcPulse{
  0%{transform:scale(1);}
  5%{transform:scale(1.08);}
  10%{transform:scale(1);}
  100%{transform:scale(1);}
}

/* ======================================================
   DETALLES - MOBILE HOME
====================================================== */
.fcwc-details-mobile-block{
  display:none !important;
}

.fcwc-details-videos-block{
  margin-top:18px;
}

.fcwc-details-scroll{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding-bottom:8px;
  scrollbar-width:thin;
}

.fcwc-details-scroll .fcwc-match-card{
  min-width:250px;
  margin-bottom:0;
}

.fcwc-details-video-card{
  min-width:230px;
  max-width:230px;
  display:block;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  overflow:hidden;
  text-decoration:none !important;
  color:#0f172a !important;
  box-shadow:0 3px 12px rgba(15,23,42,.05);
}

.fcwc-details-video-card img{
  width:100%;
  height:130px;
  object-fit:cover;
  display:block;
}

.fcwc-details-video-card strong{
  display:block;
  padding:10px;
  font-size:13px;
  line-height:1.25;
  font-weight:700;
  color:#0f172a;
}

/* ======================================================
   SHORTCODE: Pr贸ximos partidos Mundial
====================================================== */

.fcwc-today-widget{
  display:flex;
  flex-direction:column;
  gap:10px;
  width:100%;
}

.fcwc-today-match{
  display:grid;
  grid-template-columns:minmax(0,1fr) 58px minmax(0,1fr);
  align-items:center;
  gap:8px;
  padding:11px 8px;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  box-shadow:0 3px 10px rgba(15,23,42,.05);
}

.fcwc-today-match > div{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
}

.fcwc-today-match img{
  width:30px;
  height:30px;
  object-fit:contain;
  display:block;
}

.fcwc-today-match span{
  max-width:100%;
  color:#0f172a;
  font-size:11px;
  line-height:1.1;
  font-weight:800;
  text-align:center;
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.fcwc-today-match > strong{
  color:#0f172a;
  font-size:14px;
  line-height:1;
  font-weight:900;
  text-align:center;
}

.fcwc-today-match,
.fcwc-today-match:hover,
.fcwc-today-match:focus,
.fcwc-today-match:visited{
  text-decoration:none !important;
  color:inherit !important;
}

/* ======================================================
   RESPONSIVE TABLET
====================================================== */
@media(max-width:1024px){
  .fcwc-layout{
    grid-template-columns:1fr;
  }

  .fcwc-news-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .fcwc-stadium-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

/* ======================================================
   RESPONSIVE MOBILE
====================================================== */
@media(max-width:640px){
  .fcwc-wrap{
    width:100vw;
    max-width:100vw;
    margin:0;
    overflow-x:hidden;
  }

  .fcwc-hero,
  .fcwc-hero-overlay{
    min-height:210px;
    border-radius:0;
  }

  .fcwc-hero-overlay{
    padding:18px 18px 16px;
    justify-content:center;
  }

  .fcwc-kicker{
    font-size:10px;
    margin-bottom:5px;
  }

  .fcwc-hero h1{
    font-size:38px;
    line-height:1;
  }

  .fcwc-textdate{
    font-size:11px !important;
    max-width:300px;
    margin:8px 0 0 !important;
    line-height:1.3;
  }

  .fcwc-countdown{
    margin-top:12px;
    width:220px;
    max-width:220px;
  }

  .fcwc-countdown-title{
    font-size:10px;
    margin-bottom:5px !important;
  }

  .fcwc-countdown-row{
    display:grid;
    grid-template-columns:repeat(4,60px);
    gap:4px;
  }

  .fcwc-timebox{
    border-radius:8px;
    padding:5px 2px;
  }

  .fcwc-timebox strong{
    font-size:13px;
    line-height:1;
  }

  .fcwc-timebox span{
    font-size:6px;
    margin-top:1px;
  }

  .fcwc-tabs{
    margin:0;
    width:100%;
    border-radius:0;
    justify-content:flex-start;
    box-shadow:0 6px 18px rgba(15,23,42,.10);
  }

  .fcwc-tabs button{
    padding:10px 12px;
    font-size:13px;
  }

  .fcwc-layout{
    grid-template-columns:1fr;
    padding:8px 4px;
    gap:10px;
  }

  .fcwc-main{
    width:100% !important;
    padding:10px 6px;
    border-radius:12px;
  }

  .fcwc-section-head{
    align-items:flex-start;
    flex-direction:row;
    gap:8px;
  }

  .fcwc-section-head h2{
    font-size:19px;
  }

  .fcwc-side{
    display:none !important;
  }

  .fcwc-details-mobile-block{
    display:block !important;
    margin-bottom:16px;
  }

  .fcwc-panel[data-panel="detalles"] .fcwc-news-grid{
    display:flex;
    overflow-x:auto;
    gap:12px;
    padding-bottom:8px;
  }

  .fcwc-panel[data-panel="detalles"] .fcwc-news-grid{
  display:flex !important;
  flex-wrap:nowrap !important;
  overflow-x:auto !important;
  gap:12px !important;
  padding-bottom:10px !important;
}

.fcwc-panel[data-panel="detalles"] .fcwc-news-card{
  flex:0 0 280px !important;
  width:280px !important;
  min-width:280px !important;
  max-width:280px !important;
  display:block !important;
}

.fcwc-panel[data-panel="detalles"] .fcwc-news-card img{
  width:100% !important;
  height:170px !important;
  display:block !important;
  object-fit:cover !important;
}

.fcwc-panel[data-panel="detalles"] .fcwc-news-body{
  padding:12px !important;
}

.fcwc-panel[data-panel="detalles"] .fcwc-news-body h3{
  font-size:18px !important;
  line-height:1.25 !important;
  margin:0 0 8px !important;
}

.fcwc-panel[data-panel="detalles"] .fcwc-news-body time{
  display:block !important;
}


  .fcwc-news-card img{
    height:130px;
  }

  .fcwc-match-card{
    grid-template-columns:1fr 76px 1fr;
  }

  .fcwc-stadium-grid{
    grid-template-columns:1fr;
  }

  .fcwc-floating-worldcup{
    width:64px;
    height:64px;
    right:14px;
    bottom:85px;
  }
}

.fcwc-side-standings-card h3,
.fcwc-details-group-card h3{
  margin:0 0 8px;
  font-size:15px;
  font-weight:700;
  color:#061a38;
}

.fcwc-side-standings-row,
.fcwc-details-group-row{
  display:grid;
  grid-template-columns:20px 24px 1fr 28px;
  gap:7px;
  align-items:center;
  padding:7px 0;
  border-bottom:1px solid rgba(15,23,42,.07);
}

.fcwc-side-standings-row:last-child,
.fcwc-details-group-row:last-child{
  border-bottom:0;
}

.fcwc-side-standings-row span,
.fcwc-details-group-row span{
  color:#64748b;
  font-size:12px;
  font-weight:700;
}

.fcwc-side-standings-row img,
.fcwc-details-group-row img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.fcwc-side-standings-row strong,
.fcwc-details-group-row strong{
  min-width:0;
  color:#0f172a;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.fcwc-side-standings-row b,
.fcwc-details-group-row b{
  color:#0f172a;
  font-size:13px;
  font-weight:700;
  text-align:center;
}

.fcwc-details-standings-block{
  margin-bottom:16px;
}

.fcwc-details-groups-scroll{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding-bottom:8px;
}

.fcwc-details-group-card{
  flex:0 0 250px;
  min-width:250px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  padding:12px;
  background:#fff;
  box-shadow:0 3px 12px rgba(15,23,42,.05);
}

/* ======================================================
   RESPONSIVE SMALL MOBILE
====================================================== */
@media(max-width:420px){
  .fcwc-hero,
  .fcwc-hero-overlay{
    min-height:195px;
  }

  .fcwc-kicker{
    font-size:10px !important;
  }

  .fcwc-hero h1{
    font-size:33px;
  }

  .fcwc-textdate{
    font-size:11px !important;
    max-width:260px;
    margin-top:6px !important;
    line-height:1.3;
  }

  .fcwc-countdown{
    width:200px;
    max-width:200px;
  }

  .fcwc-countdown-row{
    grid-template-columns:repeat(4,50px);
    gap:4px;
  }

  .fcwc-timebox{
    border-radius:7px;
    padding:4px 2px;
  }

  .fcwc-timebox strong{
    font-size:14px !important;
  }

  .fcwc-timebox span{
    font-size:8px !important;
  }
}

/* ======================================================
   ELIMINATORIAS / BRACKETS
   Compatible con fcwc-brackets.js usando:
   columnas + slots + connector-box
====================================================== */

.fcwc-bracket-wrap{
  width:100%;
  overflow:hidden;
}

/* Tabs superiores de rondas */
.fcwc-bracket-tabs{
  display:flex;
  align-items:center;
  gap:8px;
  overflow-x:auto;
  padding:4px 4px 12px;
  margin-bottom:8px;
  scrollbar-width:thin;
}

.fcwc-bracket-tabs button{
  appearance:none;
  border:1px solid #e5e7eb;
  background:#fff;
  color:#0f172a;
  border-radius:999px;
  padding:8px 14px;
  font-size:12px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
  box-shadow:0 2px 6px rgba(15,23,42,.04);
}

.fcwc-bracket-tabs button.is-active{
  border:2px solid var(--fcwc-red);
  color:var(--fcwc-red);
  background:#fff;
}

/* Scroll horizontal */
.fcwc-bracket-scroll{
  width:100%;
  overflow-x:auto;
  overflow-y:hidden;
  padding:4px 0 16px;
  scrollbar-width:thin;
}

.fcwc-bracket-canvas{
  display:flex;
  align-items:flex-start;
  min-width:max-content;
  padding:0px;
  background:#fff;
}

/* Columnas */
.fcwc-bracket-column{
  flex:0 0 auto;
}

.fcwc-bracket-column h3{
  margin:0 0 10px;
  height:18px;
  font-size:13px;
  font-weight:900;
  line-height:18px;
  text-align:center;
  color:#07152f;
}

.fcwc-bracket-column-body{
  position:relative;
}

.fcwc-bracket-slot{
  position:relative;
}

.fcwc-bracket-final-row{
  display:flex;
  align-items:center;
  gap:20px;
}

.fcwc-bracket-final-row .fcwc-bracket-card{
  flex-shrink:0;
  width:240px; /* o el ancho que estés usando */
}

.fcwc-bracket-trophy{
  flex-shrink:0;
  width:110px;
  height:110px;
  object-fit:contain;
}
/* Cards */
.fcwc-bracket-card{
  width:240px;
  min-height:92px;
  display:block;
  position:relative;
  z-index:3;
  text-decoration:none;
  color:#07152f;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:7px 8px;
  box-shadow:0 2px 8px rgba(15,23,42,.08);
}

.fcwc-bracket-card:hover{
  border-color:#cbd5e1;
  box-shadow:0 4px 12px rgba(15,23,42,.11);
}

.fcwc-bracket-card-top{
  display:flex;
  align-items:center;
  gap:5px;
  margin-bottom:5px;
}

.fcwc-bracket-card-top span{
  flex:0 0 auto;
  font-size:10px;
  font-weight:900;
  color:#64748b;
}

.fcwc-bracket-card-top small{
  flex:1;
  min-width:0;
  font-size:10px;
  font-weight:800;
  color:#64748b;
  text-align:right;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.fcwc-bracket-card-top small.is-live{
  color:var(--fcwc-red);
}

/* Equipos */
.fcwc-bracket-team{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:24px;
  padding:3px 4px;
  border-radius:6px;
}

.fcwc-bracket-team.is-winner{
  background:rgba(252,39,41,.07);
}

.fcwc-bracket-team-left{
  flex:1;
  min-width:0;
  display:flex;
  align-items:center;
}

.fcwc-bracket-team-left img,
.fcwc-bracket-logo-ghost{
  width:20px;
  height:20px;
  flex:0 0 18px;
  margin-right:5px;
  border-radius:999px;
  object-fit:contain;
}

.fcwc-bracket-logo-ghost{
  display:inline-block;
  background:#e5e7eb;
}

.fcwc-bracket-team-left span{
  flex:1;
  min-width:0;
  font-size:12px;
  font-weight:700;
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.fcwc-bracket-team.is-winner .fcwc-bracket-team-left span{
  font-weight:900;
}

.fcwc-bracket-team strong{
  width:20px;
  flex:0 0 20px;
  text-align:center;
  font-size:13px;
  font-weight:900;
  color:#07152f;
}

.fcwc-bracket-team.is-winner strong{
  color:var(--fcwc-red);
}

/* Badges */
.fcwc-bracket-badge{
  position:absolute;
  left:50%;
  bottom:-11px;
  transform:translateX(-50%);
  z-index:6;
  background:#f59e0b;
  color:#fff;
  border-radius:999px;
  padding:2px 8px;
  font-size:10px;
  line-height:1.2;
  font-weight:900;
  white-space:nowrap;
}

.fcwc-bracket-badge.is-third{
  background:#9ca3af;
}

/* Trofeo */
.fcwc-bracket-trophy{
  width:110px;
  height:110px;
  object-fit:contain;
  margin-left:6px;
  position:static;
}

/* Conectores */
.fcwc-bracket-connector-box{
  position:absolute;
  left:240px;
  top:46px;
  width:70px;
  z-index:1;
  pointer-events:none;
}

.fcwc-connector-top{
  position:absolute;
  left:0;
  top:0;
  width:35px;
  height:2px;
  background:#cbd5e1;
}

.fcwc-connector-vertical{
  position:absolute;
  left:35px;
  top:0;
  width:2px;
  background:#cbd5e1;
}

.fcwc-connector-bottom{
  position:absolute;
  left:0;
  width:35px;
  height:2px;
  background:#cbd5e1;
}

.fcwc-connector-middle{
  position:absolute;
  left:35px;
  width:35px;
  height:2px;
  background:#cbd5e1;
}

/* Placeholder */
.fcwc-brackets-placeholder{
  
  color:#64748b;
  font-weight:800;
  text-align:center;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:640px){
  .fcwc-bracket-tabs{
    padding-bottom:10px;
  }

  .fcwc-bracket-tabs button{
    padding:7px 12px;
    font-size:11px;
  }

  .fcwc-bracket-canvas{
    padding-right:0px;
  }

  .fcwc-bracket-team-left span{
    font-size:11px;
  }

  .fcwc-bracket-trophy{
    width:84px;
    height:84px;
    margin-left:0;
  }

}

/* ======================================================
   CALENDARIO MUNDIAL 2026
====================================================== */

.fcwc-calendar-subtabs{
  display:flex;
  align-items:center;
  gap:8px;
  overflow-x:auto;
  padding:2px 2px 12px;
  margin-bottom:10px;
  scrollbar-width:thin;
}

.fcwc-calendar-subtabs:empty{
  display:none;
}

.fcwc-calendar-subtabs button{
  appearance:none;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:#334155;
  border-radius:999px;
  padding:8px 13px;
  font-size:12px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
  box-shadow:0 2px 7px rgba(15,23,42,.04);
}

.fcwc-calendar-subtabs button.is-active{
  border:2px solid var(--fcwc-red);
  color:var(--fcwc-red);
  background:#fff;
}

.fcwc-calendar-list{
  display:block;
}

.fcwc-calendar-card{
  position:relative;
  display:grid;
  grid-template-columns:1fr 86px 1fr;
  gap:10px;
  align-items:center;
  padding:34px 10px 12px;
  margin-bottom:10px;
  text-decoration:none;
  color:var(--fcwc-text);
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  box-shadow:0 3px 12px rgba(15,23,42,.05);
  transition:transform .15s ease, box-shadow .15s ease;
}

.fcwc-calendar-card:hover{
  transform:translateY(-1px);
  box-shadow:0 5px 16px rgba(15,23,42,.09);
}

.fcwc-calendar-top{
  position:absolute;
  top:9px;
  left:12px;
  right:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.fcwc-calendar-top span{
  color:#1e40af;
  font-size:11px;
  font-weight:900;
}

.fcwc-calendar-top small{
  color:#64748b;
  font-size:11px;
  font-weight:900;
}

.fcwc-calendar-team{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  min-width:0;
}

.fcwc-calendar-team img,
.fcwc-calendar-placeholder{
  width:34px;
  height:34px;
  object-fit:contain;
}

.fcwc-calendar-placeholder{
  display:block;
  border-radius:999px;
  background:#e5e7eb;
}

.fcwc-calendar-team strong{
  font-size:11px;
  line-height:1.1;
  text-align:center;
  text-transform:uppercase;
  font-weight:900;
}

.fcwc-calendar-center{
  text-align:center;
  min-width:0;
}

.fcwc-calendar-center strong{
  display:block;
  font-size:18px;
  line-height:1;
  font-weight:700;
}

.fcwc-calendar-center span{
  display:block;
  margin-top:5px;
  font-size:12px;
  color:#64748b;
  font-weight:700;
}

.fcwc-calendar-center small{
  display:block;
  margin-top:3px;
  font-size:11px;
  font-weight:700;
}

.fcwc-calendar-center small.is-live{
  color:#ef4444;
  font-weight:700;
}

.fcwc-calendar-center small.is-finished{
  color:#6b7280;
  font-weight:700;
}

.fcwc-calendar-center small.is-scheduled{
  color:#046bd2;
  font-weight:700;
}

.fcwc-calendar-loading{
  margin:12px 0 4px;
  text-align:center;
  color:#64748b;
  font-size:12px;
  font-weight:700;
}

.fcwc-calendar-empty{
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:14px;
  text-align:center;
  color:#64748b;
  font-size:13px;
  font-weight:800;
  background:#fff;
}

/* ========================================
   Quitar estilos de enlace del tema
======================================== */

.fcwc-calendar-card,
.fcwc-calendar-card:visited,
.fcwc-calendar-card:hover,
.fcwc-calendar-card:focus{
  text-decoration:none !important;
  color:inherit !important;
}

.fcwc-calendar-card *{
  text-decoration:none !important;
}

/* Hora */
.fcwc-calendar-center strong{
  color:#0f172a !important;
}

/* Grupo */
.fcwc-calendar-center span{
  color:#64748b !important;
}

/* Estado */
.fcwc-calendar-center small{
  font-weight:700;
}

.fcwc-calendar-center small.is-live{
  color:#ef4444 !important;
}

.fcwc-calendar-center small.is-finished{
  color:#6b7280 !important;
}

.fcwc-calendar-center small.is-scheduled{
  color:#046bd2 !important;
}

/* Nombres equipos */
.fcwc-calendar-team strong{
  color:#0f172a !important;
  text-transform:uppercase;
}

/* P1, P2, P74 */
.fcwc-calendar-top span{
  color:#1e3a8a !important;
  font-weight:900;
}

/* Fecha */
.fcwc-calendar-top small{
  color:#64748b !important;
}

/* ======================================================
   MOVIL
====================================================== */

@media(max-width:640px){
  .fcwc-calendar-subtabs{
    margin-left:-2px;
    margin-right:-2px;
    padding-bottom:9px;
  }

  .fcwc-calendar-subtabs button{
    padding:7px 11px;
    font-size:11px;
  }

  .fcwc-calendar-card{
    grid-template-columns:1fr 76px 1fr;
    gap:8px;
    padding:32px 8px 11px;
  }

  .fcwc-calendar-top span,
  .fcwc-calendar-top small{
    font-size:10px;
  }

  .fcwc-calendar-team img,
  .fcwc-calendar-placeholder{
    width:30px;
    height:30px;
  }

  .fcwc-calendar-team strong{
    font-size:10px;
  }

  .fcwc-calendar-center strong{
    font-size:20px;
  }

  .fcwc-calendar-center span{
    font-size:12px;
  }

  .fcwc-calendar-center small{
    font-size:11px;
  }
}

/* ==========================================
   STANDINGS
========================================== */

.fcwc-standings-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  padding:12px;
  margin-bottom:12px;
  box-shadow:0 3px 12px rgba(15,23,42,.05);
}

.fcwc-standings-card h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
  color:#0f172a;
}

.fcwc-standings-head-row,
.fcwc-standings-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 40px 40px 32px 32px 32px 40px;
  align-items:center;
}

.fcwc-standings-head-row{
  padding-bottom:8px;
  margin-bottom:4px;
  border-bottom:1px solid #e5e7eb;
  font-size:11px;
  font-weight:900;
  color:#64748b;
}

.fcwc-standings-head-row{
  justify-items:center;
}

.fcwc-standings-head-row > div:first-child{
  justify-self:start;
}

.fcwc-standings-th-team{
  text-align:left;
}

.fcwc-standings-row{
  padding:8px 0;
}

.fcwc-standings-team{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.fcwc-standings-rank{
  width:18px;
  text-align:center;
  font-size:12px;
  font-weight:800;
  color:#64748b;
}

.fcwc-standings-team img{
  width:24px;
  height:24px;
  object-fit:contain;
}

.fcwc-standings-team-name{
  min-width:0;
}

.fcwc-standings-team-name strong{
  display:block;
  font-size:12px;
  font-weight:700;
  color:#111827;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.fcwc-standings-team-name small{
  display:block;
  font-size:10px;
  color:#64748b;
  margin-top:1px;
}

.fcwc-standings-row > div:not(.fcwc-standings-team){
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:#111827;
}

.fcwc-standings-pts{
  font-size:13px !important;
  font-weight:900 !important;
}

.fcwc-standings-row.is-qualified{
  border-left:4px solid #22c55e;
  padding-left:6px;
}

.fcwc-standings-row.is-third{
  border-left:4px solid #facc15;
  padding-left:6px;
}

.fcwc-standings-loading{
  text-align:center;
  font-size:12px;
  font-weight:700;
  color:#64748b;
}

.fcwc-standings-rules{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  padding:12px;
  margin-top:10px;
}

.fcwc-standings-rules h3{
  margin:0 0 10px;
  font-size:14px;
  font-weight:900;
}

.fcwc-standings-rules p{
  margin:0 0 6px;
  font-size:12px;
  color:#64748b;
}

.fcwc-standings-rules small{
  display:block;
  margin-top:8px;
  font-size:11px;
  color:#64748b;
}

.fcwc-standings-row{
  border-left:4px solid transparent;
  padding-left:6px;
}

.fcwc-standings-row.is-qualified{
  border-left-color:#22c55e;
}

.fcwc-standings-row.is-third{
  border-left-color:#facc15;
}

/* M贸vil */

@media(max-width:640px){

  .fcwc-standings-head-row,
  .fcwc-standings-row{
    grid-template-columns:minmax(0,1fr) 32px 30px 24px 24px 24px 32px;
  }

  .fcwc-standings-team-name strong{
    font-size:11px;
  }

  .fcwc-standings-team img{
    width:22px;
    height:22px;
  }
}

/* ======================================================
   ESTADIOS MUNDIAL 2026
====================================================== */

.fcwc-stadium-grid-pro{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.fcwc-stadium-card-pro{
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  background:#fff;
  box-shadow:0 3px 12px rgba(15,23,42,.06);
  cursor:pointer;
}

.fcwc-stadium-photo{
  width:100%;
  height:180px;
  display:block;
  object-fit:cover;
  background:#e5e7eb;
}

.fcwc-stadium-photo.is-empty{
  background:linear-gradient(135deg,#e5e7eb,#f8fafc);
}

.fcwc-stadium-card-body{
  padding:12px;
}

.fcwc-stadium-card-body h3{
  margin:0 0 6px;
  font-size:17px;
  font-weight:900;
  color:#061a38;
}

.fcwc-stadium-card-body p{
  margin:0 0 8px;
  font-size:12px;
  font-weight:700;
  color:#64748b;
}

.fcwc-stadium-meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:10px;
}

.fcwc-stadium-meta-row span{
  display:inline-flex;
  border-radius:999px;
  padding:5px 8px;
  background:#eef2f7;
  color:#334155;
  font-size:11px;
  font-weight:900;
}

.fcwc-stadium-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.fcwc-stadium-bottom strong{
  color:#0f172a;
  font-size:12px;
  font-weight:900;
}

.fcwc-stadium-bottom button{
  border:0;
  border-radius:999px;
  padding:7px 11px;
  background:#0646c9;
  color:#fff;
  font-size:11px;
  font-weight:900;
  cursor:pointer;
}

/* Vista detalle */

.fcwc-stadium-detail{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 3px 12px rgba(15,23,42,.06);
}

.fcwc-stadium-back{
  margin:12px;
  border:0;
  border-radius:999px;
  padding:8px 12px;
  background:#eef2f7;
  color:#0f172a;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}

.fcwc-stadium-detail-photo{
  width:100%;
  height:280px;
  display:block;
  object-fit:cover;
  background:#e5e7eb;
}

.fcwc-stadium-detail h3{
  margin:12px 12px 6px;
  color:#061a38;
  font-size:22px;
  font-weight:900;
}

.fcwc-stadium-location,
.fcwc-stadium-info{
  margin:0 12px 8px;
  color:#64748b;
  font-size:13px;
  font-weight:700;
}

.fcwc-stadium-detail h4{
  margin:16px 12px 10px;
  font-size:15px;
  font-weight:900;
  color:#0f172a;
}

/* Partidos del estadio */

.fcwc-stadium-match-card{
  display:block;
  margin:0 12px 10px;
  padding:10px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  background:#fff;
  color:#0f172a;
  text-decoration:none !important;
  box-shadow:0 2px 8px rgba(15,23,42,.04);
}

.fcwc-stadium-match-card,
.fcwc-stadium-match-card *,
.fcwc-stadium-match-card:visited,
.fcwc-stadium-match-card:hover{
  text-decoration:none !important;
}

.fcwc-stadium-match-top{
  margin-bottom:8px;
}

.fcwc-stadium-match-top span{
  color:#64748b;
  font-size:11px;
  font-weight:900;
}

.fcwc-stadium-match-body{
  display:grid;
  grid-template-columns:1fr 86px 1fr;
  align-items:center;
  gap:10px;
}

.fcwc-stadium-match-team{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  min-width:0;
}

.fcwc-stadium-match-team img,
.fcwc-stadium-logo-ghost{
  width:34px;
  height:34px;
  object-fit:contain;
}

.fcwc-stadium-logo-ghost{
  border-radius:999px;
  background:#e5e7eb;
}

.fcwc-stadium-match-team strong{
  color:#0f172a;
  font-size:10px;
  line-height:1.1;
  font-weight:900;
  text-align:center;
  text-transform:uppercase;
}

.fcwc-stadium-match-center{
  text-align:center;
}

.fcwc-stadium-match-center strong{
  display:block;
  color:#0f172a;
  font-size:20px;
  line-height:1;
  font-weight:900;
}

.fcwc-stadium-match-center span{
  display:block;
  margin-top:4px;
  color:#64748b;
  font-size:10px;
  font-weight:800;
}

.fcwc-stadium-match-center small{
  display:block;
  margin-top:3px;
  color:#0646c9;
  font-size:9px;
  font-weight:900;
}

.fcwc-stadium-empty,
.fcwc-stadium-loading{
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:14px;
  text-align:center;
  color:#64748b;
  background:#fff;
  font-size:13px;
  font-weight:800;
}

.fcwc-stadium-country-tabs{
  display:flex;
  align-items:center;
  gap:8px;
  overflow-x:auto;
  padding:2px 2px 12px;
  margin-bottom:10px;
  scrollbar-width:thin;
}

.fcwc-stadium-country-tabs button{
  appearance:none;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:#334155;
  border-radius:999px;
  padding:8px 13px;
  font-size:12px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  white-space:nowrap;
  box-shadow:0 2px 7px rgba(15,23,42,.04);
}

.fcwc-stadium-country-tabs button.is-active{
  background:#0646c9;
  border-color:#0646c9;
  color:#fff;
}
/* ======================================================
   Mﾃ天IL
====================================================== */

@media(max-width:640px){
  .fcwc-stadium-grid-pro{
    grid-template-columns:1fr;
    gap:12px;
  }

  .fcwc-stadium-photo{
    height:190px;
  }

  .fcwc-stadium-card-body{
    padding:10px;
  }

  .fcwc-stadium-card-body h3{
    font-size:16px;
  }

  .fcwc-stadium-detail-photo{
    height:220px;
  }

  .fcwc-stadium-detail h3{
    font-size:18px;
  }

  .fcwc-stadium-match-body{
    grid-template-columns:1fr 76px 1fr;
    gap:8px;
  }

  .fcwc-stadium-match-team img,
  .fcwc-stadium-logo-ghost{
    width:30px;
    height:30px;
  }

  .fcwc-stadium-match-center strong{
    font-size:18px;
  }
}

/* =====================================================
   NEWS
===================================================== */

.fcwc-news-grid{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:18px;
}

.fcwc-news-card{
  display:block;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
  color:#111827;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
  transition:.2s ease;
}

.fcwc-news-card:hover{
  transform:translateY(-2px);
}

.fcwc-news-card img{
  width:100%;
  display:block;
  object-fit:cover;
}

/* ==========================================
   NOTICIA PRINCIPAL
========================================== */

.fcwc-news-card:first-child{
  grid-row:span 3;
}

.fcwc-news-card:first-child img{
  height:340px;
}

.fcwc-news-card:first-child .fcwc-news-body{
  padding:18px;
}

.fcwc-news-card:first-child h3{
  margin:10px 0;
  font-size:24px;
  line-height:1.15;
  font-weight:700;
  color:#0b1f3b;
}

.fcwc-news-card:first-child time{
  color:#64748b;
  font-size:13px;
}

/* ==========================================
   NOTICIAS SECUNDARIAS
========================================== */

.fcwc-news-card:not(:first-child){
  display:grid;
  grid-template-columns:140px 1fr;
  align-items:center;
}

.fcwc-news-card:not(:first-child) img{
  width:140px;
  height:110px;
}

.fcwc-news-card:not(:first-child) .fcwc-news-body{
  padding:12px;
}

.fcwc-news-card:not(:first-child) h3{
  margin:0;
  font-size:17px;
  line-height:1.3;
  font-weight:700;
  color:#0b1f3b;
}

.fcwc-news-card:not(:first-child) time{
  display:block;
  margin-top:8px;
  font-size:12px;
  color:#64748b;
}

.fcwc-news-card,
.fcwc-news-card:hover,
.fcwc-news-card:focus,
.fcwc-news-card h3,
.fcwc-news-card h3 a{
  text-decoration:none !important;
}

/* ==========================================
   ETIQUETA
========================================== */

.fcwc-news-body span{
  display:none;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:#fc2729;
  color:#fff;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
}

.fcwc-news-body h3{
  font-size:22px;
  line-height:1.25;
  font-weight:700;
  margin:0;
  text-decoration:none !important;
}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px){

  .fcwc-news-grid{
    grid-template-columns:1fr;
  }

  .fcwc-news-card:first-child{
    grid-row:auto;
  }

  .fcwc-news-card:first-child img{
    height:220px;
  }

  .fcwc-news-card:first-child h3{
    font-size:20px;
  }

  .fcwc-news-card:not(:first-child){
    grid-template-columns:110px 1fr;
  }

  .fcwc-news-card:not(:first-child) img{
    width:110px;
    height:80px;
  }

  .fcwc-news-card:not(:first-child) h3{
    font-size:15px;
  }
}

@media (max-width: 600px){

  .fcwc-news-card:not(:first-child){
    grid-template-columns:95px 1fr;
  }

  .fcwc-news-card:not(:first-child) img{
    width:95px;
    height:70px;
  }

  .fcwc-news-card:first-child h3{
    font-size:20px;
  }
}

/* ======================================================
   VIDEOS MUNDIAL 2026
====================================================== */

.fcwc-video-main{
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  background:#fff;
  box-shadow:0 3px 12px rgba(15,23,42,.06);
  margin-bottom:16px;
}

.fcwc-video-main-image{
  position:relative;
  height:512px;
  background:#020617;
  overflow:hidden;
}

.fcwc-video-main-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  opacity:.35;
}

.fcwc-video-main-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:18px;
  text-align:center;
}

.fcwc-video-main-overlay p{
  margin:0 0 16px;
  color:#e5e7eb;
  font-size:15px;
  font-weight:900;
}

.fcwc-video-main-overlay a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:10px;
  background:#fc2729;
  color:#fff !important;
  text-decoration:none !important;
  font-size:13px;
  font-weight:900;
}

.fcwc-video-main-body{
  padding:14px;
}

.fcwc-video-main-body h3{
  margin:0 0 6px;
  color:#0f172a;
  font-size:20px;
  line-height:1.25;
  font-weight:700;
}

.fcwc-video-main-body p{
  margin:0;
  color:#64748b;
  font-size:12px;
  font-weight:800;
}

.fcwc-video-short-badge,
.fcwc-video-mini-badge{
  position:absolute;
  left:8px;
  top:8px;
  border-radius:6px;
  padding:4px 7px;
  background:#fc2729;
  color:#fff;
  font-size:9px;
  font-weight:900;
}

.fcwc-videos-list-title{
  margin:0 0 10px;
  color:#0f172a;
  font-size:17px;
  font-weight:900;
}

.fcwc-videos-list{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.fcwc-video-card{
  width:100%;
  display:grid;
  grid-template-columns:150px 1fr;
  gap:12px;
  align-items:center;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  padding:0;
  overflow:hidden;
  background:#fff;
  text-align:left;
  cursor:pointer;
  box-shadow:0 2px 8px rgba(15,23,42,.04);
}

.fcwc-video-card.is-active{
  border-color:#fc2729;
}

.fcwc-video-thumb{
  position:relative;
  width:150px;
  height:100px;
  background:#111827;
}

.fcwc-video-thumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.fcwc-video-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);

  width:42px;
  height:42px;
  border-radius:50%;

  background:rgba(0,0,0,.55);
  border:2px solid #fff;
}

.fcwc-video-play::before{
  content:'';
  position:absolute;

  left:16px;
  top:11px;

  width:0;
  height:0;

  border-top:8px solid transparent;
  border-bottom:8px solid transparent;
  border-left:13px solid #fff;
}

.fcwc-video-info{
  min-width:0;
  padding:10px 10px 10px 0;
}

.fcwc-video-info h4{
  margin:0;
  color:#0f172a;
  font-size:18px;
  line-height:1.3;
  font-weight:700;
}

.fcwc-video-info span{
  display:inline-flex;
  margin-top:8px;
  border-radius:999px;
  padding:4px 9px;
  background:rgba(252,39,41,.10);
  color:#fc2729;
  font-size:10px;
  font-weight:900;
}

.fcwc-video-empty{
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:16px;
  background:#fff;
  color:#64748b;
  font-size:13px;
  font-weight:800;
  text-align:center;
}

.fcwc-video-card,
.fcwc-video-card:hover,
.fcwc-video-card:focus,
.fcwc-video-card:active{
  background:#fff !important;
  color:#0f172a !important;
  border-color:rgba(15,23,42,.08) !important;
  outline:none !important;
  box-shadow:0 2px 8px rgba(15,23,42,.04) !important;
}

.fcwc-video-card.is-active,
.fcwc-video-card.is-active:hover,
.fcwc-video-card.is-active:focus{
  border-color:#fc2729 !important;
  background:#fff !important;
}
/* ======================================================
   Mﾃ天IL
====================================================== */

@media(max-width:640px){
  .fcwc-video-main-image{
    height:220px;
  }

  .fcwc-video-main-body h3{
    font-size:16px;
  }

  .fcwc-video-card{
    grid-template-columns:120px 1fr;
  }

  .fcwc-video-thumb{
    width:120px;
    height:88px;
  }

  .fcwc-video-info h4{
    font-size:13px;
  }
}

.fcwc-match-auto{
  margin-bottom:24px;
}

.fcwc-app-match-card{
  max-width:760px;
  margin:0 auto 14px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:12px;
  background:#fff;
  padding:8px 14px 10px;
  box-shadow:0 3px 12px rgba(15,23,42,.05);
}

.fcwc-app-match-top{
  height:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#64748b;
  font-size:12px;
  font-weight:800;
  text-align:center;
}

.fcwc-app-match-row{
  display:grid;
  grid-template-columns:1fr 110px 1fr;
  align-items:center;
  gap:10px;
}

.fcwc-app-match-team{
  display:flex;
  flex-direction:column;
  align-items:center;
  min-width:0;
}

.fcwc-app-match-team img{
  width:50px;
  height:50px;
  object-fit:contain;
  margin-bottom:4px;
}

.fcwc-app-match-team strong{
  max-width:100%;
  color:#07152f;
  font-size:13px;
  line-height:1.1;
  font-weight:800;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.fcwc-app-match-center{
  text-align:center;
}

.fcwc-app-match-center strong{
  display:block;
  color:#07152f;
  font-size:18px;
  line-height:1;
  font-weight:700;
}

.fcwc-app-match-center span{
  display:block;
  margin-top:4px;
  color:#046bd2;
  font-size:12px;
  font-weight:700;
}

.fcwc-app-match-center small{
  display:block;
  margin-top:3px;
  color:#64748b;
  font-size:10px;
  font-weight:800;
}

.fcwc-single-tabs{
  max-width:760px;
  margin:0 auto 14px;
  display:flex;
  gap:8px;
}

.fcwc-single-tabs button{
  appearance:none;
  border:0;
  background:#eef2f7;
  color:#07152f;
  padding:9px 14px;
  border-radius:10px;
  cursor:pointer;
  font-size:12px;
  font-weight:700;
}

.fcwc-single-tabs button.is-active{
  background:#046bd2;
  color:#fff;
}

.fcwc-single-panel{
  display:none;
}

.fcwc-single-panel.is-active{
  display:block;
}
.fcwc-app-match-center span.is-live{
  color:#ef4444;
}

.fcwc-app-match-center span.is-finished{
  color:#6b7280;
}

.fcwc-match-standings-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:14px;
  box-shadow:0 3px 12px rgba(15,23,42,.04);
}

.fcwc-match-standings-card h3{
  margin:0 0 12px;
  color:#061a38;
  font-size:17px;
  font-weight:800;
}

.fcwc-match-standings-table{
  width:100%;
}

.fcwc-match-standings-head,
.fcwc-match-standings-row{
  display:grid;
  grid-template-columns:1fr 42px 42px 48px;
  gap:8px;
  align-items:center;
}

.fcwc-match-standings-head{
  padding:0 0 8px;
  color:#64748b;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  border-bottom:1px solid rgba(15,23,42,.08);
}

.fcwc-match-standings-row{
  padding:9px 0;
  border-bottom:1px solid rgba(15,23,42,.06);
  font-size:13px;
}

.fcwc-match-standings-row:last-child{
  border-bottom:0;
}

.fcwc-match-standings-team{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.fcwc-match-standings-team b{
  width:18px;
  color:#64748b;
  font-size:12px;
}

.fcwc-match-standings-team img{
  width:24px;
  height:24px;
  object-fit:contain;
}

.fcwc-match-standings-team strong{
  min-width:0;
  color:#0f172a;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.fcwc-match-standings-row > span{
  text-align:center;
  color:#0f172a;
  font-weight:700;
}

.single-fcwc_match .fcwc-app-match-card,
.single-fcwc_match .fcwc-single-tabs{
  max-width:100%;
}
.fcwc-match-standings-head{
  justify-items:center;
}

.fcwc-match-standings-head span:first-child{
  justify-self:start;
}

.fcwc-summary-video-card{
  display:block;
  max-width:760px;
  margin:0 auto 24px;
  border-radius:16px;
  overflow:hidden;
  background:#0f172a;
  text-decoration:none !important;
}

.fcwc-summary-video-thumb{
  position:relative;
  min-height:320px;
  background:#0f172a;
}

.fcwc-summary-video-thumb img{
  width:100%;
  height:410px;
  object-fit:cover;
  display:block;
}

.fcwc-summary-video-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.25);
}

.fcwc-summary-play{
  position:absolute;
  z-index:2;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:82px;
  height:82px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
  border:2px solid rgba(255,255,255,.7);
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}

.fcwc-summary-play::before{
  content:"";
  position:absolute;
  left:33px;
  top:24px;
  width:0;
  height:0;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
  border-left:22px solid rgba(255,255,255,.95);
}

.fcwc-summary-video-body{
  max-width:760px;
  margin:24px auto 0;
  padding:0;
  background:none;
}

.fcwc-summary-video-body h2{
  margin:0 0 12px;
  color:#061a38;
  font-size:30px;
  line-height:1.2;
  font-weight:900;
}

.fcwc-summary-video-body p{
  margin:0;
  color:#475569;
  font-size:16px;
  line-height:1.7;
}

.fcwc-summary-video-body p strong{
  color:#061a38;
  font-weight:800;
}


@media(max-width:640px){
  .fcwc-app-match-card{
    margin-left:0;
    margin-right:0;
  }

  .fcwc-app-match-row{
    grid-template-columns:1fr 100px 1fr;
  }

  .fcwc-app-match-team img{
    width:46px;
    height:46px;
  }

  .fcwc-app-match-team strong{
    font-size:12px;
  }

  .fcwc-app-match-center strong{
    font-size:20px;
  }
  .fcwc-app-match-center small{
    font-size:10px;
}
.fcwc-summary-video-thumb img{
  
  height:120px;
}
.fcwc-summary-video-thumb,
  .fcwc-summary-video-thumb img{
    height:220px;
    min-height:220px;
  }

  .fcwc-summary-play{
    width:58px;
    height:58px;
  }

  .fcwc-summary-play::before{
    left:24px;
    top:18px;
    border-top-width:11px;
    border-bottom-width:11px;
    border-left-width:17px;
  }
}