/*
========================
TITILLIUM WEBFONTS
========================
*/
@font-face {
    font-family: 'Titillium';
    src: url('/webfonts/Titillium-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Titillium';
    src: url('/webfonts/Titillium-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*
========================
GOBAL CSS START
========================
*/

/* No overflow on html/body - overflow there breaks position: sticky in Chrome */
body {
    font-family: 'Titillium', sans-serif;
    font-size: 16px;
    font-weight: 300;
	background: #fff;
	color: #5D5D5D;
}

.page-content-wrapper {
	overflow-x: hidden;
}
/*
:root {
    --primery-color: #7A3877;
    --selection-bg: #7A3877;
    --selection-color: #fff;
    --scroll-top-bg: #7A3877;
    --scroll-top-color: #fff;
    --shawdow-one: 0px 3px 6px rgba(0, 0, 0, 0.16);
}*/

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-webkit-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

::-moz-selection {
    color: var(--selection-color);
    background: var(--selection-bg);
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--scroll-top-bg);
    text-align: center;
    font-size: 22px;
    color: var(--scroll-top-color);
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--scroll-top-bg);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*===============
 GOBAL CSS END  
 ============== */

 /*====================== header area style start hare ======================== */


/* header top style  */

.header-top-area {
    padding-left: calc((100vw - 1615px) / 2);
}

.header-top-wrapper {
    padding-left: 220px;
    padding-right: 30px;
    padding-block: 10px;
    height: 72px;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-wrapper p {
    font-size: 13px;
    font-weight: 400;
}
.equipos-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 57px;
}

.header-social ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header-social a:hover svg path {
    fill: var(--primery-color);
    transition: 0.3s;
}

/* header top area style end hare  */
/* nav area style start hare */

/* Sticky: make the whole header stick (nav stays in place). Nav-only sticky is fragile with overflow. */
.header-area.sticky-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
}

.nav-area {
    background: #252525;
    color: #fff;
    padding: 8px 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-logo a img {
	margin-top: -60px;
	margin-bottom: -15px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 120px;
}
.menu-list ul {
    display: flex;
    align-items: center;
    gap: 65px;
}
.menu-list ul a:hover {
    font-weight: 400;
}

.notification-button {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-inline: 20px;
    padding-top: 15px;
    padding-bottom: 10px;
}

.notification-button button {
    background: transparent;
    border: none;
    position: relative;
}

.notification-button button.has-notification::before {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #FF4545;
    position: absolute;
    bottom: 3px;
    right: 0px;
}

.mobile-nav-area {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #252525;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    color: #fff;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-nav-wrapper {
    padding-inline: clamp(0.35rem, 2.5vw, 1.875rem);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(0.2rem, 1.2vw, 1.875rem);
    padding-bottom: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.mobile-nav-wrapper a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
}
.mobile-nav-wrapper .icons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Avoid display:* on these imgs — would beat .hovered-icon{display:none} and show both states at once */
.mobile-nav-wrapper .icons img,
.mobile-nav-wrapper .icons svg {
    max-width: min(22px, 100%);
    height: auto;
}
/* Page names under each mobile bottom nav icon - keep visible */
.mobile-nav-wrapper a span {
    font-size: clamp(9px, 2.6vw, 11px);
    font-weight: 400;
    display: block;
    opacity: 0.75;
    text-align: center;
    line-height: 1.15;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}
.single-menu-item .hovered-icon {
    display: none;
}
.single-menu-item.active .hovered-icon {
    display: block;
}
.single-menu-item.active .normal-icon {
    display: none;
}
.single-menu-item.active span {
    opacity: 1;
    font-weight: 700;
    color: #fff;
}
.single-menu-item.active {
    position: relative;
}
.single-menu-item.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

.nav-info-btn {
    background: transparent;
    border: none;
    margin-bottom:  auto;
    padding-inline: 5px;
}

.menu-list ul li a {
    font-weight: 300;
}
.menu-list ul li a.active {
    font-weight: 400;
}


/*====================== header area style end hare========================  */
/*====================== hero area style start hare ========================= */

.hero-area {
    position: relative;
    padding-top: 50px;
    overflow: visible;
    padding-bottom: 50px;
    min-height: 320px;
}

.hero-match-card {
    background: #F7F7F7;
    box-shadow: var(--shawdow-one);
    border-radius: 15px;
    overflow: hidden;
}

.match-card-header {
    padding-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.match-card-header .match-status {
    padding: 6px 13px;
    background: var(--primery-color);
    color: #fff;
    border-radius: 0 10px 0 22px;
    font-size: 13px;
}
.match-card-header .match-date {
    color: var(--primery-color);
    font-size: 13px;
    font-weight: 500;
}

.hero-match-card .single-team-wp {
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    padding-top: 16px;
}
/* Live game: add space to the right of the flags (between flag and score) */
.hero-match-card--live .single-team-wp .team-info-card {
    margin-right: 12px;
    margin-top: 10px;
}
.single-team-wp .team-info-card {
    display: flex;
    align-items: center;
   
}
.team-info-card .team-logo {
    width: 40px;
    height: 40px;
}

.team-logo img {
    max-width: 100%;
    max-height: 100%;
}

.team-info-card .team-name {
    font-size: 12px;
    font-weight: 500;
}
.team-info-card .team-score {
    font-size: 11px;
    font-weight: 300;
}

.team-score-board ul {
    display: flex;
    gap: 15px;
    width: 5.5em;
    min-width: 5.5em;
}
.team-score-board ul li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8.5px;
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}
.team-score-board ul li h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primery-color);
}
.team-score-board ul li p {
    font-size: 14px;
    color: var(--primery-color);
}
.team-score-board ul li:first-child p {
    font-size: 14px;
}
/* R H E only on top row; bottom row values align underneath */
.team-score-board--values-only ul {
    width: 5.5em;
    min-width: 5.5em;
}
.team-score-board--values-only ul li {
    justify-content: flex-end;
    flex: 1 1 0;
    min-width: 0;
}
.team-score-board--values-only ul li p {
    margin: 0;
}

.actions-buttons {
    display: flex;
}
.actions-buttons button, .actions-buttons a {
    background: transparent;
    border: none;
    flex: 1;
    padding: 15px;
    color: #939393;
    font-size: 11px;
    flex-wrap: 900;
}
.actions-buttons .divider {
    width: 1px;
    background: #707070;
    opacity: 0.3;
}
.hero-slider {
    overflow: visible;
    padding-bottom: 60px;
}

/* Home & team page: wider slide so bases image isn't cut off (calendar uses resultados-inner-wp) */
.hero-area .hero-slider .swiper-slide {
    min-width: 460px;
    box-sizing: border-box;
}
.hero-area .hero-match-card {
    min-width: 0;
}

/* Home only — minimal scorecard (LiveGameCard / FinalGameCard when homeHeroSimplified) */
.hero-match-card--home-simplified {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 28px rgba(24, 34, 90, 0.1);
    border-radius: 22px;
    overflow: hidden;
    padding: 24px 24px 0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}
