/* ================================================
   HOME PAGE - DASHBOARD REDESIGN
   Mobile-first styles aligned with redesign_core
   ================================================ */

/* Header */
.dashboard-wrapper,
.main-content-dashboard {
    background: linear-gradient(180deg, #eaf6ff 0%, #dff1ff 45%, #f4fbff 100%);
}

.dashboard-header-home {
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 0.28) 0%, rgba(15, 39, 68, 0.20) 55%, rgba(10, 22, 40, 0.34) 100%),
        url("../images/Jembatan Barelang.png"),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 45%, var(--blue-primary) 100%);
    background-size: cover, 106%, cover;
    background-position: center, 30% 56%, center;
    background-repeat: no-repeat;
    padding: 44px 16px 64px;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    will-change: auto;
}

.dashboard-header-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.18) 0%, rgba(10, 22, 40, 0.30) 100%),
        linear-gradient(110deg, rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0.46) 50%, rgba(255, 255, 255, 0) 67%);
    background-size: auto, auto, 220% 100%;
    background-position: center, center, -160% 0;
    opacity: 1;
    pointer-events: none;
    animation: barelangReveal 4.4s ease-in-out infinite alternate, barelangShimmer 6.2s linear infinite;
}


.dashboard-header-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.dashboard-header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: headerFloatIn 0.9s ease-out both;
}

.header-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 10px rgba(10, 22, 40, 0.55);
}

.dashboard-header-home h1 {
    color: white;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 6px 22px rgba(10, 22, 40, 0.55);
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.93);
    font-size: 14px;
    max-width: 560px;
    line-height: 1.6;
    text-shadow: 0 3px 14px rgba(10, 22, 40, 0.5);
}

.header-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-decoration: none;
    transition: all var(--transition-normal);
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
    border: none;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.dashboard-header-home .btn-secondary {
    background: rgba(10, 22, 40, 0.38);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
}

.dashboard-header-home .btn-primary {
    background: rgba(10, 22, 40, 0.38);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
    backdrop-filter: blur(2px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dashboard-header-home .btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.dashboard-header-home .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

/* Body */
.dashboard-body {
    padding: 0 16px 40px;
}

/* Section shell */
.section-container {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #cfe5ff;
    box-shadow: var(--shadow-lg);
    margin-bottom: 22px;
    min-width: 0;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    /* Prevent flex overflow */
}

.section-container.section-elevated {
    margin-top: -36px;
    position: relative;
    z-index: 5;
}

.section-container:hover {
    transform: translateY(-2px);
    border-color: #9fcbff;
    box-shadow: 0 16px 34px rgba(30, 64, 175, 0.14);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    border-bottom: 2px solid #b9dcff;
    padding-bottom: 10px;
}

/* Keep first section line a bit stronger */
.section-container.section-elevated .section-header {
    border-bottom-color: #9fcbff;
}

.section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--navy);
    font-weight: 800;
}

.section-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tab-button {
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-primary) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(15, 39, 68, 0.2);
}

/* Keep tab controls readable after green -> black override from legacy stylesheet */
.dashboard-wrapper .tab-button:hover,
.dashboard-wrapper .tab-button.active {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-primary) 100%);
    border-color: var(--blue-primary);
    color: #ffffff;
}

.tab-content {
    display: none;
    margin-top: 12px;
}

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

.scroll-controls {
    display: flex;
    gap: 8px;
}

.scroll-btn {
    background: var(--white);
    border: 1px solid var(--gray-200);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.scroll-btn:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* Match summary cards */
.match-cards-container {
    margin-top: 12px;
    min-width: 0;
    max-width: 100%;
}

.match-cards-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    max-width: 100%;
}

.match-cards-scroll .empty-state {
    flex: 1 1 100%;
    min-width: 100%;
}

.match-cards-scroll::-webkit-scrollbar {
    height: 6px;
}

.match-cards-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 99px;
}

.match-card-wrapper {
    min-width: 78%;
    scroll-snap-align: start;
    padding: 2px 1px;
}

