/* Home-redesign css file (reusing file) */

:root {
    --primary: #0d47a1;
    --primary-light: #1565c0;
    --primary-dark: #002366;
    --accent: #ff6b00;
    --accent-light: #ff8534;
    --success: #00a854;
    --danger: #e53935;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border: #e0e5ed;
}

[data-theme="dark"] {
    --primary: #1976d2;
    --primary-light: #42a5f5;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-light: #0a0e1a;
    --bg-white: #1a1f35;
    --border: #2a3142;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: background 0.3s ease;
    overflow-x: hidden;
}


/* Page Loading Animation */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.cricket-ball {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    position: relative;
    animation: bounce 1s infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cricket-ball::before,
.cricket-ball::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: #e53935;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cricket-ball::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.loader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2rem;
}


/* Scroll Progress Bar */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    z-index: 9998;
    transition: width 0.1s;
}


/* Header */

.main-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    width: 250px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}


/* Tournament Selector - Compact & Sticky */

.tournament-selector-bar {
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    position: sticky;
    top: 72px;
    z-index: 999;
    border: 2px solid var(--primary);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tournament-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.tournament-dropdown {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.tournament-select {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
}

.tournament-select:hover {
    border-color: var(--primary);
}

.tournament-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.tournament-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    pointer-events: none;
}


/* Live Matches Section - Hero */

.live-matches-hero {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.section-header {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 70px;
    width: 20px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}


/* Enhanced Match Cards */

.match-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.match-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(13, 71, 161, 0.16);
    border-color: var(--primary);
}

.match-card:hover::before {
    transform: scaleX(1);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.match-series {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
}

.match-type-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.3);
}

.live-badge {
    background: linear-gradient(135deg, var(--danger), #c62828);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    animation: livePulse 2s infinite;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.team-score {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
}

.match-status {
    background: linear-gradient(135deg, var(--success), #00897b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}


/* Swiper */

.matches-swiper {
    padding: 1.5rem 0 3rem 0;
}

.swiper-button-next,
.swiper-button-prev {
    background: var(--bg-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.12);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: var(--primary);
    font-weight: 900;
}

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    opacity: 1;
}


/* Stats Cards */

.stats-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.12);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 115%;
    height: 115%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: headerGlow 20s linear infinite;
}

@keyframes headerGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.stats-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 32px rgba(13, 71, 161, 0.16);
}

.stats-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}


/* Points Table */

.points-table {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.12);
}

.table-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 1.25rem;
    font-weight: 600;
}

.table-row {
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(13, 71, 161, 0.05);
    transform: translateX(5px);
}


/* News Cards */

.news-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(13, 71, 161, 0.16);
    border-color: var(--primary);
}

.news-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.15);
}


/* Tournament Cards */

.tournament-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(13, 71, 161, 0.16);
}

.tournament-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.tournament-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tournament-card:hover .tournament-image img {
    transform: scale(1.2);
}

.tournament-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}


/* Tabs */

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: linear-gradient(180deg, transparent 0%, rgba(13, 71, 161, 0.05) 100%);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.stats-item:hover {
    transform: translateX(8px);
    border-left-color: var(--primary);
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.08);
}


/* Facebook Posts */

.facebook-post {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
}

.facebook-post:hover {
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.12);
    transform: translateY(-4px);
}


/* News Ticker */

.ticker-wrapper {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll-ticker 40s linear infinite;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    flex-shrink: 0;
    padding: 0 3rem;
}


/* Back to Top */

.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
}


/* Theme Toggle */

.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(180deg) scale(1.1);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    .tournament-selector-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .tournament-dropdown {
        max-width: 100%;
    }
}


/* ============================================
   SHARE BUTTONS IN HEADER - COMPACT STYLE
   ============================================ */


/* Share buttons container */

.share-buttons-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.share-buttons-header:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.1);
}


/* Share label text */

.share-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}


/* Icons container */

.share-icons-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


/* Individual share button */

.share-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
}

.share-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Social platform colors */

.share-icon-btn.facebook {
    background: #3b5998;
}

.share-icon-btn.facebook:hover {
    background: #2d4373;
}

.share-icon-btn.twitter {
    background: #1da1f2;
}

.share-icon-btn.twitter:hover {
    background: #0c85d0;
}

