:root {
    /* brand colors */
    --primary: #393186;
    --primary-rgb: 57, 49, 134;
    --dark: #2B2A28;
    --dark-rgb: 43, 42, 40;
    --brand-1: #2F5BEA;
    --brand-1-rgb: 47, 91, 234;
    --brand-2: #3B6CF0;
    --brand-2-rgb: 59, 108, 240;
    --primary-hover: #2f2870;

    /* neutrals */
    --white: #ffffff;
    --white-rgb: 255, 255, 255;
    --muted: #555555;
    --black-rgb: 0, 0, 0;
    --black-90: #1F1F1F;

    /* backgrounds */
    --offwhite: #f8f9fc;
    --offwhite-2: #fdfdff;
    --bg-200: #fafbff;

    /* accents */
    --highlight: #C6FF00;

    /* icon gradients & colors */
    --icon-1: #f6d365;
    --icon-2: #fda085;
    --icon-3: #6b2b7c;
    --icon-4: #a18cd1;
    --icon-5: #fbc2eb;
    --icon-6: #5b1366;
    --icon-7: #84fab0;
    --icon-8: #8fd3f4;
    --icon-9: #0b486b;
}

/* Navbar */
.navbar {
    background-color: var(--dark);
}

.navbar-brand,
.navbar .nav-link {
    color: var(--white) !important;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Navbar */
.custom-navbar {
    background: var(--brand-1);
}

.navbar-brand img {
    height: 50px;
}

/* Hero */
.hero-section {
    background: url('../images/bg_1.jpg') no-repeat center center/cover;
    padding: 140px 0 80px;
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
}

.hero-title span {
    color: var(--icon-1);
}

.hero-sub {
    margin-top: 15px;
    opacity: 0.9;
}

section {
    padding: 90px 0;
}

.hero-search {
    margin-top: 25px;
    background: var(--white);
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    max-width: 420px;
}

.hero-search i {
    color: var(--brand-1);
}

.hero-search input {
    border: none;
    outline: none;
    width: 100%;
}

/* Hero Image */
.hero-image img {
    border-radius: 28px;
    max-height: 420px;
    object-fit: cover;
}

/* Section title */
.section-title {
    font-weight: 800;
    color: var(--brand-1);
}

ul.nav.nav-pill button.nav-link {
    border-radius: 10px;
}

ul.nav.nav-pill button.nav-link.active {
    background: #0d6efd;
    color: white;
}

/* Clubs */
.club-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(var(--black-rgb), 0.08);
}

.club-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Players Section */
.players-section {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    padding: 80px 0;
}

.player-card {
    background: var(--white);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
}

.player-card h6 {
    font-weight: 700;
    color: var(--brand-1);
}

/* Footer */
.footer {
    background: var(--black-90);
    color: var(--white);
    text-align: center;
    padding: 25px 0;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: var(--white);
    /* padding: 100px 0; */
    position: relative;
}

.sliderImg {
    width: 100%;
    min-height: 700px;
    object-fit: cover;
    height: 80vh;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
}

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

/* Section Titles */
.section-title {
    color: var(--primary);
    font-weight: 700;
}

/* Cards */
.service-card {
    border: none;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.1);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 30px 0;
}

/* Slick slider adjustments */
.slick-hero .hero {
    /* padding: 100px 0; */
    color: var(--white);
}

.slick-prev,
.slick-next {
    background: rgba(var(--black-rgb), 0.4);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(var(--black-rgb), 0.6);
}

.slick-next {
    right: 15px !important;
}

.slick-prev {
    left: 15px !important;
}

.slick-dots li button:before {
    color: var(--white);
    opacity: 0.8;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.sliderContent {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* service icons */
.service-icon svg {
    display: inline-block;
    border-radius: 12px;
    background: rgba(var(--white-rgb), 0.05);
    padding: 8px;
}

.service-card .service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h5 {
    margin-top: 12px;
}

/* =========================
   About Section – WOW Edition
========================= */


/* Title + Intro */
.about-intro .section-title {
    font-weight: 800;
    letter-spacing: -0.6px;
    position: relative;
}

.about-intro .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--dark));
    display: block;
    margin-top: 10px;
    border-radius: 4px;
}

.about-intro .lead {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.08rem;
}

/* ================= Checklist ================= */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    position: relative;
    padding: 14px 0 14px 42px;
    color: var(--muted);
    line-height: 1.7;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.35);
}

.checklist li::after {
    content: "✓";
    position: absolute;
    left: 7px;
    top: 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.checklist li strong {
    color: var(--dark);
}

/* ================= Stats ================= */
.stats-row {
    margin-top: 2rem;
}

.stats {
    min-width: 130px;
    padding: 1.2rem 1rem;
    background: linear-gradient(180deg, var(--white), var(--offwhite-2));
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(var(--black-rgb), 0.08);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(var(--primary-rgb), 0.08),
            transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.stats:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(var(--black-rgb), 0.12);
}

.stats:hover::before {
    opacity: 1;
}

.stats .h2 {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

/* ================= Feature Cards ================= */
.feature-card {
    border: none;
    border-radius: 22px;
    background: linear-gradient(180deg, var(--white), var(--bg-200));
    padding: 1.5rem !important;
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.06);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(var(--white-rgb), 0.7),
            transparent);
    transform: translateX(-100%);
    transition: transform .6s ease;
}

.feature-card:hover::after {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(var(--black-rgb), 0.14);

    /* Font Awesome in feature icons */
    .feature-icon i {
        font-size: 20px;
    }
}

/* Feature Icon */
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(var(--black-rgb), 0.2);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