.match-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.match-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--blue-primary);
    box-shadow: 0 18px 34px rgba(30, 64, 175, 0.18);
}

/* In horizontal slider, avoid scale clipping/collision on left edge */
.match-cards-scroll .match-card:hover {
    transform: translateY(-6px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.match-date {
    color: var(--navy);
    font-weight: 700;
}

.match-status {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--navy);
    font-weight: 800;
    font-size: 10px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.team-logo-container {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.team-logo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--gray-100);
    color: var(--gray-400);
    border: 1px dashed var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo.team-logo-placeholder {
    font-size: 18px;
}

.team-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.vs {
    font-weight: 900;
    color: var(--red);
    letter-spacing: 1px;
    font-size: 12px;
}

.match-score {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-dark);
    text-align: center;
    letter-spacing: 1px;
}

.match-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.match-venue {
    font-size: 11px;
    color: var(--gray-500);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-details {
    border: none;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-dark);
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
}

/* News */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
}

.news-item-large,
.news-item-small {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.news-item-large:hover,
.news-item-small:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 36px rgba(30, 64, 175, 0.16);
    border-color: var(--blue-primary-light, var(--blue-primary));
}

.news-item-large:hover .news-title,
.news-item-small:hover .news-title {
    color: var(--blue-primary);
}

.news-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.news-image-placeholder {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5ff 0%, #e6ecfb 100%);
    color: var(--blue-primary);
    font-size: 40px;
}

.news-content {
    padding: 16px;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gray-500);
    font-weight: 700;
}

.news-date {
    color: var(--navy);
}

.news-popular-badge {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
}

.news-title {
    font-size: 16px;
    color: var(--navy);
    margin-top: 8px;
    line-height: 1.4;
}

.news-link {
    color: inherit;
    text-decoration: none;
}

.news-link:hover {
    color: var(--blue-primary);
}

.news-excerpt {
    margin-top: 8px;
    color: var(--gray-600);
    font-size: 13px;
}

.news-author {
    margin-top: 10px;
    color: var(--gray-500);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
}

.news-item-small {
    display: flex;
    gap: 12px;
    padding: 12px;
    align-items: center;
}

.news-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
}

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

.news-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5ff 0%, #e6ecfb 100%);
    color: var(--blue-primary);
    font-size: 22px;
}

.news-content-small .news-title {
    font-size: 13px;
}

.news-info,
.sorting-info {
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Match Section Redesign (Cards) */
.match-grid-redesign {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.match-item-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.match-item-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 34px rgba(30, 64, 175, 0.15);
    border-color: var(--blue-primary-light, #3b82f6);
}

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

.m-sport-badge {
    background: var(--white-blue);
    color: var(--blue-primary);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-match-code,
.m-match-status {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-match-status {
    background: var(--blue-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}

.match-card-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
}

.m-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.m-team-logo {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.m-team-logo .team-logo-placeholder {
    font-size: 22px;
}

.m-team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.m-team-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.m-vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-label {
    font-size: 14px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 1px;
}

.m-score-container {
    background: var(--navy-dark);
    padding: 6px 14px;
    border-radius: 12px;
    color: white;
}

.m-score {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
}

.match-card-bottom {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 10px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.m-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--navy);
    font-weight: 600;
}

.m-info-item i {
    color: var(--blue-primary);
}

.match-card-venue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--navy);
    text-align: center;
}

.match-card-venue i {
    color: #f59e0b;
}

.btn-view-premium {
    width: 100%;
    border: none;
    background: var(--navy);
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-view-premium:hover {
    background: var(--blue-primary);
    transform: scale(1.02);
}

.btn-see-more-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(15, 39, 68, 0.2);
    transition: all var(--transition-normal);
}

.btn-see-more-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 39, 68, 0.3);
    background: var(--blue-primary);
}

/* See more */
.see-more-section {
    margin-top: 14px;
    display: flex;
    justify-content: center;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: var(--shadow-md);
}

/* Players */
.players-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 12px;
}

.player-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.player-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--blue-primary);
    box-shadow: 0 16px 30px rgba(30, 64, 175, 0.15);
}