.share-icon-btn.linkedin {
    background: #0077b5;
}

.share-icon-btn.linkedin:hover {
    background: #005885;
}

.share-icon-btn.whatsapp {
    background: #25d366;
}

.share-icon-btn.whatsapp:hover {
    background: #1da851;
}

.share-icon-btn.copy {
    background: #6c757d;
}

.share-icon-btn.copy:hover {
    background: #545b62;
}

.share-icon-btn.copy.copied {
    background: #28a745;
}


/* Tooltip for copy button */

.share-icon-btn.copy::after {
    content: 'Copied!';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #28a745;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.share-icon-btn.copy.copied::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    svg {
        height: 60%;
    }
}


/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .share-buttons-header {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        gap: 0.5rem;
    }
    .share-label {
        font-size: 0.85rem;
    }
    .share-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .share-buttons-header {
        padding: 0.75rem;
        gap: 0.4rem;
    }
    .share-icons-compact {
        gap: 0.4rem;
    }
    .share-icon-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}


/* ============================================
   HOME PAGE ENHANCED STYLES
   Modern, Professional Cricket Website Design
   ============================================ */


/* ===== HERO INTRO SECTION ===== */

.hero-intro-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: heroGlow 20s linear infinite;
}

.hero-intro-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
}

.hero-intro-content {
    position: relative;
    z-index: 2;
}

.hero-intro-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Oswald', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-intro-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    color: var(--accent-light);
    font-size: 1.2rem;
}

.hero-intro-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-light);
    line-height: 1;
    font-family: 'Oswald', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}


/* Hero Visual */

.hero-intro-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-dark);
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

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


/* ===== ENHANCED TOURNAMENT SELECTOR ===== */

.tournament-selector-enhanced {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(13, 71, 161, 0.12);
    margin-bottom: 3rem;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.tournament-selector-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.selector-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    flex-wrap: wrap;
}

.selector-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

.selector-content {
    flex: 1;
    min-width: 300px;
}

.selector-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.selector-dropdown {
    position: relative;
}

.tournament-select-enhanced {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 0;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    appearance: none;
    outline: none;
}

.tournament-select-enhanced:focus {
    color: var(--primary);
}

.selector-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.25rem;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.tournament-select-enhanced:focus~.selector-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.selector-dates {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    white-space: nowrap;
}

.selector-dates i {
    color: var(--primary);
    font-size: 1.1rem;
}

.tournament-loading {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 71, 161, 0.05);
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-weight: 600;
}

.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(13, 71, 161, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ===== CRICKET BALL LOADER ===== */

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.loading-content {
    text-align: center;
}

.cricket-ball-loader {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    position: relative;
    animation: bounce 1s infinite;
}

.ball {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: spin 2s linear infinite;
}

.seam {
    position: absolute;
    background: #e53935;
    border-radius: 10px;
}

.seam-1 {
    width: 60%;
    height: 4px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

.seam-2 {
    width: 60%;
    height: 4px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%) rotate(90deg);
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

.loading-text {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 4rem 0 3rem 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: heroGlow 20s linear infinite;
}

@keyframes heroGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ===== CONTENT LOADING STATE ===== */

.content-loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


/* ===== FEATURED PLAYERS SECTION ===== */

.featured-players-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.player-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 71, 161, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.player-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.25);
}

.player-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.player-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.player-card:hover .player-background img {
    transform: scale(1.1);
}

.player-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.player-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
}

.player-rank {
    position: absolute;
    top: -80px;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
    border: 3px solid white;
}

.player-name {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.player-team {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.player-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-light);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.player-view-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.player-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.4);
}


/* ===== SKELETON LOADERS ===== */

.player-card-skeleton {
    height: 500px;
    border-radius: 20px;
    background: var(--bg-white);
    overflow: hidden;
    position: relative;
}

