@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Reset and Root Variables */
.wc26-hub-container,
.wc26-live-cards-container.standalone,
.wc26-fixtures-list.standalone,
.wc26-standings-grid.standalone,
.wc26-groups-container.standalone {
    --wc-bg: #0d1117;
    --wc-card-bg: rgba(22, 27, 34, 0.85);
    --wc-border: #30363d;
    --wc-text-primary: #f0f6fc;
    --wc-text-secondary: #8b949e;
    --wc-accent: #fb4c01;
    --wc-accent-hover: #e34401;
    --wc-live: #ea4335;
    --wc-finished: #2ea44f;
    --wc-font: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --wc-radius-lg: 16px;
    --wc-radius-md: 12px;
    --wc-radius-sm: 8px;
    --wc-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --wc-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --wc-gradient-accent: linear-gradient(135deg, #fb4c01 0%, #e34401 100%);
    --wc-gradient-card: linear-gradient(180deg, rgba(33, 38, 45, 0.2) 0%, rgba(22, 27, 34, 0.5) 100%);

    font-family: var(--wc-font);
    color: var(--wc-text-primary);
    background-color: transparent;
    border: none;
    border-radius: var(--wc-radius-lg);
    padding: 24px 0;
    box-shadow: none;
    margin: 20px 0;
    box-sizing: border-box;
}

.wc26-hub-container *,
.wc26-live-cards-container.standalone *,
.wc26-fixtures-list.standalone *,
.wc26-standings-grid.standalone *,
.wc26-groups-container.standalone * {
    box-sizing: border-box;
}

/* Header Styling */
.wc26-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--wc-border);
    padding-bottom: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 15px;
}

.wc26-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wc26-trophy {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(241, 196, 15, 0.5));
    animation: wc-bounce 3s infinite ease-in-out;
}

.wc26-title-wrapper h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffffff 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wc26-subtitle {
    font-size: 13px;
    color: var(--wc-text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

.wc26-live-indicator-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(234, 67, 53, 0.1);
    border: 1px solid rgba(234, 67, 53, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
}

.wc26-live-dot-pulse {
    width: 10px;
    height: 10px;
    background-color: var(--wc-live);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.7);
    animation: wc-pulse 1.6s infinite cubic-bezier(0.66, 0, 0, 1);
}

.wc26-live-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--wc-live);
    letter-spacing: 0.5px;
}

/* Tabs Navigation */
.wc26-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    /* Firefox */
}

.wc26-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.wc26-tab-btn {
    background: var(--wc-card-bg);
    border: 1px solid var(--wc-border);
    color: var(--wc-text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.wc26-tab-btn:hover {
    color: var(--wc-text-primary);
    border-color: var(--wc-text-secondary);
    background: rgba(33, 38, 45, 0.5);
}

.wc26-tab-btn.active {
    background: var(--wc-gradient-accent);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(251, 76, 1, 0.35);
    transform: translateY(-1px);
}

/* Tab Content Visibility */
.wc26-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.wc26-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Match Cards (Live Tab) */
.wc26-live-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.wc26-match-card {
    background: var(--wc-card-bg);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-lg);
    padding: 20px;
    box-shadow: var(--wc-shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wc26-match-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 196, 15, 0.4);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.wc26-match-card.live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--wc-live);
}