.player-card:hover .player-photo-container {
    border-color: var(--blue-primary);
}

.player-photo-container {
    width: 86px;
    height: 86px;
    margin: 0 auto 12px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gray-100);
    background: var(--gray-50);
}

.player-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 28px;
}

.player-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
}

.player-team {
    margin-top: 4px;
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 600;
}

.player-info {
    margin-top: 6px;
    font-size: 12px;
    color: var(--gray-500);
}

/* Transfers */
.transfers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 12px 0 0;
}

.transfer-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-md);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.transfer-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--blue-primary);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.16);
}

.transfer-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.transfer-player-photo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    flex: 0 0 64px;
}

.transfer-player-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transfer-player-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 6px;
}

.transfer-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    background: var(--white-blue);
    border-radius: 8px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.transfer-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 12px;
}

.transfer-team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    min-width: 0;
}

.transfer-team-label {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--gray-400);
    letter-spacing: 1px;
    font-weight: 700;
}

.transfer-team-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    border: 1px solid var(--gray-200);
    padding: 4px;
}

.transfer-team-logo.team-logo-placeholder {
    font-size: 16px;
}

.transfer-team-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.transfer-arrow-container {
    color: var(--gold);
    font-size: 16px;
}

.transfer-footer {
    display: flex;
    justify-content: center;
}

.transfer-status {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: 1px;
}

/* Teams */
.winners-grid,
.teams-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 12px;
}

.winner-premium-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--white) 0%, var(--white-blue) 100%);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    padding: 18px;
    color: var(--navy);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.winner-premium-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-primary);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, var(--white) 0%, #e8f0fe 100%);
}

.winner-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.2), transparent 60%);
    opacity: 0.6;
}

.winner-premium-card:hover .winner-bg-glow {
    opacity: 1;
    background: radial-gradient(circle at top, rgba(59, 130, 246, 0.3), transparent 65%);
}

.winner-trophy-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--navy);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.winner-premium-card:hover .winner-trophy-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 6px 16px rgba(255, 193, 7, 0.3);
    background: var(--gold);
    color: var(--navy-dark);
}

.team-logo-premium {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 6px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-logo-premium.team-logo-placeholder {
    font-size: 28px;
}

.winner-premium-card:hover .team-logo-premium {
    transform: scale(1.08);
    border-color: var(--blue-primary);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.winner-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

.winner-info .team-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    transition: color 0.3s ease;
}

.winner-premium-card:hover .winner-info .team-name {
    color: var(--blue-primary);
}

.achievement-badge {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--navy);
    color: white;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.winner-premium-card:hover .achievement-badge {
    background: var(--blue-primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
}

.winner-footer {
    position: relative;
    z-index: 1;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
}

.winner-premium-card:hover .winner-footer {
    color: var(--blue-primary);
}

.view-profile i {
    transition: transform 0.3s ease;
}

.winner-premium-card:hover .view-profile i {
    transform: translateX(4px);
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    text-decoration: none;
    color: var(--navy);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-primary);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.team-logo-lg {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-logo-lg.team-logo-placeholder {
    font-size: 24px;
}

.team-card:hover .team-logo-lg {
    transform: scale(1.08);
    border-color: var(--blue-primary);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

.team-card:hover .team-name {
    color: var(--blue-primary);
}

.team-label {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 28px 16px;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 32px;
    color: var(--gray-300);
    margin-bottom: 12px;
}

.empty-state h4 {
    color: var(--gray-600);
    font-weight: 700;
    margin-bottom: 6px;
}

/* Footer */
.dashboard-footer {
    text-align: center;
    padding: 28px 16px;
    color: var(--gray-500);
    font-size: 12px;
    border-top: 1px solid var(--gray-100);
    margin-top: 24px;
    background: var(--white);
}

.dashboard-footer p {
    margin: 6px 0;
}

.dashboard-footer a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
}

.dashboard-footer a:hover {
    color: var(--blue-accent);
}

/* Premium Match Detail Modal */
.premium-modal {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.premium-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 20px 24px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icon {
    color: var(--gold);
    font-size: 20px;
}

.premium-header h3 {
    margin: 0;
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.match-modal-close:hover {
    background: var(--red);
    transform: rotate(90deg);
}

.match-modal-body {
    padding: 0;
}

/* Premium Tabs */
.match-tabs-premium {
    display: flex;
    background: var(--gray-50);
    padding: 8px;
    border-bottom: 1px solid var(--gray-100);
}

.match-tabs-premium .match-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px;
    font-weight: 700;
    font-size: 13px;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.match-tabs-premium .match-tab i {
    font-size: 14px;
}

.match-tabs-premium .match-tab.active {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

/* Premium Match Header Section */
.match-detail-header-premium {
    padding: 40px 24px;
    background: linear-gradient(180deg, var(--white) 0%, var(--white-blue) 100%);
    border-bottom: 1px solid var(--gray-100);
}

.match-teams-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.team-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: 140px;
}

.team-logo-glow {
    position: relative;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--blue-primary), transparent, var(--gold));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.3;
}

.team-logo-large-p {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-logo-large-p.team-logo-placeholder {
    font-size: 42px;
}

.p-team-name {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
}

.p-team-uniform {
    margin: -4px 0 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.35;
}

.vs-score-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.vs-badge {
    background: var(--red);
    color: white;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.2);
}

.score-display-premium {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy-dark);
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.match-meta-info {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
}

.meta-item i {
    color: var(--blue-primary);
}

/* Tab Contents */
.match-tab-content {
    padding: 24px;
    display: none;
}

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

.match-tab-content h4 {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-tab-content h4::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--gray-100);
}

/* Goals List Styling */
.pro-goals-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.goal-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
}

.goals-half-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    margin: 8px 0 2px;
    padding-left: 10px;
}