.skeleton-img {
    height: 60%;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

.skeleton-content {
    padding: 2rem;
}

.skeleton-line {
    height: 20px;
    margin-bottom: 1rem;
    border-radius: 10px;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

.skeleton-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.skeleton-stat {
    flex: 1;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .hero-intro-title {
        font-size: 2.75rem;
    }
    .players-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-intro-section {
        padding: 4rem 0 2rem;
    }
    .hero-intro-title {
        font-size: 2.25rem;
    }
    .hero-intro-description {
        font-size: 1rem;
    }
    .hero-intro-features {
        gap: 0.75rem;
    }
    .feature-item {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    .hero-intro-cta {
        flex-direction: column;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: 2rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .floating-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    .badge-1,
    .badge-2,
    .badge-3 {
        position: static;
        margin-top: 1rem;
    }
    .selector-header {
        flex-direction: column;
        align-items: stretch;
    }
    .selector-dates {
        justify-content: center;
    }
    .players-grid {
        grid-template-columns: 1fr;
    }
    .player-card {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .hero-intro-title {
        font-size: 1.875rem;
    }
    .stat-number {
        font-size: 1.75rem;
    }
    .player-card {
        height: 400px;
    }
    .player-name {
        font-size: 1.5rem;
    }
    .player-stats {
        padding: 1rem;
    }
    .stat-value {
        font-size: 1.25rem;
    }
}


/* ===== DARK MODE ===== */

[data-theme="dark"] .hero-intro-description {
    color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .tournament-selector-enhanced {
    background: var(--bg-white);
    border-color: var(--primary-light);
}

[data-theme="dark"] .selector-dates {
    background: rgba(13, 71, 161, 0.1);
}

[data-theme="dark"] .tournament-loading {
    background: rgba(13, 71, 161, 0.1);
}

[data-theme="dark"] .player-card-skeleton {
    background: var(--bg-white);
}


/* ===== ACCESSIBILITY ===== */

.cta-button:focus,
.player-view-btn:focus,
.tournament-select-enhanced:focus {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}


/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ============================================
   DARK MODE
   ============================================ */

[data-theme="dark"] .share-buttons-header {
    background: rgba(13, 71, 161, 0.1);
    border-color: var(--border);
}

[data-theme="dark"] .share-buttons-header:hover {
    border-color: var(--primary-light);
}


/* ============================================
   MATCH FILTER TABS - MODERN DESIGN
   ============================================ */


/* Header with Filter Container */

.matches-header-with-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}


/* Adjust section header when in flex container */

.matches-header-with-filter .section-header {
    margin-bottom: 0;
}


/* Match Filter Tabs Container */

.match-filter-tabs {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-white);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.08);
    border: 1px solid var(--border);
}


/* Individual Filter Tab */

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
}

.filter-tab i {
    font-size: 1rem;
}

.filter-tab span {
    font-weight: 600;
}


/* Filter Tab Hover State */

.filter-tab:hover {
    background: rgba(13, 71, 161, 0.05);
    color: var(--primary);
    transform: translateY(-2px);
}


/* Filter Tab Active State */

.filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.25);
}

.filter-tab.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 71, 161, 0.3);
}


/* Filter Count Badge */

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.filter-tab.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

.filter-tab:not(.active) .filter-count {
    background: rgba(13, 71, 161, 0.1);
    color: var(--primary);
}


/* Live Count Badge - Special Red Color */

.filter-count.live {
    background: rgba(229, 57, 53, 0.15);
    color: var(--danger);
}

.filter-tab.active .filter-count.live {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}


/* Loading State for Filter Tabs */

.filter-tab[wire\:loading] {
    opacity: 0.6;
    pointer-events: none;
}


/* ============================================
   NO MATCHES MESSAGE - IMPROVED DESIGN
   ============================================ */

.no-matches-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.08);
    margin: 2rem 0;
}