.wc26-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.wc26-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.wc26-badge.live {
    background: rgba(234, 67, 53, 0.15);
    color: var(--wc-live);
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.wc26-match-num {
    font-size: 12px;
    color: var(--wc-text-secondary);
    font-weight: 600;
}

.wc26-card-teams {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.wc26-team-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wc26-flag {
    width: 30px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.wc26-flag-placeholder,
.wc26-flag-sm.placeholder {
    width: 30px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #21262d;
    border-radius: 4px;
    font-size: 12px;
}

.wc26-team-name {
    font-size: 16px;
    font-weight: 600;
    margin-left: 12px;
    flex-grow: 1;
}

.wc26-team-name.placeholder {
    color: var(--wc-text-secondary);
    font-style: italic;
    font-weight: 500;
}

.wc26-score {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    background: #21262d;
    padding: 2px 10px;
    border-radius: 6px;
    min-width: 36px;
    text-align: center;
}

.wc26-scorers {
    font-size: 12px;
    color: var(--wc-text-secondary);
    border-top: 1px solid var(--wc-border);
    padding-top: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}

.wc26-scorers-home,
.wc26-scorers-away {
    width: 48%;
    white-space: pre-line;
}

.wc26-scorers-away {
    text-align: right;
}

.wc26-card-footer {
    font-size: 11px;
    color: var(--wc-text-secondary);
    font-weight: 500;
    text-align: right;
}

/* Empty/No matches live */
.wc26-no-matches {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
    background: var(--wc-card-bg);
    border: 1px dashed var(--wc-border);
    border-radius: var(--wc-radius-lg);
}

.wc26-empty-icon {
    font-size: 50px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.wc26-no-matches h3 {
    font-size: 20px;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.wc26-no-matches p {
    font-size: 14px;
    color: var(--wc-text-secondary);
    margin: 0;
}

.wc26-no-matches.mini {
    padding: 24px;
    text-align: center;
    background: var(--wc-card-bg);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-md);
    font-weight: 600;
    color: var(--wc-text-secondary);
}

/* Fixtures Tab */
.wc26-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.wc26-filters input,
.wc26-filters select {
    background: var(--wc-card-bg);
    border: 1px solid var(--wc-border);
    color: var(--wc-text-primary);
    padding: 12px 16px;
    border-radius: var(--wc-radius-sm);
    font-size: 14px;
    font-family: var(--wc-font);
    outline: none;
    transition: border-color 0.3s;
}

.wc26-filters input {
    flex-grow: 1;
    min-width: 200px;
}

.wc26-filters input:focus,
.wc26-filters select:focus {
    border-color: var(--wc-accent);
}

.wc26-countdown-banner {
    background: linear-gradient(135deg, rgba(22, 27, 34, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
    border: 1px solid rgba(241, 196, 15, 0.25);
    border-radius: var(--wc-radius-lg);
    padding: 24px;
    text-align: center;
    margin-bottom: 28px;
    box-shadow: var(--wc-shadow);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wc26-countdown-banner:hover {
    border-color: rgba(241, 196, 15, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.wc26-countdown-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(241, 196, 15, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.wc26-countdown-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.wc26-countdown-match-info {
    font-size: 13px;
    color: var(--wc-text-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.wc26-countdown-vs-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.wc26-cd-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wc26-cd-team .wc26-flag-sm {
    width: 42px !important;
    height: 28px !important;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wc26-cd-team-name {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
}

.wc26-cd-vs {
    font-size: 12px;
    font-weight: 800;
    color: var(--wc-text-secondary);
    background: #21262d;
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid var(--wc-border);
    text-transform: uppercase;
}

.wc26-countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.wc26-cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(241, 196, 15, 0.03);
    border: 1px solid rgba(241, 196, 15, 0.15);
    border-radius: var(--wc-radius-sm);
    padding: 8px 12px;
    min-width: 65px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wc26-cd-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--wc-accent);
    font-family: monospace;
    line-height: 1;
}

.wc26-cd-lbl {
    font-size: 9px;
    color: var(--wc-text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.wc26-cd-divider {
    font-size: 26px;
    font-weight: 800;
    color: rgba(241, 196, 15, 0.2);
    animation: wc-blink 1s infinite alternate;
}

.wc26-cd-live {
    font-size: 18px;
    font-weight: 700;
    color: var(--wc-live);
    animation: wc-live-flash 1.5s infinite alternate;
}

/* Fixtures Grid Layout */
.wc26-fixtures-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media screen and (max-width: 1200px) {
    .wc26-fixtures-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .wc26-fixtures-list {
        grid-template-columns: 1fr;
    }
}

.wc26-fixture-row {
    display: flex;
    flex-direction: column;
    background: var(--wc-card-bg);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-md);
    padding: 16px;
    transition: all 0.3s ease;
    gap: 14px;
    position: relative;
    box-shadow: var(--wc-shadow-sm);
}

.wc26-fixture-row:hover {
    border-color: rgba(241, 196, 15, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.wc26-fixture-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(48, 54, 61, 0.5);
    padding-bottom: 10px;
}

.wc26-fixture-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wc26-fixture-num {
    font-size: 11px;
    color: var(--wc-text-secondary);
    font-weight: 700;
}

.wc26-fixture-group {
    font-size: 12px;
    font-weight: 600;
    color: var(--wc-accent);
}

.wc26-fixture-teams {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.wc26-fixture-team {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.wc26-flag-sm {
    width: 24px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.wc26-team-text {
    font-size: 14px;
    font-weight: 600;
}

.wc26-team-text.placeholder {
    color: var(--wc-text-secondary);
    font-style: italic;
    font-weight: 500;
}

.wc26-fixture-score-wrapper {
    display: flex;
    justify-content: center;
}

.wc26-fixture-score {
    font-size: 15px;
    font-weight: 800;
    background: #21262d;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 5px;
    letter-spacing: 1px;
}

.wc26-fixture-vs {
    font-size: 11px;
    color: var(--wc-text-secondary);
    font-weight: 700;
    border: 1px solid var(--wc-border);
    padding: 2px 7px;
    border-radius: 50px;
    background: rgba(139, 148, 158, 0.05);
}

.wc26-fixture-date-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--wc-text-secondary);
    border-top: 1px solid rgba(48, 54, 61, 0.3);
    padding-top: 10px;
}

.wc26-fixture-calendar {
    font-size: 13px;
}

.wc26-fixture-date {
    font-weight: 600;
    color: var(--wc-text-primary);
}

.wc26-fixture-status-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 50px;
    width: auto;
}

.wc26-fixture-status-badge.scheduled {
    background: rgba(139, 148, 158, 0.1);
    color: var(--wc-text-secondary);
    border: 1px solid var(--wc-border);
}

.wc26-fixture-status-badge.live {
    background: rgba(234, 67, 53, 0.1);
    color: var(--wc-live);
    border: 1px solid rgba(234, 67, 53, 0.3);
    animation: wc-live-flash 1.5s infinite alternate;
}

.wc26-fixture-status-badge.finished {
    background: rgba(46, 164, 79, 0.15);
    color: var(--wc-finished);
    border: 1px solid rgba(46, 164, 79, 0.3);
}

/* Standings Tab */
.wc26-standings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.wc26-group-table-card {
    background: var(--wc-card-bg);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-lg);
    padding: 20px;
    box-shadow: var(--wc-shadow-sm);
}

.wc26-group-table-card h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--wc-accent);
    border-left: 4px solid var(--wc-accent);
    padding-left: 10px;
}

.wc26-table-responsive {
    overflow-x: auto;
}

.wc26-standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.wc26-standings-table th,
.wc26-standings-table td {
    padding: 10px 8px;
    text-align: center;
}

.wc26-standings-table th {
    color: var(--wc-text-secondary);
    font-weight: 600;
    border-bottom: 1px solid var(--wc-border);
    font-size: 11px;
    text-transform: uppercase;
}

.wc26-standings-table td {
    border-bottom: 1px solid rgba(240, 246, 252, 0.05);
}

.wc26-standings-table tr.advancing td {
    background-color: rgba(46, 164, 79, 0.03);
}

.wc26-standings-table tr.advancing td:first-child {
    border-left: 3px solid var(--wc-finished);
}

.wc26-td-team {
    text-align: left !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.wc26-flag-xs {
    width: 18px;
    height: auto;
    border-radius: 2px;
}

.wc26-td-pts {
    font-weight: 800;
    color: #ffffff;
}

/* Groups Tab */
.wc26-groups-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.wc26-group-card {
    background: var(--wc-card-bg);
    border: 1px solid var(--wc-border);
    border-radius: var(--wc-radius-md);
    overflow: hidden;
    box-shadow: var(--wc-shadow-sm);
}

.wc26-group-card-header {
    background: #21262d;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid var(--wc-border);
    color: var(--wc-accent);
}

.wc26-group-teams-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wc26-group-teams-list li {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(240, 246, 252, 0.05);
    font-weight: 600;
    font-size: 14px;
}

.wc26-group-teams-list li:last-child {
    border-bottom: none;
}

/* Standalone Styling overrides */
.wc26-live-cards-container.standalone,
.wc26-fixtures-list.standalone,
.wc26-standings-grid.standalone,
.wc26-groups-container.standalone {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    margin: 0;
}

/* Keyframe Animations */
@keyframes wc-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes wc-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(234, 67, 53, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 67, 53, 0);
    }
}

@keyframes wc-live-flash {
    from {
        opacity: 1;
    }

    to {
        opacity: 0.6;
    }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .wc26-fixture-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 16px;
    }

    .wc26-fixture-info {
        align-items: center;
    }

    .wc26-fixture-teams {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wc26-fixture-team.home {
        justify-content: center;
        text-align: center;
        flex-direction: row-reverse;
    }

    .wc26-fixture-team.away {
        justify-content: center;
    }

    .wc26-fixture-date-time {
        align-items: center;
    }
}

/* Banner Header Component */
.wc26-banner-link {
    text-decoration: none !important;
    display: block;
    margin: 20px 0;
}

.wc26-banner-container {
    --wc-banner-bg: linear-gradient(90deg, rgba(8, 24, 37, 0.95) 0%, rgba(3, 11, 19, 0.95) 100%);
    --wc-banner-border: rgba(0, 168, 204, 0.25);

    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--wc-banner-bg);
    border: 1px solid var(--wc-banner-border);
    border-radius: 12px;
    padding: 16px 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wc26-banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 50%, rgba(0, 242, 254, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.wc26-banner-container:hover {
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 242, 254, 0.15), 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.wc26-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.wc26-banner-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wc26-banner-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.wc26-banner-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wc26-banner-badge {
    background: #ea4335;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 6px rgba(234, 67, 53, 0.3);
}

.wc26-banner-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: wc-pulse-white 1.6s infinite cubic-bezier(0.66, 0, 0, 1);
}

.wc26-banner-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.wc26-banner-desc {
    font-size: 13px;
    color: #8b949e;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
}

.wc26-banner-right {
    display: flex;
    align-items: center;
    z-index: 1;
}

.wc26-banner-btn {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #000000 !important;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 24px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    text-align: center;
}

.wc26-banner-container:hover .wc26-banner-btn {
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.6);
    transform: scale(1.05);
}

@keyframes wc-pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Responsive banner styles */
@media screen and (max-width: 768px) {
    .wc26-banner-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .wc26-banner-right {
        width: 100%;
    }

    .wc26-banner-btn {
        width: 100%;
        padding: 12px 24px;
    }

    .wc26-banner-left {
        gap: 16px;
    }

    .wc26-banner-logo {
        width: 50px;
        height: 50px;
    }

    .wc26-banner-title {
        font-size: 18px;
    }

    .wc26-banner-desc {
        font-size: 12px;
    }
}

/* Custom Popup Notification Component */
.wc26-popup-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 365px;
    background: linear-gradient(135deg, rgba(14, 20, 29, 0.98) 0%, rgba(9, 13, 20, 0.98) 100%);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.08), 0 20px 50px rgba(0, 0, 0, 0.7);
    z-index: 99999;
    transform: translateX(180%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    color: #f0f6fc;
    overflow: hidden;
    cursor: pointer;
}

.wc26-popup-notification * {
    box-sizing: border-box;
}

.wc26-popup-notification.active {
    transform: translateX(0);
}

.wc26-popup-notification.closing {
    animation: wc-popup-slide-out 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes wc-popup-slide-out {
    0% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    20% {
        transform: translateX(-20px) scale(1.02);
        opacity: 1;
    }

    100% {
        transform: translateX(150%) scale(0.9);
        opacity: 0;
    }
}

.wc26-popup-header {
    position: relative;
    width: 100%;
}

.wc26-popup-logo {
    position: absolute;
    top: 14px;
    left: 14px;
    right: auto;
    z-index: 10;
    margin: 0;
    height: 44px;
}

.wc26-popup-img-logo {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

.wc26-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    background: rgba(9, 13, 20, 0.6);
    backdrop-filter: blur(4px);
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.wc26-popup-close:hover {
    background: rgba(234, 67, 53, 0.9);
    color: #ffffff;
    transform: rotate(90deg);
}

.wc26-popup-banner-img-wrapper {
    width: 100%;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
    height: 165px;
}

.wc26-popup-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wc26-popup-banner-img-wrapper:hover .wc26-popup-banner-img {
    transform: scale(1.04);
}

.wc26-popup-body {
    padding: 20px 20px 24px 20px;
}

.wc26-popup-banner {
    text-align: center;
    margin-bottom: 16px;
}

.wc26-popup-badge {
    background: #ea4335;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(234, 67, 53, 0.4);
    animation: wc-live-badge-glow 1.8s infinite ease-in-out;
}

@keyframes wc-live-badge-glow {
    0% {
        box-shadow: 0 2px 8px rgba(234, 67, 53, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 2px 16px rgba(234, 67, 53, 0.8), 0 0 0 6px rgba(234, 67, 53, 0.25);
        transform: scale(1.03);
    }

    100% {
        box-shadow: 0 2px 8px rgba(234, 67, 53, 0.4);
        transform: scale(1);
    }
}

.wc26-popup-badge.upcoming {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.wc26-popup-badge.upcoming .wc26-popup-dot {
    background-color: #cbd5e1;
    animation: wc-pulse-white 2.5s infinite ease-in-out;
    opacity: 0.7;
}

.wc26-popup-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: wc-pulse-white 1.5s infinite;
}

.wc26-popup-title {
    font-size: 21px;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 30%, #b0c0d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 8px 0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.25;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.wc26-popup-title-text {
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
}

.wc26-popup-desc {
    color: #e2e8f0;
    margin: 8px auto 0;
    line-height: 30px;
    text-align: center !important;
    max-width: 100%;
    font-weight: 400;
}

.wc26-popup-desc-line1 {
    display: block;
    font-size: 14.5px;
    white-space: nowrap;
    letter-spacing: -0.2px;
}

.wc26-popup-desc-line2 {
    display: block;
    font-size: 13.5px;
    margin-top: 4px;
}

.wc26-popup-highlight {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
}

.wc26-popup-link {
    color: #00f2fe !important;
    text-decoration: none !important;
    font-weight: 800;
    position: relative;
    background: linear-gradient(90deg, #fe0000 0%, #fe4f4f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    font-size: 17px;
}

.wc26-popup-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #fe0000 0%, #fe4f4f 100%);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.wc26-popup-link:hover {
    filter: drop-shadow(0 0 8px rgba(254, 0, 0, 0.6));
}

.wc26-popup-link:hover::after {
    opacity: 1;
    height: 2px;
}

/* Match container scoreboard styling */
.wc26-popup-match-container {
    margin-bottom: 20px;
    width: 100%;
}

/* 1. Live Match Card */
.wc26-popup-live-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(9, 13, 20, 0.65);
    border: 1px solid rgba(234, 67, 53, 0.5);
    border-radius: 12px;
    padding: 16px 12px;
    box-shadow: 0 4px 20px rgba(234, 67, 53, 0.15);
    animation: wc-live-border-glow 2.5s infinite ease-in-out;
}

@keyframes wc-live-border-glow {
    0% {
        border-color: rgba(234, 67, 53, 0.4);
        box-shadow: 0 4px 15px rgba(234, 67, 53, 0.1), inset 0 0 10px rgba(234, 67, 53, 0.05);
    }

    50% {
        border-color: rgba(234, 67, 53, 0.95);
        box-shadow: 0 4px 25px rgba(234, 67, 53, 0.45), inset 0 0 15px rgba(234, 67, 53, 0.15);
    }

    100% {
        border-color: rgba(234, 67, 53, 0.4);
        box-shadow: 0 4px 15px rgba(234, 67, 53, 0.1), inset 0 0 10px rgba(234, 67, 53, 0.05);
    }
}

.wc26-popup-live-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 32%;
    text-align: center;
}

.wc26-popup-live-team .wc26-popup-team-name,
.wc26-popup-upcoming-team .wc26-popup-team-name {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.wc26-popup-flag {
    width: 34px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease;
}

.wc26-popup-flag:hover {
    transform: scale(1.15) rotate(2deg);
}

.wc26-popup-flag-placeholder {
    width: 34px;
    height: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #161b22;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wc26-popup-live-score-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 36%;
}

.wc26-popup-live-score {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    background: #05070a;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 2px;
    border: 1px solid rgba(234, 67, 53, 0.45);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.8);
    font-family: 'Outfit', sans-serif;
    display: inline-block;
}

.wc26-popup-live-time {
    font-size: 9px;
    font-weight: 800;
    color: #ea4335;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    animation: wc-live-text-glow 1s infinite alternate;
}

@keyframes wc-live-text-glow {
    0% {
        opacity: 0.65;
        text-shadow: 0 0 2px rgba(234, 67, 53, 0.2);
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(234, 67, 53, 0.95), 0 0 15px rgba(234, 67, 53, 0.5);
    }
}

/* 2. Upcoming Match Card */
.wc26-popup-upcoming-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wc26-popup-upcoming-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 32%;
    text-align: center;
}

.wc26-popup-upcoming-team.home,
.wc26-popup-upcoming-team.away {
    justify-content: center;
}

.wc26-popup-flag-sm {
    width: 22px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wc26-popup-flag-placeholder-sm {
    width: 22px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #161b22;
    border-radius: 3px;
    font-size: 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wc26-popup-vs {
    font-size: 9px;
    font-weight: 800;
    color: #8b949e;
    background: #090d14;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 3. Countdown Timer */
.wc26-popup-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: #090d14;
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.wc26-popup-cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 44px;
}

.wc26-popup-cd-num {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.wc26-popup-cd-lbl {
    font-size: 9px;
    color: #8b949e;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.wc26-popup-cd-colon {
    font-size: 22px;
    font-weight: 800;
    color: rgba(241, 196, 15, 0.4);
    line-height: 1;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

/* Popup Action Buttons */
.wc26-popup-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wc26-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

.wc26-popup-btn.details {
    background: #21262d;
    border: 1px solid var(--wc-border);
    color: #f0f6fc !important;
}

.wc26-popup-btn.details:hover {
    background: #30363d;
    border-color: var(--wc-text-secondary);
}

.wc26-popup-btn.live {
    background: #fb4c01;
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(251, 76, 1, 0.35);
    animation: wc-btn-pulsate 2s infinite ease-in-out;
}

.wc26-popup-btn.live:hover {
    background: #fc5c1a;
    box-shadow: 0 6px 20px rgba(251, 76, 1, 0.65);
    transform: translateY(-2px) scale(1.03);
}

@keyframes wc-btn-pulsate {
    0% {
        box-shadow: 0 4px 12px rgba(251, 76, 1, 0.35), 0 0 0 0 rgba(251, 76, 1, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(251, 76, 1, 0.6), 0 0 0 8px rgba(251, 76, 1, 0);
    }

    100% {
        box-shadow: 0 4px 12px rgba(251, 76, 1, 0.35), 0 0 0 0 rgba(251, 76, 1, 0.4);
    }
}

@media screen and (max-width: 480px) {
    .wc26-popup-notification {
        width: calc(100% - 32px);
        bottom: 16px;
        right: 16px;
    }
}

/* Stacking multiple live matches */
.wc26-popup-live-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Live Match flashing gold border animation during goal alert */
.wc26-popup-notification.goal-flash {
    animation: wc-goal-border-flash 0.5s infinite alternate;
}

@keyframes wc-goal-border-flash {
    0% {
        border-color: rgba(251, 76, 1, 0.4);
        box-shadow: 0 0 10px rgba(251, 76, 1, 0.3);
    }

    100% {
        border-color: #ffd700;
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), inset 0 0 15px rgba(255, 215, 0, 0.4);
    }
}

/* Glassmorphic Goal Overlay */
.wc26-goal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 22, 14, 0.96) 0%, rgba(4, 11, 7, 0.98) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wc26-goal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.wc26-goal-overlay-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.wc26-goal-text {
    font-size: 44px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.5);
    transform: scale(0.3);
    opacity: 0;
}

.wc26-goal-overlay.active .wc26-goal-text {
    animation: wc-goal-scale-bounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
        wc-goal-text-glow 1.5s infinite alternate ease-in-out;
}

.wc26-goal-subtext {
    font-size: 14px;
    font-weight: 700;
    color: #00f2fe;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
}

.wc26-goal-overlay.active .wc26-goal-subtext {
    animation: wc-goal-fade-up 0.5s ease 0.4s forwards;
}

/* Floating Football Particles */
.wc26-goal-ball {
    position: absolute;
    bottom: -40px;
    font-size: 22px;
    opacity: 0;
    user-select: none;
    pointer-events: none;
}

.wc26-goal-overlay.active .wc26-goal-ball {
    animation: wc-goal-ball-float 3s linear infinite;
}

/* Keyframes */
@keyframes wc-goal-scale-bounce {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes wc-goal-text-glow {
    0% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.4);
    }

    100% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.9), 0 0 40px rgba(0, 242, 254, 0.8), 0 0 60px rgba(255, 255, 255, 0.6);
    }
}

@keyframes wc-goal-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wc-goal-ball-float {
    0% {
        transform: translateY(0) scale(0.4) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-240px) scale(1.2) rotate(360deg);
        opacity: 0;
    }
}

/* Premium Countdown Timer Layout Overrides (Hub and Popup) */
.wc26-countdown-box-wrapper {
    background: rgba(4, 15, 24, 0.6);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 16px;
    padding: 24px;
    margin-top: 15px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.wc26-countdown-banner .wc26-countdown-vs-wrapper {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.wc26-countdown-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 242, 254, 0.2) 50%, transparent 100%);
}

.wc26-countdown-banner .wc26-countdown-timer {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.wc26-countdown-banner .wc26-cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 54px;
}

.wc26-countdown-banner .wc26-cd-num {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

.wc26-countdown-banner .wc26-cd-lbl {
    font-size: 10px;
    font-weight: 700;
    color: #8b949e;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 0.8px;
}

.wc26-countdown-banner .wc26-cd-divider {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Popup Countdown Unified Box */
.wc26-popup-countdown-wrapper {
    background: rgba(9, 13, 20, 0.7);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.wc26-popup-upcoming-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 8px;
    margin: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.wc26-popup-countdown-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 242, 254, 0.15) 50%, transparent 100%);
}

.wc26-popup-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Today's Matches Filter Button */
.wc26-today-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 16px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wc26-today-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00f2fe;
}

.wc26-today-filter-btn.active {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #000000;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 242, 254, 0.3);
}

/* Stadium & Scorer details styling */
.wc26-fixture-venue {
    font-size: 10.5px;
    color: #8b949e;
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.wc26-stadium-badge {
    font-size: 10px;
    color: #8b949e;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
}

.wc26-cd-stadium {
    font-size: 11px;
    color: #ffd700;
    opacity: 0.9;
    margin-left: 8px;
    display: inline-block;
}

.wc26-opp-link,
.wc26-team-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wc26-opp-link:hover,
.wc26-team-link:hover {
    color: #00f2fe;
    text-decoration: underline;
}

/* Knockout Bracket Tree Styles */
.wc26-bracket-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
}

.wc26-bracket-scroll-wrapper {
    display: flex;
    gap: 30px;
    min-width: 1200px;
    padding-bottom: 15px;
}

.wc26-bracket-round {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 240px;
}

.wc26-bracket-round-title {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: #00f2fe;
    border-bottom: 1px solid rgba(0, 242, 254, 0.15);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wc26-bracket-matches-list {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.wc26-bracket-match-card {
    background: rgba(9, 13, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
}

.wc26-bracket-match-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
}

.wc26-bracket-match-card.live {
    border-color: #ea4335;
    box-shadow: 0 0 10px rgba(234, 67, 53, 0.2);
}

.wc26-bracket-match-card.finished {
    border-color: rgba(46, 125, 50, 0.4);
}

.wc26-bm-header {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #8b949e;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.wc26-bm-live-badge {
    color: #ea4335;
    animation: wc-live-flash 1s infinite alternate;
}

.wc26-bm-teams {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wc26-bm-team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.wc26-bm-team.placeholder {
    color: #8b949e;
    font-weight: 400;
    font-style: italic;
}

.wc26-bm-team-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wc26-bm-team a {
    color: inherit;
    text-decoration: none;
}

.wc26-bm-team a:hover {
    color: #00f2fe;
    text-decoration: underline;
}

.wc26-bm-score {
    font-weight: 800;
    color: #00f2fe;
    background: rgba(0, 242, 254, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 16px;
    text-align: center;
}

.wc26-bracket-match-card.finished .wc26-bm-score {
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.1);
}

/* Team Profile Page Styles */
.wc26-team-profile-container {
    padding: 10px 0;
    font-family: 'Outfit', sans-serif;
}

.wc26-back-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 16px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.wc26-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00f2fe;
    transform: translateX(-2px);
}

.wc26-profile-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(8, 24, 37, 0.95) 0%, rgba(3, 11, 19, 0.95) 100%);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.wc26-profile-flag {
    width: 80px;
    height: auto;
    border-radius: 6px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.wc26-profile-names h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.wc26-profile-meta {
    font-size: 14px;
    color: #8b949e;
    margin-top: 4px;
    display: block;
}

.wc26-profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

@media screen and (max-width: 900px) {
    .wc26-profile-grid {
        grid-template-columns: 1fr;
    }
}

.wc26-profile-matches h2,
.wc26-profile-standings h2 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.wc26-profile-matches-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wc26-profile-match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(9, 13, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    transition: border-color 0.2s ease;
}

.wc26-profile-match-row:hover {
    border-color: rgba(0, 242, 254, 0.2);
}

.wc26-profile-match-row.live {
    border-color: rgba(234, 67, 53, 0.4);
}

.wc26-pm-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 90px;
}

.wc26-pm-num {
    font-size: 11px;
    font-weight: 700;
    color: #8b949e;
}

.wc26-pm-type {
    font-size: 11px;
    font-weight: 800;
    color: #00f2fe;
    text-transform: uppercase;
}

.wc26-pm-teams {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    padding: 0 15px;
}

.wc26-pm-role {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    color: #8b949e;
    text-transform: uppercase;
}

.wc26-pm-vs-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.wc26-pm-opponent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.wc26-pm-opponent a {
    color: #ffffff;
    text-decoration: none;
}

.wc26-pm-opponent a:hover {
    color: #00f2fe;
    text-decoration: underline;
}

.wc26-pm-score-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wc26-pm-time {
    font-size: 12px;
    color: #8b949e;
}

.wc26-pm-score {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #05070a;
}

.wc26-pm-score.live {
    color: #ea4335;
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.wc26-pm-score.ft {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wc26-pm-badge {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.wc26-pm-badge.scheduled {
    background: rgba(255, 255, 255, 0.05);
    color: #8b949e;
}

.wc26-pm-badge.live {
    background: #ea4335;
    color: #ffffff;
    animation: wc-live-flash 1s infinite alternate;
}

.wc26-pm-badge.finished {
    background: rgba(46, 125, 50, 0.15);
    color: #2e7d32;
}

.current-team {
    background: rgba(0, 242, 254, 0.04) !important;
}

.wc26-flag-placeholder-xs {
    width: 22px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #161b22;
    border-radius: 3px;
    font-size: 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wc26-error {
    background: rgba(214, 54, 56, 0.1);
    border: 1px solid #d63638;
    color: #ff8a8a;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 13px;
}

/* Extra Mobile Responsiveness */
@media screen and (max-width: 480px) {
    .wc26-cd-team-name {
        font-size: 16px;
    }

    .wc26-cd-team .wc26-flag-sm {
        width: 32px !important;
        height: 22px !important;
    }

    .wc26-countdown-vs-wrapper {
        gap: 12px;
    }

    .wc26-countdown-banner .wc26-cd-num {
        font-size: 26px;
    }

    .wc26-countdown-banner .wc26-cd-divider {
        font-size: 20px;
    }

    .wc26-popup-buttons {
        gap: 8px;
    }

    .wc26-popup-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}