.goal-side {
    padding: 12px 16px;
}

.team-1-side {
    text-align: right;
}

.team-2-side {
    text-align: left;
}

.goal-time-pill {
    background: var(--navy);
    color: var(--gold);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
}

.goal-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-1-side .goal-details {
    flex-direction: row-reverse;
}

.goal-player-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
}

.goal-icon {
    font-size: 14px;
}

/* Mobile Optimizations for Modal */
@media (max-width: 768px) {
    .match-teams-comparison {
        gap: 10px;
    }

    .team-logo-glow {
        width: 70px;
        height: 70px;
        padding: 8px;
        border-radius: 16px;
    }

    .p-team-name {
        font-size: 14px;
    }

    .score-display-premium {
        font-size: 32px;
    }

    .match-meta-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Lineups Section */
.lineups-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-lineup {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 16px;
}

.team-lineup h5 {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.player-lineup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.player-lineup-item:hover {
    background: var(--white-blue);
    border-color: var(--blue-primary);
    transform: translateX(4px);
}

.player-photo-small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--gray-200);
}

.player-info-lineup {
    flex: 1;
}

.player-name-lineup {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.player-number-lineup {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
}

.player-meta-lineup {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lineup-main-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #fff7cc;
    border: 1px solid #ffe28a;
    color: #8a5b00;
    font-size: 10px;
    font-weight: 700;
}

.no-data {
    text-align: center;
    padding: 20px;
    color: var(--gray-400);
    font-size: 13px;
}

.player-search {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.player-search input {
    flex: 1;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 13px;
}

.player-search button {
    border: none;
    background: var(--navy);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.player-search button:hover {
    background: var(--blue-primary);
}

/* Schedule Modal Styles */
.schedule-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1300;
    padding: 16px;
    overflow-y: auto;
}

.schedule-modal-content {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 720px;
    margin: 36px auto;
    overflow: hidden;
}

.schedule-modal-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 20px 24px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule-modal-header h3 {
    margin: 0;
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.schedule-modal-close:hover {
    background: var(--red);
    transform: rotate(90deg);
}

.schedule-modal-body {
    padding: 24px;
}

.schedule-detail-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-event-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}

.schedule-round {
    margin: 0;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
}

.schedule-date-venue {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    padding: 16px;
}

.schedule-date-venue p {
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-date-venue p:last-child {
    margin-bottom: 0;
}

.schedule-date-venue i {
    color: var(--blue-primary);
}

.schedule-teams-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--white-blue) 100%);
    border-radius: 16px;
}