.hero-match-card--home-simplified.hero-match-card--live {
    /* Content height; avoid min-height + actions margin-top:auto creating a gap above the button row */
    min-height: 0;
}
.hero-match-card--home-simplified.hero-match-card--live .home-hero-card__matchup {
    margin-bottom: 0;
    padding: 10px 4px 4px;
}
.hero-match-card--home-simplified.hero-match-card--live .home-hero-card__actions {
    margin-top: 0;
    padding-top: 6px;
}
.hero-match-card--home-simplified.hero-match-card--live .home-hero-card__actions.actions-buttons a,
.hero-match-card--home-simplified.hero-match-card--live .home-hero-card__actions.actions-buttons button {
    padding-top: 12px;
    padding-bottom: 12px;
}
/* Final games: room for W / L / SV pitcher row on one line (aligns with live card width) */
.hero-match-card--home-simplified.hero-match-card--final {
    max-width: 380px;
    width: 100%;
    margin-inline: auto;
    min-height: 0;
    padding: 18px 18px 0;
}
.hero-match-card--home-simplified.hero-match-card--final .home-hero-card__team-row {
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 0;
}
.hero-match-card--home-simplified.hero-match-card--final .home-hero-card__team-main {
    flex: 0 1 auto;
    min-width: 0;
}
.hero-match-card--home-simplified.hero-match-card--final .home-hero-card__runs {
    margin-left: auto;
}
/* Team hero: final + innings inline with logos */
.hero-match-card--home-simplified.hero-match-card--final-with-innings {
    max-width: min(100%, 380px);
}
.hero-match-card--home-simplified .home-hero-card__team-row--inlinescore {
    align-items: center;
    gap: 6px;
    padding: 6px 0;
}
.hero-match-card--home-simplified .home-hero-card__team-row--inlinescore .home-hero-card__team-main {
    flex: 0 1 auto;
    max-width: 132px;
    min-width: 0;
}
.hero-match-card--home-simplified .home-hero-card__inning-strip {
    flex: 1 1 0;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1px;
}
.hero-match-card--home-simplified .line-score-board--hero-inline {
    gap: 2px;
}
.hero-match-card--home-simplified .line-score-board--hero-inline .line-top-score ul,
.hero-match-card--home-simplified .line-score-board--hero-inline .line-bottom-score ul {
    gap: 4px;
}
.hero-match-card--home-simplified .line-score-board--hero-inline .line-top-score ul li,
.hero-match-card--home-simplified .line-score-board--hero-inline .line-bottom-score ul li {
    font-size: 10px;
    font-weight: 600;
    color: var(--primery-color);
    min-width: 0.85em;
    text-align: center;
    line-height: 1.2;
}
.hero-match-card--home-simplified .line-score-board--hero-inline .line-top-score ul li {
    font-weight: 500;
    opacity: 0.85;
}
.hero-match-card--home-simplified .home-hero-card__inning-spacer {
    visibility: hidden;
}
.hero-match-card--home-simplified .home-hero-card__rhe-totals {
    flex-shrink: 0;
}
.hero-match-card--home-simplified .home-hero-card__rhe-totals ul {
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.hero-match-card--home-simplified .home-hero-card__rhe-totals li {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 1.15rem;
}
.hero-match-card--home-simplified .home-hero-card__rhe-lbl {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}
.hero-match-card--home-simplified .home-hero-card__rhe-val {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #111;
    line-height: 1.15;
}
/* Live only: hero shell, logo + abbr + R/H/E (no inning-by-inning strip) */
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__team-main--live-rhe {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__abbr--live-rhe {
    font-size: clamp(1.1rem, 2.6vw, 1.5rem);
    font-weight: 800;
    color: #111;
    letter-spacing: 0.04em;
    line-height: 1.15;
    flex: 1 1 auto;
    min-width: 0;
    align-self: center;
}
.home-hero-card__teams--live-rhe {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__team-row--live-rhe {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 2px;
    margin: 0;
}
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__team-row--live-rhe + .home-hero-card__team-row--live-rhe {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 10px;
    margin-top: 4px;
}
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__rhe-totals {
    flex-shrink: 0;
    padding: 0;
}
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__rhe-totals ul {
    gap: 14px;
}
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__rhe-totals li {
    min-width: 1.5rem;
}
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__rhe-lbl {
    font-size: 0.625rem;
}
.hero-match-card--home-simplified.hero-match-card--live-linescore .home-hero-card__rhe-val {
    font-size: 1.125rem;
}
/* Live: R/H/E block left, bases / count / outs right */
.home-hero-card__scoreboard-layout {
    display: flex;
    align-items: stretch;
    gap: 12px;
}
.home-hero-card__scoreboard-layout > .home-hero-card__teams {
    flex: 1 1 0;
    min-width: 0;
}
.home-hero-card__live-situation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 10px 8px 6px;
    margin-top: 2px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.home-hero-card__live-situation--aside {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    padding: 8px 4px 8px 14px;
    border-top: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
    min-width: 76px;
}
.home-hero-card__live-situation--aside svg {
    width: 48px;
    height: auto;
    flex-shrink: 0;
}
@media (max-width: 420px) {
    .home-hero-card__scoreboard-layout {
        flex-direction: column;
        align-items: stretch;
    }
    .home-hero-card__live-situation--aside {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding: 10px 8px 4px;
        min-width: 0;
    }
}
.home-hero-card__live-situation-count {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primery-color);
    min-width: 3.5ch;
    text-align: center;
}
.home-hero-card__live-situation--aside .home-hero-card__live-situation-count {
    font-size: 1.0625rem;
}
.home-hero-card__live-situation-outs ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.home-hero-card__live-situation-outs ul li {
    width: 6px;
    height: 6px;
    display: block;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 50%;
}
.home-hero-card__live-situation-outs ul li.fill {
    background: var(--primery-color);
    border-color: var(--primery-color);
}
.home-hero-card__live-situation--aside .home-hero-card__live-situation-outs ul li {
    width: 7px;
    height: 7px;
}
.hero-match-card--home-simplified .home-hero-card__pitching {
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    border-bottom: none;
}
/* Upcoming / scheduled — same shell as final (home hero) */
.hero-match-card--home-simplified.hero-match-card--scheduled {
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
    min-height: 0;
    padding: 18px 16px 0;
}
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__team-row {
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 0;
}
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__team-main {
    flex: 0 1 auto;
    min-width: 0;
}
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__runs--scheduled {
    margin-left: auto;
    font-size: 1.25rem;
    font-weight: 600;
    color: #c5c5c5;
}
.home-hero-card__status--scheduled {
    color: var(--primery-color);
    max-width: 65%;
    line-height: 1.25;
}
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__status--scheduled {
    font-size: 0.75rem;
}
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__kickoff-time,
.hero-match-card--home-simplified.hero-match-card--final .home-hero-card__kickoff-time {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #111;
}
/* Match meta row: date + round (right) to kickoff time (left) */
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__date,
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__date-primary,
.hero-match-card--home-simplified.hero-match-card--final .home-hero-card__date,
.hero-match-card--home-simplified.hero-match-card--final .home-hero-card__date-primary {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111;
    line-height: 1.25;
}
.hero-match-card--home-simplified.hero-match-card--live .home-hero-card__date-primary {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111;
    line-height: 1.25;
}
.home-hero-card__date-primary {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5a5a5a;
    line-height: 1.3;
}
.home-hero-card__date-time {
    display: block;
    margin-top: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.02em;
}
.home-hero-card__venue {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.35;
    margin-top: 4px;
    margin-bottom: 8px;
    padding: 0 2px;
}
.home-hero-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.home-hero-card__date {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #8a8a8a;
    text-align: right;
    line-height: 1.3;
    max-width: 55%;
}
.home-hero-card__status {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}
.home-hero-card__status--final {
    color: #6b6b6b;
    max-width: 65%;
    line-height: 1.25;
}
.hero-match-card--home-simplified.hero-match-card--final .home-hero-card__status--final:not(.home-hero-card__kickoff-time) {
    font-size: 0.75rem;
}
.home-hero-card__status--live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 600;
    font-size: 0.875rem;
}
.home-hero-card__live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fd4545;
    flex-shrink: 0;
}
.home-hero-card__teams {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-match-card--final-with-innings .home-hero-card__teams {
    gap: 0;
}
.home-hero-card__team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.home-hero-card__team-row:last-of-type {
    border-bottom: none;
}
.home-hero-card__team-main {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}
.home-hero-card__logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-hero-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.home-hero-card__team-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.home-hero-card__abbr {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.02em;
}
.home-hero-card__record {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #8f8f8f;
}
.home-hero-card__runs {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
    flex-shrink: 0;
    min-width: 2ch;
    text-align: right;
}
.home-hero-card__matchup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-top: 8px;
    margin-bottom: 4px;
    padding: 16px 4px 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.home-hero-card__matchup-side {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.home-hero-card__matchup-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}
.home-hero-card__matchup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-match-card--live-linescore .home-hero-card__matchup-avatar {
    width: 28px;
    height: 28px;
}
.hero-match-card--live-linescore .home-hero-card__matchup-side--pitcher .home-hero-card__matchup-avatar {
    width: 22px;
    height: 22px;
}
.hero-match-card--live-linescore .home-hero-card__matchup-side {
    gap: 8px;
}
.hero-match-card--live-linescore .home-hero-card__matchup-side--pitcher {
    gap: 6px;
}
.home-hero-card__matchup-text {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.home-hero-card__matchup-label {
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--primery-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.home-hero-card__matchup-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #222;
    line-height: 1.25;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Final (simplified): pitching row (W / SV / L) + actions share one footer block pinned to card bottom */
.home-hero-card__footer-stack {
    margin-top: auto;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
}

.home-hero-card__footer-stack .home-hero-card__actions {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.home-hero-card__pitching-compact {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 6px 8px;
    width: 100%;
}

.home-hero-card__pitching-compact__cell {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.home-hero-card__pitching-compact__lbl {
    font-size: 0.625rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.home-hero-card__pitching-compact__name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #222;
    line-height: 1.25;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-hero-card__actions {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 4px;
}
.home-hero-card__actions.actions-buttons a,
.home-hero-card__actions.actions-buttons button {
    font-family: inherit;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 18px 12px;
    color: #777;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
}
.home-hero-card__actions.actions-buttons button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.home-hero-card__actions.actions-buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
}
/* Live: match calendar — same slide/card width as .calendar-day-games.resultados-inner-wp (not extra-wide) */
.hero-area .hero-slider .swiper-slide:has(.hero-match-card--home-simplified.hero-match-card--live) {
    min-width: min(100%, 380px);
    max-width: 420px;
    box-sizing: border-box;
}
.hero-area .hero-slider .swiper-slide:has(.hero-match-card--home-simplified.hero-match-card--live)
    .hero-match-card--home-simplified.hero-match-card--live {
    flex: unset;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-inline: 0;
}
.hero-area .hero-slider .swiper-slide:has(.hero-match-card--home-simplified.hero-match-card--live)
    .hero-match-card--home-simplified.hero-match-card--live-linescore {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
}
/* Final: match simplified card width so pitching names fit on one line */
.hero-area .hero-slider .swiper-slide:has(.hero-match-card--home-simplified.hero-match-card--final) {
    min-width: min(100%, 340px);
    max-width: 380px;
}
.hero-area .hero-slider .swiper-slide:has(.hero-match-card--final-with-innings) {
    min-width: min(100%, 340px);
    max-width: 380px;
}
.hero-area .hero-slider .swiper-slide:has(.hero-match-card--home-simplified.hero-match-card--scheduled) {
    min-width: min(100%, 380px);
    max-width: 420px;
}
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__actions.actions-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
}
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__actions.actions-buttons a,
.hero-match-card--home-simplified.hero-match-card--scheduled .home-hero-card__actions.actions-buttons button {
    flex: 1 1 0;
    min-width: 0;
    white-space: nowrap;
    padding: 18px 6px;
    font-size: 0.625rem;
}
@media (max-width: 480px) {
    .home-hero-card__matchup {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
@media (max-width: 400px) {
    .home-hero-card__meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-hero-card__date {
        text-align: left;
        max-width: 100%;
    }
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 11px;
    height: 11px;
    border: 1px solid #707070;
}
.swiper-pagination-bullet-active {
    background: var(--primery-color);
    border-color: var(--primery-color);
}

.team-info-card.team-info-two {
	flex-direction: column;
}

.line-score-board {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.line-score-board ul {
    display: flex;
    gap: 9px;
    align-items: center;
}
.line-score-board ul li {
    font-size: 13px;
    font-weight: 500;
    color: var(--primery-color);
}
 
.pitching-records-card {
    padding-top: 14.5px;
    padding-inline: 9px;
    padding-bottom: 12px;
    border-bottom: 1px solid #CACACA;
    display: flex;
    gap: 19px;
} 
.single-pitching-record .player-logo {
    width: 27px;
    height: 27px;
    border-radius: 50%;
}
.single-pitching-record {
	display: flex;
	gap: 8px;
	align-items: start;
}

.pitch-details .pitcher-name {
    display: flex;
    align-items: start;
    gap: 4px;
}
.pitch-details .pitcher-name h4 {
    font-size: 11px;
    font-weight: 900;
    color: var(--primery-color);
}
.pitch-details .pitcher-name h5 {
     font-size: 11px;
    font-weight: 900;
}
.pitch-details .pitch-score {
    font-size: 11px;
    font-weight: 400;
}
.pitch-details .match-type {
    font-size: 11px;
}

.pitch-details.pitch-details--with-team-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.pitch-details__team-mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.pitch-details__team-mark img {
    display: block;
}

.home-hero-card__matchup-name-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1 1 0;
}
.home-hero-card__matchup-team-ico {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.home-hero-card__matchup-team-ico img {
    display: block;
}

.home-hero-card__pitching-compact__player {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
}
.home-hero-card__pitching-compact__team {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.home-hero-card__pitching-compact__team img {
    display: block;
}
.home-hero-card__pitching-compact__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
}

.match-middle-card {
	display: flex;
	gap: 9px;
    border-bottom: 1px solid #CACACA;
}

.match-middle-left {
    border-right: 1px solid #CACACA
}
.match-middle-right {
    padding-left: 10px;
    flex: 1 1 auto;
    min-width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-block: 15px;
}

.match-inning-indicator ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
}
.match-inning-indicator ul li {
    width: 6px;
    height: 6px;
    display: block;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 50%;
}
.match-inning-indicator li.fill {
    background: var(--primery-color);
    border-color: var(--primery-color);
}

.match-right-score p {
    color: var(--primery-color);
    font-size: 14px;
}

.match-status.live {
	background: var(--primery-color);
	display: flex;
	align-items: center;
	gap: 5px;
}
.match-status.live span {
    width: 8px;
    height: 8px;
    background: #FD4545;
    border-radius: 50%;
}
.match-status.upcoming {
    margin-left: auto;
}

.upcoming-match-card {
	padding-inline: 23px;
	padding-bottom: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.upcoming-match-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.match-timeline {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 10px;
}
.upcoming-match-date {
    font-size: 13px;
    font-weight: 500;
    color: #2A275E;
}
.match-timeline p {
    font-size: 20px;
    font-weight: 300;
    color: #2A275E;
}
.match-timeline  .time-vanu{
    font-size: 13px;
    font-weight: 300;
    color: #2A275E;
}

.stadiam-name {
    padding: 14px 20px;
    padding-top: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    color: var(--primery-color);
}
.match-status.upcoming {
	background: var(--primery-color);
}

/*=========================== hero area style end hare  ========================*/
/*========================== news area style start hare  ========================*/

.news-area {
    padding-top: 36px;
}

.section-title {
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primery-color);
    text-align: center;
}

.news-slider-area {
    padding-top: 10px;
    max-width: 1520px;
    margin-inline: auto;
}

.single-news-card {
    position: relative;
}

.news-content-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(181deg, rgba(255,255,255,0.38) 0%, rgba(50,35,69,0.9999999999999999) 80%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 55px 84px;
}
.news-images img {
	width: 100%;
}

.news-content {
    display: flex;
    align-items: start;
    gap: 43px;
}
.news-content .title-and-date {
    max-width: 425px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.news-score-board {
    border: 1px solid #fff;
    border-radius: 18px;
    min-width: 169px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.news-score-board .score-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-top: 13px;
    padding-right: 15px;
}
.news-score-board  li {
    color: #fff;
}

.score-line-top {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-bottom: 13px;
    padding-right: 15px;
    border-bottom: 1px solid #fff;
}
.score-line-bottom {
     display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 15px;
    padding-bottom: 13px;
    padding-right: 15px;
}
.news-content .title-and-date h2 {
    font-size: 42px;
    font-weight: 900;
}
.news-content .news-date {
    font-size: 25px;
    font-weight: 900;
}
.swiper-button-next.news-next-slide,
.swiper-button-prev.news-prev-slide {
	color: #5D245C;
}

.news-slider.swiper {
	padding: 40px 50px;
	padding-top: 0;
}

/*======================= news area style end hare ========================== */
/*======================= banner area style start hare ========================== */

.banner-area {
    padding-top: 35px;
}

.banner-area .banner-link {
	display: flex;
	justify-content: center;
	max-width: 100%;
}

.banner-area .banner-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	margin-inline: auto;
}

.banner-area .container > picture {
	display: flex;
	justify-content: center;
	max-width: 100%;
}

/*======================= banner area style end hare ========================== */
/*======================= Statistics area style start hare ========================== */

.statistics-area {
    padding-top: 55px;
}
/* Anchor nav (#posiciones): offset sticky header when scrolling from main nav */
#posiciones {
	scroll-margin-top: 96px;
}

.statistics-main-wrapper {
    display: flex;
    gap: 16px;
    padding-top: 31px;
    padding-bottom: 30px;
}

/* Side promo (home + team hub): same slot as HomePage `secondBanner` */
.statistics-side-banner {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: stretch;
}
.statistics-side-banner img {
	width: 100%;
	height: 87%;
	min-height: 400px;
	border-radius: 15px;
	object-fit: stretch;
	object-position: center;
	display: block;
}
@media (max-width: 992px) {
	.statistics-side-banner {
		flex: 1 1 100%;
	}
	.statistics-side-banner img {
		min-height: 200px;
		height: auto;
	}
}

.statistics-card {
    flex: 1;
    background: #F7F7F7;
    border-radius: 15px;
    box-shadow: var(--shawdow-one);
    overflow: hidden;
    position: relative;
    overflow-y: auto;
    max-height: 556px;
}

.statistics-card-top {
    padding-top: 17px;
    padding-inline: 27px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.statistics-card-name {
    font-size: 20px;
    font-weight: 500;
    color: var(--primery-color);
    text-transform: uppercase;
}

.filter-nav ul {
    display: flex;
    align-items: center;
    gap: 12px 15px;
    flex-wrap: wrap;
}
.filter-nav li a,
.filter-nav li button {
    padding: 7px 8px;
    border: 1px solid var(--primery-color);
    border-radius: 5px;
    display: inline-flex;
    font-size: 10px;
    font-weight: 500;
    color: var(--primery-color);
}
.filter-nav li a:hover,
.filter-nav li button:hover,
.filter-nav li a.active,
.filter-nav li button.active {
    background: var(--primery-color);
    color: #fff;
}

.statistics-table {
    border-collapse: collapse;
    width: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
}
.statistics-table thead tr {
    border-bottom: 1px solid #E9E9E9;
}
.statistics-table th:first-child,
.statistics-table td:first-child {
    padding-left: 27px;
    width: 20%;
    text-align: left;
}
.statistics-table th:last-child,
.statistics-table td:last-child {
    padding-right: 25px;
}
.statistics-table-area {
	padding-top: 12px;
}
.statistics-table th {
    font-weight: 500;
    padding: 8px;
    font-size: 10px;
    text-transform: uppercase;
    text-align: center;
}
.statistics-table td {
    padding-top: 4px;
    padding-bottom: 7px;
    color: var(--primery-color);
    font-size: 14px;
    text-align: center;
}
.statistics-table tbody tr:nth-child(even) {
    background: #fff;
}
.statistics-table tbody tr:first-child td {
    padding-top: 14px;
}
.statistics-table tbody tr:last-child td:first-child {
    border-radius: 10px;
}
.statistics-table .equipo-logo {
    max-width: 26px;
}
.statistics-table .standings-team-logo-link {
    line-height: 0;
    text-decoration: none;
}
.statistics-table .standings-team-logo-link:focus-visible {
    outline: 2px solid var(--primery-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.see-all-statistics a {
    display: block;
    text-align: center;
    padding: 9px;
    padding-top: 20px;
    font-weight: 400;
    color: var(--primery-color);
}
.see-all-statistics a:hover {
    font-weight: 400;
}

.see-all-statistics {
	position: sticky;
	bottom: 0;
	width: 100%;
	background: #f7f7f7;
}

.standings-card .standings-card-view-more {
	font-size: 14px;
	font-weight: 500;
	color: var(--primery-color);
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	align-self: center;
}
.standings-card .standings-card-view-more:hover {
	text-decoration: underline;
}

.lideres-wrapper {
    padding: 10px;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.single-lideres-item {
    display: flex;
    align-items: center;
    gap: 29px;
    padding: 7px 17px;
    padding-right: 30px;
    border-radius: 12px;
    background: #fff;
}
.lideres-logo img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shawdow-one);
}
.lideres-info h2 {
    font-size: 20px;
    color: var(--primery-color);
    /* Full name on desktop can be longer; allow it to wrap instead of truncating */
    overflow-wrap: anywhere;
    word-break: break-word;
}
.lideres-info h2 .lideres-player-name-link:hover {
    text-decoration: underline !important;
}
.lideres-info p {
    font-size: 9px;
    font-weight: 500;
    color: #5B5C5B;
}

.lideres-point {
    margin-left: auto;
    font-size: 26px;
    font-weight: 500;
    color: var(--primery-color);
}

.standings-card.statistics-card {
	max-width: 400px;
}
.lideres-card.statistics-card {
	max-width: 536px;
}

.movimientos-date span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: block;
    background: var(--primery-color);
}
.movimientos-date {
	display: flex;
	align-items: center;
	gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primery-color);
}
.movimientos-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    padding-left: 13px;
    padding-right: 30px;
}
.single-movimientos {
    padding-left: 24px;
    padding-top: 15px;
    padding-bottom: 19px;
    padding-right: 14px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.movimiento-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.movimiento-content {
    flex: 1;
    flex-direction: column;
    gap: 8px;
}
.movimiento-content h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--primery-color);
    text-transform: uppercase;
}
.movimiento-content .post-time {
    font-size: 8px;
    font-weight: 400;
    color: #9A9A9A;
}
.movimiento-content p {
    font-size: 13px;
    color: var(--primery-color);
}

.statistics-card {
	overflow: hidden;
	overflow-y: auto;
}

.statistics-card::-webkit-scrollbar {
	width: 5px;
}

.statistics-card::-webkit-scrollbar-track {
	background: #E6E6E6;
}

.statistics-card::-webkit-scrollbar-thumb {
	background-color: var(--primery-color); 
	border-radius: 10px;
}

.statistics-card {
	scrollbar-width: thin;
	scrollbar-color: var(--primery-color) #E6E6E6; 
}

/* Home Posiciones / Líderes: grow with content (no inner scroll; full table + six leaders visible) */
.statistics-card.statistics-card--fit-content {
	max-height: none;
	overflow: visible;
	overflow-y: visible;
}


.standings-year-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	width: 100%;
}
.standings-year-row .estadistica-field-group--year {
	min-width: 5.75rem;
}

.lideres-empty-hint p,
.standings-empty-hint p {
	margin: 0;
	line-height: 1.35;
}
.lideres-empty-hint p + p,
.standings-empty-hint p + p {
	margin-top: 0.4rem;
}

.lideres-minimos-row {
	margin-top: 4px;
}
.lideres-minimos-label {
	cursor: pointer;
	user-select: none;
	color: var(--primery-color);
	font-weight: 500;
}
.lideres-minimos-label input {
	width: 1rem;
	height: 1rem;
	accent-color: var(--primery-color);
	cursor: pointer;
}

.lideres-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.statistics-actions {
    display: flex;
    align-items: center;
    gap: 29px;
}
.statistics-actions button {
    background: transparent;
    border: 1px solid var(--primery-color);
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 14px;
    color: var(--primery-color);
}
.statistics-actions button.active {
    background: var(--primery-color);
    color: #fff;
}


/*======================= Statistics area style end hare ========================== */

/*======================= video area style start hare ========================== */

.video-area {
    background-color: var(--primery-color);
    padding-top: 45px;
    padding-bottom: 60px;
}

.single-video-card {
	background: #fff;
	border-radius: 17px;
	overflow: hidden;
}

.video-container {
    position: relative;
}
.video-container video {
    border-radius: 17px;
    width: 100%;
    cursor: pointer;
}
.video-container button {
    background: transparent;
    border: none;
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.single-video-card .video-content {
    padding-left: 30px;
    padding-top: 21px;
    padding-right: 20px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.video-content .shere-button {
    background: transparent;
    border: none;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.video-content a {
    font-size: 18px;
    font-weight: 500;
    color: var(--primery-color);
}
.video-content .video-post-date {
    font-weight: 500;
    color: #2A275E;
}

.video-slider {
	padding-bottom: 50px;
	padding-top: 35px;
}
.video-slider .swiper-button-next, .video-slider .swiper-button-prev {
    color: #fff;
}

/*======================= video area style end hare ========================== */

/*======================= social media area style start hare ========================== */


.social-media-area {
    margin-top: 45px;
}
.social-media-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 35px;
}

.instagram-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
        }

        .card-header {
            display: flex;
            align-items: center;
            padding: 15px;
            position: relative;
        }

        .profile-pic {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
            border: 1px solid #eee; 
        }

        .user-info {
            flex-grow: 1;
        }

        .user-info .username {
            font-weight: 500;
            font-size: 14px;
            color: #262626;
        }

        .user-info .location {
            font-size: 12px;
            color: #8e8e8e;
            margin-top: 2px;
        }

        .more-options-icon {
            font-size: 20px;
            color: #8e8e8e;
            cursor: pointer;
            margin-left: auto; 
        }

        /* Post Image Section - container sizes to the image (no fixed aspect ratio) */
        .post-image-container {
            width: 100%;
            overflow: hidden;
        }

        .post-image {
            display: none;
        }

        /* Actions Section */
        .card-actions {
            display: flex;
            align-items: center;
            padding: 10px 15px;
        }

        .card-actions .left-icons,
        .card-actions .right-icons {
            display: flex;
            gap: 15px;
        }

        .card-actions .icon {
            font-size: 24px; 
            color: #262626;
            cursor: pointer;
        }

        .card-actions .icon.red {
            color: #ed4956; 
        }

        .card-actions .right-icons {
            margin-left: auto; 
        }

        .dots-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 5px;
            top: 18px; 
            flex-direction: column;
        }

        .dot {
            width: 6px;
            height: 6px;
            background-color: #c7c7c7;
            border-radius: 50%;
        }

        .dot.active {
            background-color: #3897f0;
        }

        .card-info {
            padding: 0 15px 15px;
        }

        .likes-count {
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .post-description {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 5px;
        }

        .description-username {
            font-weight: 500;
            margin-right: 5px;
        }

        .hashtag {
            color: #00376b;
            text-decoration: none;
        }

        .view-comments {
            font-size: 14px;
            color: #8e8e8e;
            margin-top: 5px;
            cursor: pointer;
        }

        .time-ago {
            font-size: 12px;
            color: #8e8e8e;
            margin-top: 10px;
            text-transform: uppercase;
        }

        .icon svg {
            width: 24px;
            height: 24px;
            fill: currentColor; 
            vertical-align: middle;
        }
    .post-image-container img {
        display: block;
        width: 100%;
        height: auto;
        vertical-align: top;
    }

.social-post-slider {
	padding-bottom: 50px;
	padding-top: 35px;
}

.social-post-slider .swiper-wrapper {
    align-items: flex-start;
}

.social-post-slider .swiper-slide {
    height: auto;
    display: flex;
    align-self: flex-start;
}

.social-post-slider .swiper-slide > * {
    width: 100%;
}

/*======================= social media area style end hare ========================== */

/*======================= partner area style start hare ========================== */

.partners-area {
	padding-block: 120px;
}

.pertners-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/*======================= partner area style end hare ========================== */
/*======================= footer area style start hare ========================== */

.footer-area {
    background: var(--primery-color);
    padding-top: 50px;
    padding-bottom: 35px;
}

.footer-nav ul {
    display: flex;
    align-items: center;
    gap: 70px;
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.footer-nav li a {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 57px;
}

.privacy-text {
    text-align: center;
    padding-top: 35px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}

.footer-content {
	flex: 0 1 auto;
}



/* ===========================================================
LBP - HOME PAGE STYLE END HARE 
============================================================== */

/* ===========================================================
LBP - Resultados Canendarioi PAGE STYLE END HARE 
============================================================== */


/*====================== resultados filter nav style start hare  ==========================*/

.resultados-filter-nav {
    padding-top: 38px;
    padding-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 41px;
}
.resultados-filter-nav button {
    background: transparent;
    border: none;
    font-size: 25px;
    font-weight: 300;
    color: var(--primery-color);
}
.resultados-filter-nav button.active {
    font-weight: 500;
    background: var(--primery-color);
    color: #fff;
    border-radius: 36px;
    padding: 10px 20px;
}
.resultados-filter-nav select {
    color: var(--primery-color);
    background: #fff;
    border: 1px solid var(--primery-color);
    padding: 13px 17px;
    font-weight: 300;
    border-radius: 11px;
}
.resultados-header {
	border-bottom: 1px solid #707070;
	box-shadow: var(--shawdow-one);
}

.resultados-wrapper {
    padding-top: 21px;
    max-width: 1426px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resultados-inner-wp {
    padding-top: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 29px;
    flex-wrap: wrap;
}

.resultados-title {
    font-size: 25px;
    font-weight: 500;
    color: var(--primery-color);
}

.resultados-inner-wp .hero-match-card {
    flex: 1;
    min-width: 380px;
}

.resultados-inner-wp .team-info-card.team-info-two {
	max-width: 36px;
}

.resultados-inner-wp .line-score-board ul {
	gap: 6px;
}
.resultados-inner-wp .line-score-board ul li {
	font-size: 11px;
}

.resultados-inner-wp .team-score-board ul {
	gap: 13px;
}


/*====================== resultados filter nav style end hare  ==========================*/

/*====================== brands  style start hare  ==========================*/

.brands-area {
    padding-top: 100px;
    padding-bottom: 60px;
}

.brands-wrapper ul {
    max-width: 1300px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

/*====================== brands style end hare  ==========================*/


/*==================================================
 ESTADISTICAS PAGE STYLE START HARE 
=================================================== */

/*================= estadisticas hero style ===================== */

.estadisticas-type {
    padding-block: 18px;
    padding-left: 120px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.estadisticas-type .team-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.estadisticas-type .team-select-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border: 1px solid #682866;
    border-radius: 5px;
    background: white;
    min-width: 250px;
    pointer-events: none;
    position: relative;
    height: 65px;
    max-height: 65px;
}

.estadisticas-type .team-select-custom .select-label {
    color: var(--primery-color);
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

.estadisticas-type .team-select-custom::after {
    content: "";
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFFFFF' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
}

.estadisticas-type .team-select-custom.active {
    background: var(--primery-color) !important;
    color: #fff !important;
}

.estadisticas-type .team-select-custom.active .select-label {
    color: #fff !important;
}

.estadisticas-type .team-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.estadisticas-type .team-selector-wrapper:hover .team-select-custom {
    background: var(--primery-color);
}

.estadisticas-type .team-selector-wrapper:hover .team-select-custom .select-label {
    color: white;
}

.estadisticas-type .team-selector-wrapper:hover .team-select-custom::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
}

.estadisticas-type .team-select option {
    background: white;
    color: var(--primery-color);
}

.estadisticas-type .selected-team-logo {
    position: absolute;
    right: 45px;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.estadisticas-type a {
    display: inline-flex;
    padding: 11px 22px;
    border: 1px solid #682866;
    border-radius: 5px;
    color: var(--primery-color);
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    align-items: center;
    transition: all 0.3s ease;
    height: 65px;
}

.estadisticas-type a:hover,
.estadisticas-type a.active {
    background: var(--primery-color);
    color: #fff;
}

.estadisticas-type a.active {
    font-weight: 500;
}

.estadisticas-hero-wrapper .equipo-list {
    padding-left: 120px;
    padding-block: 16px;
}
.equipo-list ul {
    display: flex;
    gap: 66px;
    align-items: center;
}
.equipo-list ul li a {
    opacity: 0.2;
}
.equipo-list ul li a.active,
.equipo-list ul li a:hover {
    opacity: 1;
}
.estadisticas-hero-wrapper {
    box-shadow: var(--shawdow-one);
}

/*================= estadisticas hero style end ===================== */
/*================= estadisticas main style end ===================== */

.estadisticas-main-wrapper {
    background: #F7F7F7;
    border-radius: 15px;
    padding-bottom: 35px;
}

/* Stats table toolbar: tabs on first row; season / team / search on second row, left-aligned */
.estadistica-toolbar {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 1.15rem;
	padding: 24px 4px 16px;
	border-bottom: 1px solid rgba(24, 34, 90, 0.08);
	margin-bottom: 4px;
	width: 100%;
}
.estadistica-stat-tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.35rem 1.75rem;
	width: 100%;
}
.estadistica-stat-tab {
	background: none;
	border: none;
	padding: 0.25rem 0;
	margin: 0;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	font-weight: 500;
	color: rgba(24, 34, 90, 0.45);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
	font-family: inherit;
	text-transform: none;
	letter-spacing: 0.02em;
}
.estadistica-stat-tab:hover {
	color: var(--primery-color);
}
.estadistica-stat-tab.is-active {
	color: var(--primery-color);
	border-bottom-color: var(--primery-color);
	font-weight: 600;
}
.estadistica-toolbar-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 12px 18px;
	width: 100%;
	max-width: 100%;
}
/* Por página + búsqueda + export: misma fila horizontal que Excel/PDF */
.estadistica-toolbar-controls-end {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	gap: 12px 16px;
	margin-left: auto;
	flex: 0 1 auto;
	min-width: 0;
}
.estadistica-toolbar-controls-end .estadistica-field-group--per-page {
	flex-direction: row;
	align-items: center;
	gap: 0.45rem 0.65rem;
	min-width: auto;
	max-width: none;
	flex: 0 1 auto;
}
.estadistica-toolbar-controls-end .estadistica-field-group--per-page label {
	margin: 0;
	flex-shrink: 0;
	white-space: nowrap;
}
.estadistica-toolbar-controls-end .estadistica-select--per-page {
	min-width: 3.75rem;
	max-width: 5.5rem;
}
.estadistica-toolbar-controls-end .estadistica-searchbar--toolbar {
	flex: 1 1 12rem;
	max-width: 280px;
	min-width: 140px;
	min-height: 40px;
	box-sizing: border-box;
	align-self: center;
}
.estadistica-toolbar-controls-end .estadistica-export-group {
	flex-shrink: 0;
}
@media screen and (max-width: 767px) {
	.estadistica-toolbar-controls-end {
		flex-wrap: wrap;
		justify-content: flex-end;
	}
}
.estadistica-field-group {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 6px;
	min-width: 140px;
	flex: 0 1 auto;
}
.estadistica-field-group label {
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--primery-color);
	opacity: 0.88;
	line-height: 1.2;
}
.estadistica-select {
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid rgba(104, 40, 102, 0.35);
	background: #fff;
	color: var(--primery-color);
	font-size: 0.95rem;
	font-family: inherit;
	cursor: pointer;
	min-width: 148px;
	max-width: min(100vw - 48px, 280px);
}
.estadistica-field-group--checkbox {
	min-width: auto;
	flex: 0 1 auto;
	max-width: 100%;
	justify-content: center;
	/* Same upper offset as label + gap on year/season groups so checkbox lines up with selects */
	padding-top: calc(0.68rem * 1.2 + 6px);
	margin-bottom: 11px;
}
.estadistica-field-group--checkbox .estadistica-checkbox-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--primery-color);
	cursor: pointer;
	user-select: none;
}
.estadistica-field-group--checkbox .estadistica-checkbox-label input {
	width: 1.05rem;
	height: 1.05rem;
	margin: 0;
	flex-shrink: 0;
	accent-color: var(--primery-color);
	cursor: pointer;
	vertical-align: middle;
}
.estadistica-field-group--year {
	min-width: 5.75rem;
}
.estadistica-field-group--per-page {
	min-width: 5.25rem;
	max-width: 7rem;
}
.estadistica-select--year {
	min-width: 5.75rem;
	max-width: 7.5rem;
}
.estadistica-select--per-page {
	min-width: 4.5rem;
	max-width: 6rem;
	text-align: center;
}
.estadistica-searchbar--toolbar {
	max-width: min(100%, 320px);
	flex: 0 1 280px;
	min-width: 180px;
	padding: 8px 12px;
}
.estadistica-export-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
}
.estadistica-export-btn {
	padding: 10px 16px;
	border-radius: 8px;
	border: 1px solid rgba(104, 40, 102, 0.45);
	background: #fff;
	color: var(--primery-color);
	font-size: 0.88rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
	min-height: 40px;
}
.estadistica-export-btn:hover:not(:disabled) {
	background: rgba(9, 72, 223, 0.06);
	border-color: var(--primery-color);
}
.estadistica-export-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}
.estadistica-export-btn--pdf {
	background: linear-gradient(180deg, #18225a 0%, #12183f 100%);
	color: #fff;
	border-color: #12183f;
}
.estadistica-export-btn--pdf:hover:not(:disabled) {
	background: linear-gradient(180deg, #1f2d6e 0%, #18225a 100%);
	border-color: #18225a;
}
.estadistica-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px 20px;
	padding: 20px 12px 8px;
	border-top: 1px solid rgba(24, 34, 90, 0.06);
	margin-top: 4px;
}
.estadistica-pagination-btn {
	padding: 10px 18px;
	border-radius: 8px;
	border: 1px solid rgba(104, 40, 102, 0.4);
	background: #fff;
	color: var(--primery-color);
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, opacity 0.2s;
	font-family: inherit;
}
.estadistica-pagination-btn:hover:not(:disabled) {
	background: var(--primery-color);
	color: #fff;
	border-color: var(--primery-color);
}
.estadistica-pagination-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.estadistica-pagination-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 12px;
	font-size: 0.92rem;
	color: rgba(24, 34, 90, 0.75);
	text-align: center;
}
.estadistica-pagination-range {
	font-weight: 500;
	color: var(--primery-color);
}
.estadistica-pagination-page-label {
	font-size: 0.85rem;
	opacity: 0.85;
}