/* Feature Text */
.feature-card h6 {
    font-weight: 700;

    .stats-icon i {
        display: inline-block;
    }

    .stats-icon {
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(var(--black-rgb), 0.03);
    }

    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ================= Mobile ================= */
@media (max-width: 767px) {
    .nav-pills .nav-link {
        font-size: 12px;
    }

    .stats-row {
        justify-content: center;
        gap: 14px;
    }

    .about-intro .lead {
        font-size: 1rem;
    }
}


/* Contact page banner */

.ui-page-banner {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    padding: 120px 0 70px;
}

.ui-contact {
    padding-bottom: 90px;
}

.ui-map iframe {
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(var(--black-rgb), 0.12);
}

.ui-form-wrap {
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(var(--black-rgb), 0.1);
}

.icon-wrap {
    border: none;
}

.icon-wrap i {
    color: var(--brand-1);
    font-size: 1rem;
}

.ui-footer {
    background: var(--black-90);
    color: var(--white);
    padding: 30px 0;
}

.input-group .icon-wrap {
    background: #eeeeee;
    border: none;
    font-size: 1.05rem;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
}

.input-group .form-control {
    border-left: none;
}

.input-group .input-group-text {
    border-right: none;
}


.section-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.stats-btn {
    font-size: 12px;
    margin-bottom: 8px;
}

.stat-row {
    margin-bottom: 14px;
}

.stat-title {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.stat-bar {
    height: 5px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
}

.stat-left {
    background: linear-gradient(90deg, #2563eb, #22b2c5);
}

.stat-right {
    background: linear-gradient(90deg, #eb2525, #c522aa);
}

.stats-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Tabs under stats header (custom small pills) */
.stats-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.stats-tabs .nav-link {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    background: transparent;
    border: 1px solid transparent;
}

.stats-tabs .nav-link.active {
    background: #0d6efd;
    color: #fff !important;
    box-shadow: none;
}

.match-type {
    font-size: 14px;
    margin-bottom: 10px;
}

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


.score-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 18px;
}

.score-box span {
    min-width: 14px;
    text-align: center;
}

.divider {
    color: #64748b;
}

.set-gap {
    width: 10px;
}

.players {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.scoreline {
    text-align: center;
    font-weight: 600;
    margin-top: 5px;
}

/* Additional responsive adjustments for matchlists and global layout */
@media (max-width: 991.98px) {
    div#weekPills {
        text-align: center;
        line-height: 17px;
        gap: 0px !important;
    }

    #weekPills .date-pill {
        padding: 5px 8px;
        font-size: 12px;
    }

    .hero-section {
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .navbar-brand img {
        height: 24px;
    }

    .hero-image img {
        max-height: 300px;
        border-radius: 20px;
    }

    .hero-search {
        max-width: 320px;
    }

    .sliderImg {
        min-height: 400px;
        height: 50vh;
    }

    .tournament-selector .dropdown-toggle {
        min-width: 160px;
    }
}

@media (max-width: 575.98px) {
    #weekPills .date-pill {
        padding: 5px;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .player-card {
        padding: 18px;
    }

    .club-card img {
        height: 160px;
    }

    .slick-prev,
    .slick-next {
        width: 36px;
        height: 36px;
    }

    .sliderImg {
        min-height: 300px;
        height: 40vh;
    }

    .tournament-selector .dropdown-menu {
        min-width: unset;
        width: 100%;
    }

    .tournament-selector .dropdown-toggle {
        width: 100%;
        text-align: left;
    }

    .video-thumb {
        max-width: 100%;
    }

    .video-thumb img {
        border-radius: 8px;
        height: auto;
    }

    .match-card {
        padding: 12px;
    }

    .section-title {
        font-size: 1rem;
    }

    .stats-tabs {
        gap: 6px;
    }
}

/* download app page */

.play-btn {
    height: 60px;
}

/* HERO */
.download-hero {
    background: linear-gradient(135deg, #2F5BEA, #3B6CF0);
    color: white;
    padding: 60px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.download-hero h1 {
    font-weight: 800;
    font-size: 38px;
}

.download-hero p {
    opacity: 0.95;
    font-size: 18px;
}

/* CARD */
.download-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* PLAY BUTTON */
.play-btn img {
    transition: 0.3s;
}

.play-btn img:hover {
    transform: scale(1.1);
}

/* TABLE */
.table {
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.table thead {
    background: #2F5BEA;
    color: white;
}

.table td {
    vertical-align: middle;
}

/* DOWNLOAD BUTTON */
.download-link {
    background: #2F5BEA;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.download-link:hover {
    background: #1d3ecf;
    color: white;
}

/* SYSTEM REQUIREMENT */
.list-group-item {
    border: none;
    background: #f4f6ff;
    margin-bottom: 8px;
    border-radius: 10px;
}

/* FOOTER */
.bg-footer {
    background: #1F1F1F;
    color: white;
}

/* Install section styles */
.install-section {
    padding: 60px 0;
}

.install-step .feature-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.08);
}

.install-step h5 {
    margin-top: 8px;
    font-weight: 700;
}

.install-step p {
    color: var(--muted);
    font-size: 0.95rem;
}

.important-notes {
    background: linear-gradient(180deg, #fff, #fbfcff);
    padding: 22px;
}

.important-notes .checklist li {
    padding-left: 0;
    margin-bottom: 8px;
    color: var(--muted);
}

@media (max-width: 575.98px) {
    .install-step .feature-icon { width: 56px; height: 56px; }
}

/* Update guide icons */
.update-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(var(--black-rgb), 0.08);
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: #fff;
    font-size: 22px;
}

@media (max-width: 767.98px) {
    .update-icon { width: 44px; height: 44px; font-size: 18px; }
}