.schedule-team-large {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.team-logo-large-modal {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 8px;
}

.schedule-team-large h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
}

.schedule-vs-large {
    font-size: 16px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: 2px;
}

.schedule-share h4 {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.share-btn-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.share-btn-modal.whatsapp {
    background: #25D366;
    color: white;
}

.transfer-date-badge,
.transfer-date-badge i {
    color: var(--navy);
}

.share-btn-modal.facebook {
    background: #1877F2;
    color: white;
}

.share-btn-modal.telegram {
    background: #0088cc;
    color: white;
}

.share-btn-modal.twitter {
    background: #000000;
    color: white;
}

.share-btn-modal.copy {
    background: var(--navy);
    color: white;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.share-btn-modal.copy.copied {
    background: var(--blue-primary);
}

.share-btn-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ================================================
   TEAM PAGE
   ================================================ */
.dashboard-header-team .header-subtitle {
    max-width: 560px;
}

.team-status-pill,
.team-count-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--navy);
}

.team-status-pill i,
.team-count-pill i {
    color: var(--blue-primary);
}

.team-profile-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    display: grid;
    gap: 20px;
}

.team-profile-identity {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
}

.team-logo-shell {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background: var(--white-blue);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.team-logo-profile {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.team-name-display {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-subtitle {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--gray-500);
}

.team-tagline {
    margin-top: 10px;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}

.team-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.team-meta-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 72px;
}

.team-meta-item.team-meta-empty {
    background: var(--white-blue);
    border-style: dashed;
}

.team-meta-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
}

.team-meta-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.team-roster-section .team-roster-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.team-roster-section .player-list {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    max-height: 520px;
    overflow-y: auto;
}

.team-roster-section .player-list::-webkit-scrollbar {
    width: 6px;
}

.team-roster-section .player-list::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 999px;
}

.team-roster-section .player-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--white);
}

.team-roster-section .player-item:last-child {
    border-bottom: none;
}

.team-roster-section .player-item:hover {
    background: var(--white-blue);
}

.team-roster-section .player-item.active {
    background: var(--white-blue);
    border-left: 3px solid var(--blue-primary);
}

.team-roster-section .position-badge {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
}

.team-roster-section .position-badge.keeper {
    background: var(--gold);
    color: var(--navy-dark);
}

.team-roster-section .position-badge.staff {
    background: var(--blue-primary);
}

.team-roster-section .player-item-info {
    flex: 1;
    min-width: 0;
}

.team-roster-section .player-number {
    font-weight: 800;
    color: var(--blue-primary);
    margin-right: 6px;
}

.team-roster-section .player-name {
    font-weight: 700;
    color: var(--navy);
}

.team-roster-section .staff-position {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 2px;
    font-weight: 600;
}

.team-roster-section .player-detail-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 20px;
}

.team-roster-section .player-photo-container {
    width: 170px;
    height: 170px;
    margin: 0 auto 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gray-100);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-roster-section .player-photo-large {
    width: 170px;
    height: 170px;
    border-radius: 16px;
    object-fit: contain;
    border: 2px solid var(--gray-100);
    background: var(--gray-50);
}

.team-roster-section .detail-name {
    margin: 10px 0 4px;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}

.team-roster-section .detail-role {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
    letter-spacing: 0.6px;
}

.team-roster-section .info-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.team-roster-section .info-row:last-child {
    border-bottom: none;
}

.team-roster-section .info-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.team-roster-section .info-value {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-align: right;
}

.team-filter-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-filter-card.all-filter-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 36px;
    margin-top: 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    position: relative;
    isolation: isolate;
}

.team-filter-card.all-filter-card:hover {
    transform: translateY(-3px);
    border-color: #9fcbff;
    box-shadow: 0 16px 34px rgba(30, 64, 175, 0.14);
}