.no-matches-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.1), rgba(13, 71, 161, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-matches-icon i {
    font-size: 3rem;
    color: rgba(13, 71, 161, 0.4);
}

.no-matches-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.no-matches-description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ============================================
   DESIGN BALANCE IMPROVEMENTS
   ============================================ */


/* Tournament Selector Bar - Better Spacing */

.tournament-selector-bar {
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}


/* Section Headers - More Consistent */

.section-header {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}


/* Stats Cards - Better Proportions */

.stats-card {
    padding: 2.5rem 1.5rem;
}

.stats-number {
    font-size: 2.75rem;
}


/* Points Table - Better Mobile View */

.points-table {
    margin-bottom: 2rem;
}


/* News Cards - Equal Heights */

.news-card {
    display: flex;
    flex-direction: column;
}

.news-card>div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card>div:last-child>a {
    margin-top: auto;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .matches-header-with-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    .match-filter-tabs {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .match-filter-tabs::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .filter-tab {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
    .filter-tab i {
        font-size: 0.9rem;
    }
    .filter-count {
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    .no-matches-icon {
        width: 80px;
        height: 80px;
    }
    .no-matches-icon i {
        font-size: 2.5rem;
    }
    .no-matches-title {
        font-size: 1.5rem;
    }
    .no-matches-description {
        font-size: 0.9rem;
    }
    .tournament-selector-bar {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .matches-header-with-filter {
        gap: 1rem;
    }
    .section-header {
        font-size: 1.5rem;
    }
    .match-filter-tabs {
        padding: 0.375rem;
        gap: 0.375rem;
    }
    .filter-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    /* Hide text, show only icon on very small screens */
    .filter-tab span {
        display: none;
    }
    .filter-tab i {
        margin: 0;
    }
    .filter-count {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
}


/* ============================================
   DARK MODE SUPPORT
   ============================================ */

[data-theme="dark"] .match-filter-tabs {
    background: var(--bg-white);
    border-color: var(--border);
}

[data-theme="dark"] .filter-tab:hover {
    background: rgba(13, 71, 161, 0.15);
}

[data-theme="dark"] .filter-tab:not(.active) .filter-count {
    background: rgba(13, 71, 161, 0.2);
    color: var(--primary-light);
}

[data-theme="dark"] .no-matches-message {
    background: var(--bg-white);
}

[data-theme="dark"] .no-matches-icon {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.15), rgba(25, 118, 210, 0.08));
}

[data-theme="dark"] .no-matches-icon i {
    color: rgba(25, 118, 210, 0.5);
}


/* ============================================
   ANIMATION IMPROVEMENTS
   ============================================ */


/* Smooth transition when filter changes */

@keyframes filterChange {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.live-matches-hero>div:not([wire\:loading]) {
    animation: filterChange 0.3s ease-out;
}


/* Pulse animation for live count */

@keyframes livePulseCount {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.filter-count.live {
    animation: livePulseCount 2s ease-in-out infinite;
}


/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

.filter-tab:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.filter-tab:focus:not(:focus-visible) {
    outline: none;
}


/* Screen reader only text */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ============================================
   ADDITIONAL DESIGN BALANCE FIXES
   ============================================ */


/* Consistent card spacing */

.match-card,
.news-card,
.tournament-card {
    margin-bottom: 0;
}


/* Grid gaps consistency */

.grid {
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid {
        gap: 2rem;
    }
}


/* Section spacing consistency */

section {
    margin-bottom: 4rem;
}

section:last-child {
    margin-bottom: 0;
}


/* Better button spacing in match cards */

.match-card .mt-4 {
    margin-top: 1.5rem;
}


/* Improved Facebook post cards */

.facebook-post {
    margin-bottom: 1rem;
}

.facebook-post:last-child {
    margin-bottom: 0;
}


/* Points table responsive improvements */

@media (max-width: 768px) {
    .points-table table {
        font-size: 0.8rem;
    }
    .points-table th,
    .points-table td {
        padding: 0.5rem !important;
    }
    .points-table img {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
}


/* Tournament card image aspect ratio */

.tournament-image {
    aspect-ratio: 16 / 9;
}

.tournament-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* News image aspect ratio */

.news-image {
    aspect-ratio: 16 / 10;
}


/* Consistent border radius across cards */

.match-card,
.news-card,
.tournament-card,
.stats-card,
.points-table,
.facebook-post {
    border-radius: 16px;
}


/* Better shadow consistency */

.match-card,
.news-card,
.tournament-card {
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.08);
}

.match-card:hover,
.news-card:hover,
.tournament-card:hover {
    box-shadow: 0 8px 24px rgba(13, 71, 161, 0.12);
}


/* Modern Smooth Scrollbar */

.modern-scroll {
    scrollbar-width: thin;
    scrollbar-color: #c7d2fe transparent;
    scroll-behavior: smooth;
}


/* Chrome, Edge, Safari */

.modern-scroll::-webkit-scrollbar {
    width: 8px;
}

.modern-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.modern-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3b82f6, #1d4ed8);
    border-radius: 10px;
}

.modern-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2563eb, #1e40af);
}

.facebook-embed iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}


/* width */

::-webkit-scrollbar {
    width: 5px !important;
    height: 5px;
}


/* Track */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