.estadistica-section-header {
    padding-block: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.estadistica-left-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}
.estadistica-left-actions button {
	display: inline-flex;
	padding: 11px 22px;
	border: 1px solid #682866;
	border-radius: 5px;
	color: var(--primery-color);
    background: transparent;
	font-size: 20px;
	font-weight: 300;
	text-transform: uppercase;
    transition: 0.3s;
}
.estadistica-left-actions button:hover, .estadistica-left-actions button.active {
	background: var(--primery-color);
	color: #fff;
}
.estadistica-middle-actions button.active {
    font-weight: 500;
}
.estadistica-middle-actions button {
	display: inline-flex;
	padding: 11px 22px;
	border: 1px solid #682866;
	border-radius: 5px;
	color: var(--primery-color);
    background: transparent;
	font-size: 20px;
	font-weight: 300;
	text-transform: uppercase;
    transition: 0.3s;
}
.estadistica-middle-actions button:hover, .estadistica-middle-actions button.active {
	background: var(--primery-color);
	color: #fff;
}
.estadistica-middle-actions button.active {
    font-weight: 500;
}

.estadistica-searchbar {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid var(--primery-color);
}
.estadistica-searchbar input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--primery-color);
    font-size: 18px;
    font-weight: 300;
}
.estadistica-searchbar button {
    background: transparent;
    border: none;
}