.team-filter-card.all-filter-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(147, 197, 253, 0.22));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: -1;
}

.team-filter-card.all-filter-card:hover::after {
    opacity: 1;
}

.section-container.all-section-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    isolation: isolate;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

/* Hover disabled for parent section as requested */
/* .section-container.all-section-card:hover {
    transform: translateY(-3px);
    border-color: #9fcbff;
    box-shadow: 0 16px 34px rgba(30, 64, 175, 0.14);
} */

.section-container.all-section-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(147, 197, 253, 0.22));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: -1;
}

/* Hover glow disabled for parent section as requested */
/* .section-container.all-section-card:hover::after {
    opacity: 1;
} */

/* Apply hover effects specifically to the filter card within this section */
.all-section-card .team-filter-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    position: relative;
    isolation: isolate;
}

.all-section-card .team-filter-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(147, 197, 253, 0.22));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: -1;
}

.all-section-card .team-filter-card:hover {
    transform: translateY(-3px);
    border-color: #9fcbff;
    box-shadow: 0 16px 34px rgba(30, 64, 175, 0.14);
}

.all-section-card .team-filter-card:hover::after {
    opacity: 1;
}

.team-filter-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--gray-500);
}

.team-selector select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    font-size: 13px;
    font-weight: 600;
    background: var(--white);
    color: var(--navy);
    transition: all var(--transition-fast);
}

.team-selector select:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.team-directory-grid {
    margin-top: 6px;
}

