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

:root {
    --bg-dark: #060c1b;
    --bg-card: #12192c;
    --bg-card-hover: #19233e;
    --primary: #19388A;
    --primary-light: #4F91CD;
    --accent: #ff5722;
    --accent-gold: #ECC542;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
    --live-color: #ef4444;
    --success: #22c55e;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Team Colors */
    --csk: #FEE805; --csk-sec: #004D9C;
    --mi: #004BA0; --mi-sec: #D1AB3E;
    --rcb: #E0333E; --rcb-sec: #2B2A29;
    --kkr: #3A225D; --kkr-sec: #ECC542;
    --rr: #EA1A85; --rr-sec: #254AA5;
    --srh: #F26522; --srh-sec: #000000;
    --dc: #000080; --dc-sec: #FF0000;
    --pbks: #D71920; --pbks-sec: #D4AF37;
    --lsg: #112233; --lsg-sec: #E0333E;
    --gt: #1C2E4A; --gt-sec: #E2B755;
}

/* Light Theme Variables and Overrides */
.light-theme {
    --bg-dark: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --border-color: rgba(15, 23, 42, 0.08);
    --text-white: #0c1833;
    --text-muted: #64748b;
}

.light-theme header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.light-theme .match-ticker {
    background: #e2e8f0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.light-theme .ticker-card {
    background: rgba(15, 23, 42, 0.03);
    border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.light-theme .ticker-card:hover {
    background: rgba(15, 23, 42, 0.06);
}

.light-theme .ticker-card.live {
    background: rgba(239, 68, 68, 0.05);
}

.light-theme input, 
.light-theme select, 
.light-theme textarea,
.light-theme .form-control {
    background: #f8fafc !important;
    color: #0c1833 !important;
}

.light-theme .poll-option-btn-premium {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}

.light-theme .poll-option-btn-premium:hover {
    background: #f1f5f9;
}

.light-theme .btn-slanted-outline {
    border-color: #0c1833 !important;
    color: #0c1833 !important;
}

.light-theme .btn-slanted-outline::before {
    background: #0c1833 !important;
}

.light-theme .btn-slanted-outline:hover {
    color: #fff !important;
}

.light-theme .slider-arrow {
    background: rgba(255, 255, 255, 0.7);
    color: #0c1833;
    border-color: rgba(15, 23, 42, 0.1);
}

.light-theme .slider-arrow:hover {
    background: var(--primary);
    color: #fff;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* BCCI Sub-Header Bar (Screenshot 1) */
.bcci-subheader {
    background: #03060f;
    border-bottom: 1px solid var(--border-color);
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.subheader-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.subheader-left {
    display: flex;
    gap: 20px;
}

.sub-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.sub-logo:hover {
    color: var(--text-white);
}

.subheader-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.subheader-right span {
    margin-right: 5px;
}

.subheader-right a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.subheader-right a:hover {
    color: var(--text-white);
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 12, 27, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-sun-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(236, 197, 66, 0.5);
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-sub {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
}

.brand-main {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.btn-admin-header {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 12px !important;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
}

.btn-admin-header:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Nav Right Actions */
.nav-right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 15px;
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
}

.action-fan-poll {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff5722, #e64a19);
    color: var(--text-white) !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
    font-size: 0.8rem !important;
}

.action-fan-poll:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 87, 34, 0.4);
}

.action-icon {
    color: var(--text-white);
    font-size: 1.1rem;
}

.action-icon:hover {
    color: var(--accent-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Match Ticker Style */
.match-ticker {
    background: #03060d;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 6px 0;
}

.ticker-container {
    display: flex;
    gap: 15px;
    padding: 0 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.ticker-container::-webkit-scrollbar {
    display: none;
}

.ticker-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 8px 14px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
}

.ticker-card.live {
    border-left: 3px solid var(--live-color);
    background: rgba(239, 68, 68, 0.02);
}

.ticker-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--live-color);
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

.ticker-teams {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-weight: 600;
}

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

.ticker-team-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ticker-team-badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
}

.ticker-score {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.ticker-result {
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Page containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* SECTION 1: HERO CAROUSEL (Screenshot 1) */
.hero-slider-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 560px;
    background: #000;
    overflow: hidden;
}

.hero-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 80px 100px;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 12, 27, 0.95) 15%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-category-tag {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Slanted CTAs / Buttons (Official IPL Brand Styling) */
.btn-slanted {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(90deg, #1A3482, #0A163B);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    transform: skewX(-15deg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-slanted:hover {
    background: linear-gradient(90deg, #2243A3, #12245C);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.btn-slanted-content {
    transform: skewX(15deg);
    display: inline-block;
}

.btn-play-pill {
    background: #fff;
    color: #000;
    border-radius: 30px;
    padding: 10px 28px;
    font-family: var(--font-heading);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.btn-play-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

.btn-play-pill i {
    color: var(--accent);
    font-size: 0.9rem;
}

.btn-share-round {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-share-round:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.08);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
}

.slider-arrow.left { left: 30px; }
.slider-arrow.right { right: 30px; }

/* SECTION 2: SHORTS SLIDER (Screenshot 2) */
.shorts-section {
    background: linear-gradient(to bottom, #060c1b, #0a1124);
    padding: 50px 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-bottom: 1px solid var(--border-color);
}

.shorts-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.shorts-header {
    margin-bottom: 25px;
}

.shorts-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.shorts-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.shorts-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.shorts-row::-webkit-scrollbar {
    display: none;
}

.short-card {
    min-width: 155px;
    width: 155px;
    height: 240px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition);
}

.short-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.short-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.1) 100%);
}

.short-card-title {
    position: absolute;
    bottom: 15px;
    left: 12px;
    right: 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* SECTION 2 PART 2: FINDER TABS (Screenshot 2) */
.finder-section {
    padding: 60px 0;
    text-align: center;
}

.finder-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.finder-tabs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.finder-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 22px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.finder-tab:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.finder-tab.active {
    background: linear-gradient(135deg, #e64a19, #ff5722);
    border-color: #ff5722;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.25);
}

.finder-tab i {
    font-size: 1.25rem;
}

/* SECTION 3: POINTS TABLE CARDS (Screenshot 3) */
.points-section-wrapper {
    background: #080e1d;
    padding: 60px 0;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.points-header {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 20px;
    text-align: left;
}

.points-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

.points-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.points-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.points-detail-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.card-rank-num {
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.card-playoff-q {
    position: absolute;
    top: 25px;
    left: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-hexagon {
    width: 20px;
    height: 20px;
    background: #000;
    border: 2px solid var(--success);
    color: var(--success);
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.card-team-logo-wrapper {
    margin-top: 10px;
    margin-bottom: 12px;
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.card-team-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
}

.card-team-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    margin-bottom: 15px;
    text-align: center;
}

.card-stat-col {
    display: flex;
    flex-direction: column;
}

.card-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.card-stat-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 2px;
}

.card-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.card-form-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.card-form-dots {
    display: flex;
    gap: 6px;
}

.form-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.form-dot.w { border: 1.5px solid var(--success); color: var(--success); background: rgba(34, 197, 94, 0.05); }
.form-dot.l { border: 1.5px solid var(--live-color); color: var(--live-color); background: rgba(239, 68, 68, 0.05); }

/* SECTION 4: TOP PERFORMERS SPOTLIGHT (Screenshot 4) */
.performers-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(26, 43, 90, 0.3) 0%, var(--bg-dark) 70%);
}

.performer-card-glow {
    background: linear-gradient(135deg, rgba(18, 25, 44, 0.9) 0%, rgba(8, 12, 23, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.performer-card-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 197, 66, 0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.performer-left-show {
    position: relative;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
}

.performer-giant-rank {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 22rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 0.8;
    z-index: 0;
    user-select: none;
    left: -20px;
}

.player-avatar-cutout {
    width: 280px;
    height: 340px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(to top, rgba(234, 26, 133, 0.25) 0%, rgba(0,0,0,0) 70%);
    border-radius: 20px;
    border-bottom: 4px solid var(--rr);
    overflow: hidden;
}

.cutout-graphics-avatar {
    font-size: 9rem;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.performer-right-stats {
    width: 50%;
    z-index: 2;
}

.performer-cap-badge {
    background: linear-gradient(135deg, #e65100, #ff5722);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255,87,34,0.3);
}

.performer-name-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.performer-runs-highlight {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 25px;
}

.performer-runs-highlight span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stats-grid-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 25px;
    margin-bottom: 30px;
    max-width: 480px;
}

.stats-grid-box table {
    width: 100%;
}

.stats-grid-box th {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid-box td {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    padding-top: 8px;
    border-bottom: none;
}

/* SECTION 5: TOURNAMENT IN NUMBERS (Screenshot 5) */
.numbers-section {
    padding: 60px 0;
    background: #050a17;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    border-top: 1px solid var(--border-color);
}

.numbers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.numbers-header {
    margin-bottom: 35px;
}

.numbers-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.num-card-blue {
    background: linear-gradient(135deg, #1A46C4 0%, #071D57 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.num-card-val {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-white);
}

.num-card-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
}

.num-card-winner {
    background: linear-gradient(135deg, #3A225D 0%, #150926 100%);
    border: 1px solid rgba(123, 31, 162, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.winner-cup-graphic {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(236, 197, 66, 0.4);
}

.num-card-winner h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.num-card-winner h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* Secondary spotlight row */
.spotlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.spotlight-mini-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition);
}

.spotlight-mini-card:hover {
    border-color: rgba(255,255,255,0.12);
}

.spotlight-mini-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-card-hover));
    border: 2.5px solid var(--rr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-muted);
}

.spotlight-mini-label {
    background: rgba(255, 87, 34, 0.1);
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 4px;
}

.spotlight-mini-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
}

.spotlight-mini-stat {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.spotlight-mini-stat strong {
    color: var(--text-white);
}

/* Bottom Quick Links Nav */
.quick-links-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.quick-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quick-link-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.15);
}

.quick-link-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.quick-link-card:hover .quick-link-icon-wrapper {
    background: var(--primary);
    color: #fff;
}

.quick-link-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Footer Style */
footer {
    background: #03050c;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 0;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .points-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .numbers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0 20px;
    }
    .hero-slider-slide {
        padding: 60px 40px;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .performer-card-glow {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }
    .performer-left-show, .performer-right-stats {
        width: 100%;
    }
    .performer-left-show {
        height: auto;
    }
    .player-avatar-cutout {
        width: 100%;
        max-width: 320px;
    }
    .quick-links-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bcci-subheader {
        display: none;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 30px 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .finder-tabs-container {
        grid-template-columns: 1fr 1fr;
    }
    .points-cards-container {
        grid-template-columns: 1fr;
    }
    .spotlight-row {
        grid-template-columns: 1fr;
    }
    .quick-links-strip {
        grid-template-columns: 1fr;
    }
}

/* iplt20.com Match Results Card Redesign */
.results-page-wrapper {
    background-color: var(--bg-dark);
    padding: 40px 0;
}

.result-card-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.result-card {
    background: linear-gradient(135deg, rgba(18, 25, 44, 0.95) 0%, rgba(8, 12, 23, 0.98) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.result-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-gold));
    opacity: 0.7;
}

.result-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.result-card-header .match-number {
    color: var(--accent-gold);
}

.result-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.result-team-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 42%;
}

.result-team-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-team-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.result-team-names {
    display: flex;
    flex-direction: column;
}

.result-team-short {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
}

.result-team-full {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.result-team-score {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.score-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
}

.score-overs {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.result-team-block.right-align {
    flex-direction: row-reverse;
}

.result-team-block.right-align .result-team-score {
    align-items: flex-start;
    text-align: left;
}

.result-vs-divider {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-card-outcome {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.result-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.btn-slanted-outline {
    display: inline-block;
    padding: 8px 24px;
    background: transparent;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    transform: skewX(-15deg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-slanted-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-share-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-share-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

@media (max-width: 768px) {
    .result-card-body {
        flex-direction: column;
        gap: 15px;
    }
    .result-team-block, .result-team-block.right-align {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    .result-team-block.right-align .result-team-score {
        align-items: flex-end;
        text-align: right;
    }
    .result-vs-divider {
        display: none;
    }
    .result-card-actions {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
}

/* Filter Bar Premium Redesign */
.filter-bar {
    background: rgba(18, 25, 44, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 24px !important;
    margin-bottom: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 0 !important;
    min-width: 220px !important;
}

.filter-group label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-select {
    background: #060c1b !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 30px !important;
    color: var(--text-white);
    padding: 10px 20px !important;
    font-family: var(--font-body);
    font-size: 0.85rem !important;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select option {
    background-color: var(--bg-card);
    color: var(--text-white);
}

.filter-select:focus, .filter-select:hover {
    border-color: var(--primary-light) !important;
    box-shadow: 0 0 10px rgba(79, 145, 205, 0.15);
}

/* Redesigned Admin Portal Overrides */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 35px;
}

.admin-stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.admin-stat-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.admin-stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.admin-stat-val-block {
    display: flex;
    flex-direction: column;
}

.admin-stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.admin-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-player-edit-row {
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.admin-player-edit-header {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.admin-form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.admin-form-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .admin-form-grid-3, .admin-form-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Footer Premium Interactive Additions */
.footer-about a {
    display: inline-block;
    transition: var(--transition);
}

.footer-about a:hover {
    color: var(--accent-gold) !important;
    transform: translateY(-3px);
}

.footer-links-col a {
    transition: var(--transition);
    display: inline-block;
}

.footer-links-col a:hover {
    color: var(--text-white) !important;
    transform: translateX(5px);
}

/* Footer layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-about p {
        margin: 0 auto 20px;
    }
    .footer-about div {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
        padding-bottom: 30px !important;
    }
}

.footer-about h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.footer-about h3 span {
    color: var(--accent-gold);
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 400px;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 30px auto 0;
    padding: 0 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Admin Portal Layouts & Login Form Controls */
.admin-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.admin-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
}

.admin-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-sidebar a {
    display: block;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.admin-sidebar a.active {
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 6px 6px 0;
}

.admin-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 35px;
}

@media (max-width: 768px) {
    .admin-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .admin-sidebar {
        padding: 15px !important;
    }
    .admin-sidebar ul {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    .admin-sidebar a {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        text-align: center;
        border-left: none !important;
        border-bottom: 2px solid transparent !important;
        border-radius: 6px !important;
    }
    .admin-sidebar a.active {
        border-bottom: 2px solid var(--accent-gold) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 6px !important;
    }
    .admin-content {
        padding: 20px !important;
    }
}

.admin-login-card {
    max-width: 420px;
    margin: 100px auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-top: 4px solid var(--accent);
}

.admin-login-card h2 {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
    color: var(--text-white);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
}

.form-control option {
    background-color: var(--bg-card);
    color: var(--text-white);
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 10px rgba(79, 145, 205, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, #e64a19, #ff5722);
    color: #fff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.35);
}

.alert {
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: var(--live-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.row .form-group {
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Team Details Page Redesign */
.team-banner {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.team-banner-watermark {
    position: absolute;
    right: -20px;
    bottom: -45px;
    font-family: var(--font-heading);
    font-size: 16rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    user-select: none;
    z-index: 0;
    line-height: 0.8;
}

.team-banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 30px;
    flex-wrap: wrap;
}

.team-banner-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.team-banner-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 850;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.team-banner-titles {
    display: flex;
    flex-direction: column;
}

.team-location {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.team-banner-titles h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 12px;
}

.team-banner-pill-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.team-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.team-pill strong {
    color: var(--text-white);
    font-weight: 700;
}

.team-banner-right {
    min-width: 320px;
}

.team-meta-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    backdrop-filter: blur(10px);
}

.team-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-meta-item.gold-border {
    border-left: 2px solid var(--accent-gold);
    padding-left: 10px;
}

.meta-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.meta-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Squad Members Grid & Cards */
.squad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.player-card {
    background: linear-gradient(135deg, rgba(18, 25, 44, 0.8) 0%, rgba(8, 12, 23, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.player-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.player-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.player-card .player-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.player-card .player-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    letter-spacing: 0.25px;
}

.player-card .player-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.player-nationality {
    margin-bottom: 16px;
}

.badge-overseas, .badge-indian {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.badge-overseas {
    background: rgba(79, 145, 205, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(79, 145, 205, 0.25);
}

.badge-indian {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.player-card .player-stats-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.player-card .player-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.player-card .stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.player-card .stat-val {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
}

.highlight-short {
    color: var(--accent-gold);
    font-weight: 800;
}

@media (max-width: 992px) {
    .team-banner-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .team-banner-right {
        width: 100%;
    }
}

/* Admin Franchise Cards Layout */
.admin-teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.admin-team-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.admin-team-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.admin-team-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.admin-team-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.admin-team-card-names {
    display: flex;
    flex-direction: column;
}

.admin-team-card-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
}

.admin-team-card-short {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.admin-team-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.admin-team-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.admin-team-card-item span {
    color: var(--text-muted);
}

.admin-team-card-item strong {
    color: var(--text-white);
    font-weight: 600;
}

.admin-team-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.admin-team-color-swatches {
    display: flex;
    gap: 6px;
}

.admin-color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Admin Matches Cards Grid */
.admin-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.admin-match-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.admin-match-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.admin-match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.admin-match-card-header .match-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.admin-match-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

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

.admin-match-team-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-match-team-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

.admin-match-team-short {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
}

.admin-match-team-score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
}

.admin-match-card-outcome {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-match-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.admin-match-venue {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

/* Admin Videos Grid Layout */
.admin-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.admin-video-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.admin-video-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.admin-video-thumbnail-placeholder {
    height: 140px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.admin-video-play-btn-mock {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.admin-video-card:hover .admin-video-play-btn-mock {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.admin-video-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-video-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.admin-video-card-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.admin-video-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.admin-video-card-meta span i {
    color: var(--accent-gold);
}

.admin-video-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

/* Homepage Hero Carousel Slider */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    height: 480px;
    background: #000;
}

.hero-slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slider-slide {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot.active {
    background: var(--accent-gold) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(7, 13, 25, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 100;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

/* Premium Homepage Fan Poll Option Button */
.poll-option-btn-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    margin-bottom: 12px;
    font-family: var(--font-body);
    outline: none;
}

.poll-option-btn-premium:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    transform: translateX(6px);
}

.poll-option-btn-premium:hover i {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.poll-option-btn-premium i {
    color: var(--text-muted);
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pulsing Badge styling */
.badge-live-poll {
    background: rgba(239, 83, 80, 0.1);
    border: 1px solid rgba(239, 83, 80, 0.3);
    color: #ef5350;
    font-weight: 700;
    font-size: 0.65rem;
    padding: 3px 9px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Stats Leaderboard Redesigns */
.stats-tabs-premium {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 12px;
}

.stats-tab-btn-premium {
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-muted) !important;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.stats-tab-btn-premium:hover {
    color: var(--text-white) !important;
    background: rgba(255,255,255,0.04);
}

.stats-tab-btn-premium.active.orange {
    background: rgba(255, 87, 34, 0.1);
    border-color: #ff5722;
    color: #ff5722 !important;
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.15);
}

.stats-tab-btn-premium.active.purple {
    background: rgba(123, 31, 162, 0.1);
    border-color: #7b1fa2;
    color: #7b1fa2 !important;
    box-shadow: 0 0 15px rgba(123, 31, 162, 0.15);
}

.leader-podium-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.leader-podium-watermark {
    position: absolute;
    right: 15%;
    bottom: -15px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 7.5rem;
    color: rgba(255, 255, 255, 0.02);
    user-select: none;
    z-index: 0;
    line-height: 0.8;
}

.leader-podium-flex {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.leader-podium-rank {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.leader-podium-rank.gold-rank {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}

.leader-podium-rank.purple-rank {
    background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
    border-color: #9C27B0;
    box-shadow: 0 6px 20px rgba(123, 31, 162, 0.25);
}

.rank-badge-premium {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.1);
}

.rank-badge-premium.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
}

.rank-badge-premium.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);
    border-color: #C0C0C0;
}

.rank-badge-premium.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
    border-color: #CD7F32;
}

.rank-badge-premium.playoff {
    background: rgba(33, 150, 243, 0.15);
    border-color: #2196f3;
    color: #2196f3 !important;
}

.playoff-row td:first-child {
    border-left: 3px solid var(--accent-gold) !important;
}

.points-form-dot {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.points-form-dot.w {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.2);
}

.points-form-dot.l {
    background: linear-gradient(135deg, #c62828 0%, #f44336 100%);
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.2);
}

.points-form-dot.nr {
    background: linear-gradient(135deg, #37474f 0%, #607d8b 100%);
}

/* Squad Filter Buttons */
.filter-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted) !important;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
}

.filter-btn:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text-white) !important;
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent-gold);
    color: var(--text-dark) !important;
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(236, 197, 66, 0.25);
}

/* User-facing Franchise List Redesign */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.team-card {
    background: linear-gradient(135deg, rgba(18, 25, 44, 0.85) 0%, rgba(8, 12, 23, 0.98) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--team-color, var(--primary));
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--team-color, rgba(255, 255, 255, 0.25));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.team-card-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-badge {
    transform: scale(1.08) rotate(5deg);
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.team-card-short {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.team-card-trophies {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(236, 197, 66, 0.1);
    color: var(--accent-gold) !important;
    border: 1px solid rgba(236, 197, 66, 0.25);
    margin-top: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.team-card-trophies.challenger {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted) !important;
    border: 1px solid var(--border-color);
}

.team-card:hover .team-card-trophies:not(.challenger) {
    box-shadow: 0 0 10px rgba(236, 197, 66, 0.3);
    transform: scale(1.05);
}

.team-card-details {
    border-top: 1px solid var(--border-color);
    width: 100%;
    padding-top: 15px;
    margin-top: 5px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-card-info {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.team-card-info i {
    color: var(--primary-light);
    transition: color 0.3s;
}

.team-card:hover .team-card-info i {
    color: var(--accent-gold);
}

.team-card-venue-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 180px;
}

/* Points Table Podium Responsiveness */
.standings-podium-container {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .standings-podium-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        align-items: stretch !important;
    }
    .podium-card.gold {
        transform: none !important;
        order: -1; /* Gold card is placed first when stacked on mobile */
    }
}