.estadistica-table {
    width: 100%;
    border-collapse: collapse;
    border-top-left-radius: 19px;
    overflow: hidden;
    border-top-right-radius: 23px;
}

.estadistica-table thead tr {
    background: linear-gradient(180deg, var(--primery-color) 0%, #29275e 100%);
}
.estadistica-table th {
    padding-top: 28px;
    padding-left: 22px;
    padding-bottom: 18px;
    font-weight: 500;
    color: #fff;
    font-size: 19px;
}
.estadistica-table th:last-child {
    padding-right: 22px;
}
.estadistica-table tbody tr:nth-of-type(odd) {
    background: #fff;
}
.estadistica-table td {
    padding-top: 24px;
    padding-inline: 13px;
    padding-bottom: 10px;
    color: var(--primery-color);
    font-weight: 400;
}

.estadistica-table .estadistica-player-link {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}
.estadistica-table .estadistica-player-link:hover {
    text-decoration: underline;
}

.estadistica-table td:first-child {
	max-width: 100px;
}
.estadistica-table td:nth-child(2) {
    max-width: 100px;
}

.estadistica-table td:nth-child(n+3) {
    padding-left: 22px;
}

/* Team /equipo/.../estadisticas: Team column hidden — 2nd cell is a stat, not club */
.estadistica-table-area--hide-team-col .estadistica-table td:nth-child(2) {
	max-width: none;
}
.estadistica-table-area--hide-team-col .estadistica-table td:nth-child(n+2) {
	padding-left: 22px;
}

/* League estadísticas: card shell, sticky sortable headers, team chips */
.estadistica-table-area--league {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 28px rgba(24, 34, 90, 0.09);
	border: 1px solid rgba(24, 34, 90, 0.07);
	overflow: hidden;
	margin-top: 4px;
}
.estadistica-table-scroll {
	max-height: min(72vh, 920px);
	overflow: auto;
}
.estadistica-table--sortable thead th {
	padding: 0;
	vertical-align: bottom;
}
.estadistica-table--sortable thead th.sortable {
	position: sticky;
	top: 0;
	z-index: 2;
	background: linear-gradient(180deg, var(--primery-color) 0%, #29275e 100%);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.estadistica-th-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	padding: 20px 10px 16px 16px;
	margin: 0;
	border: none;
	background: transparent;
	color: inherit;
	font-family: inherit;
	font-weight: 600;
	font-size: clamp(0.75rem, 1.1vw, 0.95rem);
	letter-spacing: 0.03em;
	text-transform: none;
	cursor: pointer;
	text-align: left;
	line-height: 1.2;
	transition: background 0.15s ease;
}
.estadistica-th-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}
.estadistica-th-btn:focus-visible {
	outline: 2px solid #fff;
	outline-offset: -4px;
}
.estadistica-sort-ind {
	font-size: 0.7rem;
	opacity: 0.95;
	flex-shrink: 0;
	line-height: 1;
}
.estadistica-table-area--league .estadistica-table tbody tr {
	transition: background 0.12s ease;
}
.estadistica-table-area--league .estadistica-table tbody tr:hover {
	background: rgba(104, 40, 102, 0.06) !important;
}
.estadistica-table-area--league .estadistica-table td:first-child {
	max-width: min(240px, 28vw);
	min-width: 120px;
}
.load-more-btn {
    padding-top: 38px;
    text-align: center;
}
.load-more-btn button {
	display: inline-flex;
	padding: 15px 35px;
	border: 1px solid var(--primery-color);
	border-radius: 21px;
	color: var(--primery-color);
	background: transparent;
	font-size: 20px;
	font-weight: 300;
	text-transform: uppercase;
	transition: 0.3s;
}
.load-more-btn button:hover {
    background: var(--primery-color);
    color: #fff;
}

.no-stats-message {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.no-stats-content {
    text-align: center;
    max-width: 500px;
}

.no-stats-content svg {
    color: var(--primery-color);
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-stats-content h3 {
    font-size: 24px;
    color: var(--primery-color);
    margin-bottom: 10px;
}

.no-stats-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.estadisticas-type .estadistica-select-year select {
    background: #fff;
    border: 1px solid var(--primery-color);
    padding: 12px 22px;
    font-size: 18px;
    font-weight: 300;
    border-radius: 5px;
    text-align: center;
    appearance: none;  
    -webkit-appearance: none; 
    -moz-appearance: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.estadistica-search-btn {
	display: inline-flex;
	padding: 11px 22px;
	border: 1px solid #682866;
	border-radius: 5px;
	color: var(--primery-color);
	font-size: 18px;
	font-weight: 300;
	text-transform: uppercase;
    background: #fff;
	align-items: center;
}

/*==================== ROSTER PAGE STYLE START HARE ================== */

.roster-main-wrapper {
    display: flex;
    gap: 40px;
    padding-top: 40px;
}

.roster-content-card table {
    width: 100%;
}
.roster-content-card thead th {
    padding: 10px 15px;
    font-weight: 500;
    color: var(--primery-color);
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
}
.roster-content-card thead th h2 {
    font-size: 30px;
    text-align: left;
}
.roster-content-card th:first-child,
.roster-content-card td:first-child {
    padding-left: 36px;
}
.roster-content-card th:last-child,
.roster-content-card td:last-child  {
    padding-right: 36px;
}
.roster-content-card .character-box {
    display: flex;
    align-items: center;
    gap: 29px;
}
.character-box .character-logo {
    width: 50px;
    height: 50px;
}
.character-box p {
    font-size: 14px;
    color: var(--primery-color);
}
.roster-content-card td {
    padding: 10px 15px;
    color: var(--primery-color);
    font-size: 14px;
    text-transform: uppercase;
}
.roster-content-card td:nth-child(2) {
    text-align: center;
}
.roster-left-card {
	flex: 1;
    max-width: 730px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.roster-content-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shawdow-one);
}
.roster-content-card tbody tr:nth-of-type(even) {
    background: #F7F7F7;
}
.roster-right-card {
	flex: 1;
    max-width: 730px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/*=================== NOTICE PAGE STYLE START HARE ====================== */

.notice-main-aera {
    padding-top: 70px;
}

.single-notice-card {
    padding: 12px 25px;
    background: #F7F7F8;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    position: relative;
    height: 100%;
}
.single-notice-card .notice-image {
    flex: 1;
}
.single-notice-card .notice-content {
    max-width: 235px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 16px;
    justify-content: center;
}
.notice-content h4 {
    font-size: 20px;
    color: var(--primery-color);
}
.notice-content .news-score-board {
    max-width: 138px;
    border-color: var(--primery-color);
    color: var(--primery-color);
    gap: 5px;
    margin-top: 20px;
}
.notice-content  .news-score-board li {
	color: var(--primery-color);
}
.notice-content .score-line-top {
	border-bottom: 1px solid var(--primery-color);
}

.single-notice-card.flex-column .notice-content {
    max-width: 100%;
}

.news-shere-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: transparent;
    border: none;
    z-index: 2;
}

.notice-wrapper .row {
    gap: 50px 0;
}

.notice-image img {
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	width: 100%;
}

/* --- News listing page (noticias): 4-column grid, image + title cards --- */
.news-page {
	padding-top: 70px;
	padding-bottom: 3rem;
}

.news-page__header {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-bottom: 2rem;
	align-items: stretch;
}

@media (min-width: 768px) {
	.news-page__header {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 1.5rem;
	}
}

.news-page__heading {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: 0.12em;
	color: var(--primery-color);
	text-transform: uppercase;
	text-align: center;
}

@media (min-width: 768px) {
	.news-page__heading {
		text-align: left;
	}
}

.news-page__search-wrap {
	flex: 1;
	min-width: min(100%, 320px);
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.news-page__search-wrap {
		margin-left: auto;
		margin-right: 0;
	}
}

.news-page__search {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.news-page__search-icon {
	position: absolute;
	left: 1rem;
	display: flex;
	color: #666;
	pointer-events: none;
	z-index: 1;
}

.news-page__search-input {
	width: 100%;
	padding: 0.75rem 1rem 0.75rem 2.85rem;
	font-size: 1rem;
	border: 1px solid #d0d0d0;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-page__search-input:focus {
	outline: none;
	border-color: var(--primery-color);
	box-shadow: 0 0 0 3px rgba(24, 34, 90, 0.12);
}

.news-page__search-input::placeholder {
	color: #888;
}

.news-page__grid {
	--bs-gutter-y: 1.5rem;
}

.news-card {
	height: 100%;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.news-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.news-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.news-card__link:hover .news-card__title {
	color: var(--primery-color);
}

.news-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f0f0f0;
}

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

/* League/site logo when article image fails to load */
.news-card__media--logo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-card__media--logo-fallback img {
	width: auto;
	height: auto;
	max-width: 68%;
	max-height: 68%;
	object-fit: contain;
	object-position: center;
}

.news-card__body {
	padding: 1rem 1rem 1.15rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
}

.news-card__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	color: #1a1a1a;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.2s ease;
}

.news-card__date {
	margin: 0;
	font-size: 0.8rem;
	font-weight: 500;
	color: #777;
	letter-spacing: 0.02em;
}

.news-page__empty-filter p {
	font-size: 1.05rem;
	color: #555;
}

.news-page__more .btn-primary {
	min-width: 200px;
	border-radius: 999px;
	padding: 0.6rem 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/*======================== noticia_area start =========================*/

.noticia_title h2 {
	font-size: 2.5rem;
	color: var(--primery-color);
	text-transform: uppercase;
	letter-spacing: 0.19rem;
	text-align: center;
}

.noticia_main {
	margin-top: 2.2rem;
}

.noticia_item {
	position: relative;
	border: 1px solid #707070;
	border-radius: 46px;
	overflow: hidden;
}

.noticia_item img {
	width: 100%;
	
}

.noticia_inner {
	width: 100%;
	height: 100%;
	background: #000000;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.56) 0%, rgba(240, 240, 240, 0) 46%);
	padding: 5.4rem 8.4rem;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: flex-end;
}

.noticia_cnt {
	max-width: 72.4rem;
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.noticia_cntLeft {
	max-width: 51.1rem;
	width: 100%;
}

.noticia_cntLeft h4 {
	font-size: 2rem;
	color: #F7F7F7;
	letter-spacing: 0.37rem;
	margin-bottom: 1rem;
}

.noticia_cntLeft p {
	font-size: 1rem;
	color: #F7F7F7;
	letter-spacing: 0.19rem;
	margin: 0;
}

.noticia_cntRight {
	width: 17rem;
	border: 1px solid #F7F7F8;
	border-radius: 1.8rem;
}

.noticia_cntRight ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.6rem 0;
}

.noticia_cntRight ul li {
	font-size: 2.6rem;
	font-weight: 500;
	color: #F7F7F7;
}

.noticia_cntRight .line_top {
	border-top: 1px solid #FFF;
	margin-top: 1rem;
	padding-top: 1rem;
	padding-bottom: 0.6rem;
}


/*====================== interior-news page start ========================*/
.related_news h3 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primery-color);
	text-transform: uppercase;
	letter-spacing: 0.19rem;
	margin-bottom: 4rem;
	text-align: center;
}

.intnews_thumb img {
	width: 100%;
	border-radius: 1.6rem;
}

.intnews_upper {
	border-bottom: 1px solid #707070;
}

.intnews_uprCnt {
	padding: 2rem 0;
}

.intnews_uprCnt h6 {
	font-size: 2rem;
	font-weight: 400;
	color: var(--primery-color);
	letter-spacing: 0.152rem;
}

.intnews_uprCnt h4 {
	font-size: 2.5rem;
	color: var(--primery-color);
	margin: 2rem 0 2.4rem;
	letter-spacing: 0.19rem;
}

.intnews_uprCnt h4 a {
	color: var(--primery-color);
}

.intnews_uprCnt p {
	font-size: 1.7rem;
	font-weight: 400;
	color: var(--primery-color);
	left: 0.129rem;
	margin: 0;
}

.intnews_uprCnt ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.intnews_uprCnt ul li {
	margin-left: 3.8rem;
}

.intnews_uprCnt ul li img {
	max-width: 100%;
}

.intnews_uprCntinner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.intnews_content p {
	font-size: 2rem;
	font-weight: 400;
	color: var(--primery-color);
	letter-spacing: 0.152rem;
	line-height: 1.8;
	margin-bottom: 3.5rem;
}

.intnews_item {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.intnews_left {
	position: relative;
	width: 65%;
}

.intnews_left a {
	display: block;
}

.intnews_left img {
	width: 100%;
}

.intnews_left span img {
	width: 3.8rem;
	position: absolute;
	left: 2.6rem;
	bottom: 1.5rem;
}

.intnews_right {
	width: 35%;
	padding-left: 2.5rem;
}

.intnews_right p {
	font-size: 2rem;
	font-weight: 400;
	color: var(--primery-color);
	letter-spacing: 0.152rem;
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

.intnews_cnttitle h5 {
	font-size: 2rem;
	font-weight: 400;
	color: #9A9A9A;
	margin-top: 2rem;
}

/*==================== share_area start ======================*/
.share_area {
	background: #F7F7F7;
	padding: 3.7rem 2rem 4.6rem;
	text-align: center;
}

.share_area h4 {
	font-size: 2rem;
	font-weight: 400;
	color: var(--primery-color);
	letter-spacing: 0.152rem;
	text-align: center;
}

.share_area ul {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 4rem;
}

.share_area ul li a {
	width: 5.5rem;
	height: 5.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #F7F7F7;
	border-radius: 50%;
	box-shadow: 0rem 0.3rem 0.6rem #00000029;
	margin: 0 1.5rem;
}

.share_area ul li a img {
	max-width: 100%;
}

/* CUSTOM */

.owl-nav button {
	background: transparent;
	border: none;
	outline: none;
}

.owl-nav button img {
	width: 1.8rem;
}

.owl-nav .owl-prev {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.owl-nav .owl-next {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 1.8rem;
}

.owl-dots .owl-dot {
	width: 1.1rem;
	height: 1.1rem;
	display: block;
	background: #FFF;
	border: 1px solid #707070 !important;
	border-radius: 50%;
	transition: 0.2s all ease;
	margin: 0 0.5rem;
}

.owl-dots .owl-dot:hover,
.owl-dots .owl-dot.active {
	background: var(--primery-color);
	border-color: var(--primery-color);
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    background-color: white;
    padding: 1rem;
    border-radius: 35px;
    margin-right: 10px;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: 10px;
}



.team_banner {
	padding: 0 3rem;
	margin-top: 3.9rem;
}



.movements_team_logo {
	width: 50px !important;
}

.background-image {
	background-size: cover;
	background-repeat: no-repeat;
	height: 250px;
	background-position: center;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.slider-background-image {
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	aspect-ratio: 1426 / 812;
	background-position: center;
}

/* Home news carousel: shorter slides, multiple visible, center slide emphasized */
/* Title + carousel share one inset; wider at ≥992px so nav clears the slide strip */
.noticia_area {
	--noticia-inline-gutter: clamp(12px, 3vw, 40px);
}
@media (min-width: 992px) {
	.noticia_area {
		--noticia-inline-gutter: clamp(2.75rem, 4.5vw, 3rem);
	}
}
.noticia_area .noticia_title {
	padding-inline: var(--noticia-inline-gutter);
}
.noticia_area .noticia_main {
	width: 100%;
	max-width: min(100%, 1680px);
	margin-left: auto;
	margin-right: auto;
	padding-inline: var(--noticia-inline-gutter);
	box-sizing: border-box;
	overflow: visible;
}
.noticia_area .slider-background-image {
	aspect-ratio: auto;
	height: clamp(260px, 50vw, 520px);
	max-height: 560px;
	min-height: 260px;
}
/* Text sits in a bottom bar on the image, not full-overlay gradient */
.noticia_area .noticia_inner {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	width: 100%;
	height: auto;
	background: none !important;
	padding: 0;
	display: block;
}
.noticia_area .noticia_slide-caption {
	background: rgba(18, 26, 48, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1rem 1.25rem 1.2rem;
	border-radius: 0 0 42px 42px;
}
.noticia_area .noticia_cnt {
	max-width: none;
	margin: 0;
}
.noticia_area .noticia_cntLeft a {
	color: inherit;
	text-decoration: none;
	display: block;
}
.noticia_area .noticia_cntLeft a:hover {
	opacity: 0.92;
}
.noticia_area .noticia_cntLeft h4 {
	color: #f7f7f7;
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	letter-spacing: 0.06rem;
	margin-bottom: 0;
	line-height: 1.35;
}
.noticia_area .noticia_slide-meta {
	color: rgba(247, 247, 247, 0.85);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
	letter-spacing: 0.06rem;
}
@media (min-width: 992px) {
	.noticia_area .noticia_slide-caption {
		padding: 1.15rem 1.75rem 1.35rem;
		border-radius: 0 0 44px 44px;
	}
	.noticia_area .noticia_cntLeft h4 {
		font-size: 1.25rem;
	}
}
.noticia_area .owl-carousel .owl-item:not(.center) .noticia_item {
	opacity: 0.9;
	transform: scale(0.96);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.noticia_area .owl-carousel .owl-item.center .noticia_item {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
@media screen and (max-width: 991px) {
	.noticia_area .noticia_slide-caption {
		padding: 0.85rem 1rem 1rem;
		border-radius: 0 0 14px 14px;
	}
}

/* News carousel only: small nav chips — global .owl-carousel nav styles are oversized */
.noticia_area .owl-carousel.carousel1 {
	overflow: visible;
}
/* Sit in the side gutter (outside slide strip), centered in padding */
.noticia_area .owl-carousel .owl-nav {
	pointer-events: none;
	z-index: 2;
}
.noticia_area .owl-carousel .owl-nav button.owl-prev,
.noticia_area .owl-carousel .owl-nav button.owl-next {
	pointer-events: auto;
	background: rgba(255, 255, 255, 0.9) !important;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(0, 0, 0, 0.07) !important;
	padding: 0 !important;
	width: 2rem;
	height: 2rem;
	min-width: 2rem;
	border-radius: 50% !important;
	margin: 0 !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	opacity: 0.72;
	transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}
.noticia_area .owl-carousel .owl-nav button.owl-prev:hover,
.noticia_area .owl-carousel .owl-nav button.owl-next:hover,
.noticia_area .owl-carousel .owl-nav button.owl-prev:focus-visible,
.noticia_area .owl-carousel .owl-nav button.owl-next:focus-visible {
	opacity: 1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}
.noticia_area .owl-carousel .owl-nav button.owl-prev:hover,
.noticia_area .owl-carousel .owl-nav button.owl-next:hover {
	transform: translateY(-50%) scale(1.06);
}
.noticia_area .owl-carousel .owl-nav button.owl-prev img,
.noticia_area .owl-carousel .owl-nav button.owl-next img {
	width: 0.65rem;
	height: auto;
	display: block;
}
.noticia_area .owl-nav .owl-prev {
	left: calc(-0.5 * var(--noticia-inline-gutter) - 1rem);
}
.noticia_area .owl-nav .owl-next {
	right: calc(-0.5 * var(--noticia-inline-gutter) - 1rem);
}

.share-social-btn {
	position: absolute;
	right: 25px;
	bottom: 25px;
}

/* DIAMOND */
.diamond-background {
	background-image: url(/images/bases.svg);
}

.diamond-background.diamond-small {
	background-size: 150px;
	height: 35px;
	width: 45px;
}

.diamond-000 {
	background-position: -13px -15px;
}

.diamond-001 {
	background-position: 63px -15px;
}

.diamond-011 {
	background-position: -13px 193px
}

.diamond-111 {
	background-position: 63px 193px;
}

.diamond-110 {
	background-position: -13px 133px
}

.diamond-100 {
	background-position: 63px 133px;
}

.diamond-010 {
	background-position: -13px 75px;
}

.diamond-101 {
	background-position: 63px 75px;
}

.card-no-info {
	margin-top: 120px !important;
}

.card-no-info2 {
	padding-top: 150px !important;
	padding-bottom: 150px !important;
}

.site-logo {
	height: 71px;
}

.header-top-area {
	background: linear-gradient(to right, #2b57a5 0%, #6b8bc4 45%, #fff 100%);
}


.hero-date-switcher {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	margin-left: -1px;
}
.hero-date-switcher__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 16px 20px 14px 20px;
	min-height: 140px;
	background: #fff;
	border-radius: 0 16px 16px 0;
	box-shadow: 2px 0 12px rgba(0,0,0,0.12);
	border: 1px solid rgba(0,0,0,0.06);
	border-left: none;
}
.hero-date-switcher__month {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #1a237e;
	opacity: 0.85;
}
.hero-date-switcher__day {
	font-size: 62px;
	line-height: 1;
	font-weight: 700;
	color: #1a237e;
}
.hero-date-switcher__arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 8px;
}
.hero-date-switcher__arrow {
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: #e0e0e0;
	color: #1a237e;
	transition: background 0.2s, color 0.2s;
}
.hero-date-switcher__arrow svg {
	display: block;
}
.hero-date-switcher__arrow:hover {
	background: var(--primery-color);
	color: #fff;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.date-sidebar {
	background-color: white;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	width: 180px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
}
.date-month {
	color: #1a237e;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.date-day {
	color: #1a237e;
	font-size: 72px;
	line-height: 1;
	margin: 10px 0;
}
.nav-arrows {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}
.nav-arrow {
	width: 40px;
	height: 40px;
	border: 2px solid #ddd;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: white;
}

.brand-img {
    max-height: 60px;
    max-width: 200px;
}

.primary-text-color {
    color: var(--primery-color);
}

.section-team-title {
    font-size: 11rem;
}