.team-directory-card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-directory-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-logo-frame {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-frame .team-logo-lg {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

/* Responsive enhancements */
@media (min-width: 768px) {
    .dashboard-header-home {
        padding: 60px 30px 80px;
        background-size: cover, 106%, cover;
        background-position: center, 28% 56%, center;
    }

    .dashboard-header-home h1 {
        font-size: 38px;
        letter-spacing: 2px;
    }

    .header-actions {
        flex-direction: row;
    }

    .dashboard-body {
        padding: 0 30px 50px;
    }

    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .match-card-wrapper {
        min-width: 320px;
    }

    .news-grid {
        display: grid;
        grid-template-columns: 1.3fr 0.7fr;
        gap: 18px;
    }

    .news-sidebar {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .match-grid-redesign {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .btn-view-premium {
        width: auto;
        padding: 10px 20px;
    }

    .players-grid,
    .transfers-grid,
    .winners-grid,
    .teams-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lineups-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .dashboard-header-home {
        padding: 72px 50px 96px;
        background-size: cover, 106%, cover;
        background-position: center, 26% 54%, center;
    }

    .dashboard-body {
        padding: 0 50px 60px;
    }

    .section-container {
        padding: 24px 26px;
        border-radius: 20px;
    }

    .match-cards-scroll {
        padding-bottom: 10px;
    }

    .match-grid-redesign {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .players-grid,
    .transfers-grid,
    .winners-grid,
    .teams-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {

    .players-grid,
    .transfers-grid,
    .winners-grid,
    .teams-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .match-cards-scroll {
        padding-left: 10px;
        padding-right: 10px;
        scroll-padding-left: 10px;
        scroll-padding-right: 10px;
    }

    .match-card-wrapper {
        flex: 0 0 calc(100% - 12px);
        min-width: calc(100% - 12px);
    }

    .dashboard-header-home {
        background-size: cover, 146%, cover;
        background-position: center, 34% 62%, center;
    }

    .team-roster-section .player-list {
        max-height: none;
    }

    .team-roster-section .player-detail-panel {
        position: static;
    }

    .team-roster-section .info-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-roster-section .info-value {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .team-profile-identity {
        grid-template-columns: 140px 1fr;
        gap: 20px;
    }

    .team-logo-shell {
        width: 140px;
        height: 140px;
    }

    .team-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-roster-section .team-roster-grid {
        grid-template-columns: 1fr 320px;
    }

    .team-roster-section .player-photo-large {
        width: 180px;
        height: 180px;
    }

    .team-roster-section .player-photo-container {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 992px) {
    .team-profile-card {
        padding: 26px;
    }

    .team-name-display {
        font-size: 28px;
    }

    .team-meta-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .team-roster-section .team-roster-grid {
        grid-template-columns: 1fr 360px;
    }

    .team-roster-section .player-photo-large {
        width: 190px;
        height: 190px;
    }

    .team-roster-section .player-photo-container {
        width: 190px;
        height: 190px;
    }
}

.team-roster-section .player-detail-panel .player-photo-large {
    object-fit: contain;
    object-position: center;
    background: var(--gray-50);
}

/* ================================================
   MATCH DETAIL MODAL REDESIGN (PREMIUM GLASS)
   ================================================ */

/* Modal Overlay & Container */
.match-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 22, 40, 0.85);
    /* Deep Navy Overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.match-modal-content.premium-modal {
    background: rgba(255, 255, 255, 0.92);
    margin: 4% auto;
    width: 90%;
    max-width: 680px;
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Modal Header */
.match-modal-header.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.premium-header .header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.premium-header .header-icon {
    font-size: 18px;
    color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.premium-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.match-modal-close {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-500);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-modal-close:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
    transform: rotate(90deg);
}

.match-modal-body {
    padding: 8px 28px 32px;
}

/* Match Header (Logos & Score) */
.match-detail-header-premium {
    margin-bottom: 24px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    padding: 20px 0;
    border-radius: 20px;
}

.match-teams-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    padding: 0 10px;
}

.team-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    z-index: 2;
}

.team-logo-glow {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(10px);
    z-index: -1;
    opacity: 0.8;
}

.team-logo-large-p {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.team-side:hover .team-logo-large-p {
    transform: scale(1.1);
}

.p-team-name {
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    color: var(--navy);
    max-width: 140px;
    line-height: 1.3;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.p-team-uniform {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: var(--gray-500);
    max-width: 160px;
    line-height: 1.35;
}

.vs-score-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.vs-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--gray-200);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 900;
    color: var(--gray-400);
    letter-spacing: 1px;
}

.score-display-premium {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy-dark);
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(15, 39, 68, 0.1);
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.score-display-premium .score-main {
    display: block;
    line-height: 1;
}

.score-display-premium .score-penalty {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #64748b;
    -webkit-text-fill-color: initial;
    white-space: nowrap;
}

.match-meta-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: 99px;
    width: fit-content;
    margin: 0 auto;
    backdrop-filter: blur(4px);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
}

.meta-item i {
    color: var(--blue-primary);
}

/* Tabs */
.match-tabs-premium {
    display: flex;
    padding: 4px;
    background: var(--gray-100);
    border-radius: 12px;
    margin-bottom: 24px;
}

.match-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.match-tab:hover {
    color: var(--navy);
}

.match-tab.active {
    background: var(--white);
    color: var(--blue-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Tab Content & Goals Timeline */
.match-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

.match-tab-content h4 {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--gray-400);
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.match-tab-content h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gray-200);
    margin: 8px auto 0;
}

/* Goals Timeline */
.goals-list {
    position: relative;
    padding: 10px 0;
}

.goals-list::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--gray-100);
    transform: translateX(-50%);
}

.goal-row {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.goal-side {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.goal-side.active {
    opacity: 1;
}

.team-1-side {
    justify-content: flex-end;
    text-align: right;
}

.team-2-side {
    justify-content: flex-start;
    text-align: left;
}

.goal-time-pill {
    width: 40px;
    height: 24px;
    background: var(--white);
    border: 1px solid var(--blue-primary);
    color: var(--blue-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.15);
}

.goal-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-1-side .goal-details {
    flex-direction: row-reverse;
}

.goal-player-name {
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
}

.goal-player-number {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 600;
}

.goal-icon {
    font-size: 14px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Lineups */
.lineups-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-lineup h5 {
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 12px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-100);
    font-weight: 700;
}

.player-lineup-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    margin-bottom: 8px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.player-lineup-item:hover {
    transform: translateX(2px);
    border-color: var(--blue-light);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.player-photo-small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--gray-100);
}

.player-info-lineup {
    display: flex;
    flex-direction: column;
}

.player-name-lineup {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}

.player-number-lineup {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 600;
}

.player-meta-lineup {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.lineup-main-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #fff7cc;
    border: 1px solid #ffe28a;
    color: #8a5b00;
    font-size: 9px;
    font-weight: 700;
}

/* Player Search */
.player-search {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.player-search input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    background: var(--gray-50);
    transition: all 0.2s ease;
    font-family: inherit;
}

.player-search input:focus {
    outline: none;
    border-color: var(--blue-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.player-search button {
    background: var(--navy);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-search button:hover {
    background: var(--blue-primary);
}

/* Decorative hover ring for major cards */
.match-card,
.news-item-large,
.news-item-small,
.match-item-card,
.player-card,
.transfer-card,
.winner-premium-card,
.team-card {
    position: relative;
    isolation: isolate;
}

.match-card::after,
.news-item-large::after,
.news-item-small::after,
.match-item-card::after,
.player-card::after,
.transfer-card::after,
.winner-premium-card::after,
.team-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.55), rgba(147, 197, 253, 0.22));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: -1;
}

.match-card:hover::after,
.news-item-large:hover::after,
.news-item-small:hover::after,
.match-item-card:hover::after,
.player-card:hover::after,
.transfer-card:hover::after,
.winner-premium-card:hover::after,
.team-card:hover::after {
    opacity: 1;
}

/* Match detail modal content tone (avoid flat white on Goals/Lineups panels) */
.match-modal-content.premium-modal .match-tab-content.active {
    background: linear-gradient(155deg, #f7fbff 0%, #edf5ff 100%);
    border: 1px solid #d5e4f8;
    border-radius: 14px;
    padding: 14px;
}

.match-modal-content.premium-modal .goals-list {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid #deebfa;
    border-radius: 12px;
    padding: 14px 10px;
}

.match-modal-content.premium-modal .team-lineup {
    background: linear-gradient(150deg, #f9fcff 0%, #eef5ff 100%);
    border: 1px solid #d9e7f8;
}

.match-modal-content.premium-modal .player-lineup-item {
    background: #f2f8ff;
    border-color: #d6e4f5;
}

/* Animations */
@keyframes barelangReveal {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.10;
    }
}

@keyframes barelangShimmer {
    0% {
        background-position: center, center, -130% 0;
    }

    100% {
        background-position: center, center, 145% 0;
    }
}

@keyframes headerFloatIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Mobile Responsiveness for Modal */
@media (max-width: 576px) {
    .match-modal-content.premium-modal {
        width: 100%;
        height: 100%;
        max-width: none;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .match-modal-body {
        flex: 1;
        overflow-y: auto;
    }

    .score-display-premium {
        font-size: 32px;
    }

    .team-logo-glow {
        width: 60px;
        height: 60px;
    }

    .team-logo-large-p {
        width: 50px;
        height: 50px;
    }

    .lineups-container {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-header-home {
        animation: none !important;
        background-size: cover, 106%, cover;
        background-position: center, 30% 56%, center;
    }

    .dashboard-header-home::before {
        animation: none !important;
        opacity: 0.1;
    }

    .dashboard-header-inner {
        animation: none !important;
    }

    .section-container,
    .match-card,
    .news-item-large,
    .news-item-small,
    .match-item-card,
    .player-card,
    .transfer-card {
        transition: none !important;
        transform: none !important;
    }
}


/* Override legacy green accents from css/style.css on home/dashboard cards */
.dashboard-wrapper .match-details i,
.dashboard-wrapper .news-views i,
.dashboard-wrapper .view-profile,
.dashboard-wrapper .view-profile i,
.dashboard-wrapper .winner-premium-card:hover .view-profile,
.dashboard-wrapper .winner-premium-card:hover .view-profile i {
    color: var(--navy) !important;
}

.dashboard-wrapper .player-photo {
    border-color: var(--navy) !important;
}
