:root {
    --primary: #0756d8;
    --primary-dark: #032e7a;
    --primary-light: #eaf2ff;

    --dark: #08152c;
    --text: #172033;
    --gray: #687085;
    --border: #e8edf5;

    --white: #ffffff;
    --bg: #f5f8fc;

    --radius: 20px;
    --transition: all .35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* ================= LOADER ================= */

.loader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity .5s ease,
        visibility .5s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 85px;
    height: 85px;

    border-radius: 50%;

    border: 3px solid rgba(255, 255, 255, .2);
    border-top-color: white;

    display: grid;
    place-items: center;

    color: white;
    font-size: 30px;

    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* ================= TOP BAR ================= */

.top-bar {
    background: var(--dark);
    color: #cfd7e6;
    font-size: 13px;
}

.top-content {
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-content span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-left {
    display: flex;
    gap: 18px;
}

.top-left a {
    transition: var(--transition);
}

.top-left a:hover {
    color: white;
}


/* ================= NAVBAR ================= */

.navbar {
    height: 85px;
    background: rgba(255, 255, 255, .96);

    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.nav-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;

    border-radius: 14px;

    background: var(--primary);

    color: white;

    display: grid;
    place-items: center;

    font-size: 22px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 17px;
    color: var(--dark);
}

.logo-text span {
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 700;

    position: relative;
    padding: 30px 0;

    color: #4a5365;
}

.nav-links a::after {
    content: "";

    position: absolute;

    bottom: 0;
    right: 0;

    width: 0;
    height: 3px;

    background: var(--primary);

    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.search-btn,
.menu-btn {
    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 17px;

    transition: var(--transition);
}

.search-btn:hover,
.menu-btn:hover {
    background: var(--primary);
    color: white;
}

.menu-btn {
    display: none;
}


/* ================= HERO ================= */

.hero {
    min-height: 700px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(110deg,
            #031a46 0%,
            #064bb9 55%,
            #0b63e5 100%);

    color: white;

    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .04) 1px,
            transparent 1px);

    background-size: 60px 60px;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    opacity: .2;
}

.shape-1 {
    width: 500px;
    height: 500px;

    background: white;

    left: -180px;
    bottom: -250px;
}

.shape-2 {
    width: 400px;
    height: 400px;

    border: 50px solid white;

    top: -180px;
    right: 10%;
}

.shape-3 {
    width: 200px;
    height: 200px;

    background: #5ec4ff;

    right: 40%;
    bottom: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr .9fr;

    align-items: center;

    min-height: 700px;
}

.hero-info {
    max-width: 650px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 16px;

    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);

    border-radius: 50px;

    font-size: 13px;
}

.pulse {
    width: 8px;
    height: 8px;

    background: #fff;

    border-radius: 50%;

    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .8);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero h1 {
    font-size: clamp(45px, 6vw, 80px);

    line-height: 1.2;

    margin: 25px 0;

    font-weight: 900;
}

.hero h1 span {
    color: #9ed4ff;
}

.hero p {
    font-size: 17px;
    line-height: 2;

    color: rgba(255, 255, 255, .8);

    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}

.btn {
    height: 55px;

    padding: 0 24px;

    border-radius: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 14px;
    font-weight: 800;

    transition: var(--transition);
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);
}

.btn-light {
    color: white;

    border: 1px solid rgba(255, 255, 255, .35);
}

.btn-light:hover {
    background: rgba(255, 255, 255, .12);
}

.hero-stats {
    display: flex;
    gap: 45px;

    margin-top: 55px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 30px;
}

.stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
}

.hero-player {
    position: relative;

    height: 600px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.player-circle {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .3);

    bottom: 40px;
}

.hero-player img {
    position: relative;

    height: 560px;
    width: 90%;

    object-fit: cover;

    border-radius: 200px 200px 0 0;

    mix-blend-mode: luminosity;

    filter: contrast(1.15);
}

.scroll-down {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    flex-direction: column;

    gap: 8px;

    font-size: 11px;

    color: rgba(255, 255, 255, .7);
}

.mouse {
    width: 20px;
    height: 32px;

    border: 1px solid white;

    border-radius: 20px;

    display: flex;
    justify-content: center;
}

.mouse div {
    width: 3px;
    height: 6px;

    background: white;

    border-radius: 5px;

    margin-top: 6px;

    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {

    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}


/* ================= LIVE MATCH ================= */

.live-match-section {
    margin-top: -55px;
    position: relative;
    z-index: 10;
}

.live-match {
    background: white;

    border-radius: 20px;

    min-height: 130px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 35px;

    box-shadow: 0 15px 45px rgba(10, 45, 100, .12);
}

.live-status {
    color: #ef233c;
    font-size: 13px;
    font-weight: 800;

    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;

    background: #ef233c;

    border-radius: 50%;

    animation: livePulse 1.2s infinite;
}

@keyframes livePulse {

    50% {
        transform: scale(1.7);
        opacity: .3;
    }
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 50px;
}

.team {
    text-align: center;
}

.team-logo {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    margin: auto;

    background: var(--primary);

    color: white;

    display: grid;
    place-items: center;

    font-weight: 900;
}

.team-logo.away {
    background: var(--dark);
}

.team h3 {
    margin-top: 7px;
    font-size: 12px;
}

.score-area {
    text-align: center;
}

.score {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 25px;
}

.match-time {
    font-size: 12px;
    color: var(--gray);
}

.watch-match {
    background: var(--primary);

    color: white;

    padding: 13px 20px;

    border-radius: 10px;

    font-size: 13px;
}


/* ================= GENERAL SECTION ================= */

.section {
    padding: 110px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 45px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.section h2 {
    font-size: 35px;
    margin-top: 7px;
}

.section h2 span {
    color: var(--primary);
}

.view-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;

    display: flex;
    gap: 8px;
}


/* ================= MATCHES ================= */

.matches-section {
    background: white;
}

.matches-grid {
    display: grid;
    gap: 20px;
}

.match-card {
    display: grid;

    grid-template-columns: 120px 1fr;

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    transition: var(--transition);
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
}

.match-date {
    background: var(--primary-light);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.match-date span,
.match-date small {
    font-size: 11px;
    color: var(--gray);
}

.match-date strong {
    font-size: 32px;
    color: var(--primary);
}

.match-info {
    padding: 22px 30px;
}

.competition {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.teams-row {
    display: flex;
    align-items: center;
    gap: 40px;

    margin: 13px 0;
}

.mini-team {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 700;
}

.mini-logo {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: var(--primary);

    color: white;

    display: grid;
    place-items: center;

    font-size: 13px;
    font-weight: 800;
}

.mini-logo.away {
    background: var(--dark);
}

.vs {
    color: #a5adba;
    font-size: 12px;
}

.match-location {
    color: var(--gray);
    font-size: 11px;

    display: flex;
    gap: 8px;
    align-items: center;
}


/* ================= NEWS ================= */

.news-section {
    background: var(--bg);
}

.news-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 25px;
}

.featured-news {
    height: 480px;

    position: relative;

    border-radius: 22px;

    overflow: hidden;
}

.featured-news img {
    height: 100%;
    object-fit: cover;

    transition: transform .7s ease;
}

.featured-news:hover img {
    transform: scale(1.08);
}

.news-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(3, 20, 50, .95),
            rgba(3, 20, 50, .05));
}

.featured-content {
    position: absolute;

    bottom: 0;
    right: 0;
    left: 0;

    padding: 35px;

    color: white;
}

.news-category {
    background: var(--primary);

    padding: 5px 12px;

    border-radius: 50px;

    font-size: 11px;
}

.featured-content h2 {
    font-size: 26px;
    margin: 15px 0;
}

.news-meta {
    display: flex;
    gap: 20px;

    font-size: 11px;

    color: rgba(255, 255, 255, .7);
}

.news-meta span {
    display: flex;
    gap: 6px;
    align-items: center;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    background: white;

    flex: 1;

    border-radius: 18px;

    padding: 12px;

    display: flex;
    gap: 18px;

    transition: var(--transition);
}

.news-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.news-item img {
    width: 150px;

    border-radius: 12px;

    object-fit: cover;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item-content span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.news-item h3 {
    font-size: 15px;
    margin: 8px 0;
}

.news-item small {
    color: var(--gray);
    font-size: 10px;
}


/* ================= STANDINGS ================= */

.standings-section {
    background: white;
}

.standings-wrapper {
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
}

.standings-table th {
    background: var(--dark);
    color: white;

    padding: 18px;

    font-size: 13px;
}

.standings-table td {
    padding: 16px 18px;

    border-bottom: 1px solid var(--border);

    font-size: 13px;
}

.club-row {
    background: var(--primary-light);
}

.table-team {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 700;
}

.table-logo {
    width: 36px;
    height: 36px;

    background: var(--primary);

    color: white;

    border-radius: 50%;

    display: grid;
    place-items: center;
}

.table-logo.small {
    background: #6d7890;
}

.points {
    font-weight: 900;
    color: var(--primary);
}

.table-more {
    display: flex;
    justify-content: center;
    gap: 8px;

    padding: 18px;

    font-size: 13px;
    color: var(--primary);
    font-weight: 800;
}


/* ================= SHOP ================= */

.shop-section {
    background: var(--bg);
}

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.product-card {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, .08);
}

.product-image {
    height: 260px;

    position: relative;

    background: #edf2f9;

    overflow: hidden;
}

.product-image img {
    height: 100%;
    object-fit: cover;

    transition: transform .5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 2;

    background: var(--primary);

    color: white;

    padding: 5px 10px;

    border-radius: 6px;

    font-size: 10px;
}

.product-badge.sale {
    background: #e63946;
}

.product-info {
    padding: 18px;
}

.product-info span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
}

.product-info h3 {
    font-size: 14px;
    margin: 7px 0 18px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-bottom strong {
    font-size: 15px;
}

.product-bottom button {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: var(--primary-light);

    color: var(--primary);

    transition: var(--transition);
}

.product-bottom button:hover {
    background: var(--primary);
    color: white;
}


/* ================= CTA ================= */

.cta-section {
    background:
        linear-gradient(110deg,
            var(--primary-dark),
            var(--primary));

    color: white;

    padding: 65px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.cta-content span {
    font-size: 12px;
    color: #bcd9ff;
}

.cta-content h2 {
    margin-top: 7px;
    font-size: 28px;
}

.newsletter {
    display: flex;

    background: white;

    padding: 5px;

    border-radius: 12px;
}

.newsletter input {
    border: none;
    outline: none;

    width: 260px;

    padding: 0 15px;
}

.newsletter button {
    background: var(--primary);

    color: white;

    padding: 14px 18px;

    border-radius: 9px;

    font-size: 12px;

    display: flex;
    align-items: center;
    gap: 8px;
}


/* ================= FOOTER ================= */

.footer {
    background: var(--dark);
    color: #c6cfdd;

    padding: 80px 0 0;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 60px;
}

.footer-logo .logo-text strong {
    color: white;
}

.footer-about p {
    font-size: 13px;
    line-height: 2;

    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 10px;

    display: grid;
    place-items: center;

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer h3 {
    color: white;
    font-size: 15px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(-5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;

    margin-bottom: 14px;
}

.footer-contact i {
    color: #5fa8ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);

    min-height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 11px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* ================= BACK TO TOP ================= */

.back-top {
    position: fixed;

    left: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    background: var(--primary);

    color: white;

    border-radius: 12px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: var(--transition);

    z-index: 100;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ================= RESPONSIVE ================= */

@media(max-width: 1000px) {

    .nav-links {
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr .7fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width: 800px) {

    .top-bar {
        display: none;
    }

    .navbar {
        height: 70px;
    }

    .nav-links {
        position: fixed;

        top: 70px;
        right: -100%;

        width: 80%;
        max-width: 350px;

        height: calc(100vh - 70px);

        background: white;

        flex-direction: column;

        align-items: flex-start;

        padding: 30px;

        box-shadow: -10px 0 30px rgba(0, 0, 0, .08);

        transition: var(--transition);
    }

    .nav-links.show {
        right: 0;
    }

    .nav-links a {
        padding: 12px 0;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-player {
        display: none;
    }

    .live-match {
        flex-direction: column;
        gap: 25px;
        padding: 25px 15px;
    }

    .match-teams {
        gap: 20px;
    }

    .section {
        padding: 75px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media(max-width: 600px) {

    .hero h1 {
        font-size: 43px;
    }

    .hero-stats {
        gap: 25px;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .match-card {
        grid-template-columns: 85px 1fr;
    }

    .match-info {
        padding: 18px 12px;
    }

    .teams-row {
        gap: 12px;
    }

    .mini-team span {
        font-size: 11px;
    }

    .featured-news {
        height: 400px;
    }

    .featured-content h2 {
        font-size: 20px;
    }

    .news-item img {
        width: 110px;
    }

    .news-item h3 {
        font-size: 12px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        width: 100%;
    }

    .newsletter input {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 15px 0;
    }

    .standings-wrapper {
        overflow-x: auto;
    }

    .standings-table {
        min-width: 600px;
    }

}

/* =========================================
   INNER PAGES HERO
========================================= */

.page-hero {
    position: relative;
    min-height: 330px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(135deg,
            #031a46,
            #0756d8);

    overflow: hidden;

    color: white;
}

.page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .05) 1px,
            transparent 1px);

    background-size: 55px 55px;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border: 70px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    left: -100px;
    top: -200px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;

    color: rgba(255, 255, 255, .7);

    margin-bottom: 18px;
}

.breadcrumb a:hover {
    color: white;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 65px);
    font-weight: 900;
}

.page-hero p {
    margin-top: 12px;
    color: rgba(255, 255, 255, .75);
}


/* =========================================
   MATCH PAGE
========================================= */

.matches-page {
    background: var(--bg);
}

.match-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 35px;

    flex-wrap: wrap;
}

.match-tabs {
    display: flex;
    gap: 10px;

    background: white;

    padding: 7px;

    border-radius: 14px;

    border: 1px solid var(--border);
}

.match-tab {
    background: transparent;

    color: var(--gray);

    padding: 11px 20px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: var(--transition);
}

.match-tab.active,
.match-tab:hover {
    background: var(--primary);
    color: white;
}

.competition-filter {
    border: 1px solid var(--border);

    background: white;

    padding: 12px 18px;

    border-radius: 12px;

    outline: none;

    font-family: inherit;

    color: var(--text);
}


/* Match Panels */

.matches-panel {
    display: none;
}

.matches-panel.active {
    display: block;
}


/* LIVE MATCH LARGE */

.live-match-large {
    background: white;

    border-radius: 25px;

    overflow: hidden;

    border: 1px solid var(--border);

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.live-header {
    background: #0d1b35;

    color: white;

    padding: 16px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.live-label {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    font-weight: 800;
}

.live-label .live-dot {
    background: #ff3b4e;
}

.live-competition {
    font-size: 12px;
    color: #b5c0d3;
}

.live-body {
    padding: 50px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    text-align: center;
}

.large-team-logo {
    width: 110px;
    height: 110px;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    display: grid;
    place-items: center;

    margin: auto;

    font-size: 38px;
    font-weight: 900;

    border: 6px solid white;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.large-team-name {
    margin-top: 15px;

    font-size: 20px;
    font-weight: 800;
}

.large-score {
    display: flex;
    align-items: center;

    gap: 20px;

    font-size: 52px;
    font-weight: 900;

    color: var(--dark);
}

.large-score span {
    color: #cbd2df;
}

.live-time {
    margin-top: 10px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 800;
}

.live-footer {
    padding: 18px 25px;

    border-top: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 30px;

    color: var(--gray);

    font-size: 12px;
}


/* UPCOMING */

.matches-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.full-match-card {
    background: white;

    border-radius: 20px;

    border: 1px solid var(--border);

    display: grid;

    grid-template-columns: 120px 1fr auto;

    align-items: center;

    overflow: hidden;

    transition: var(--transition);
}

.full-match-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .07);
}

.full-match-date {
    height: 100%;

    min-height: 150px;

    background: var(--primary-light);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.full-match-date span {
    font-size: 11px;
    color: var(--gray);
}

.full-match-date strong {
    font-size: 38px;
    color: var(--primary);
}

.full-match-info {
    padding: 25px 30px;
}

.match-league {
    font-size: 11px;

    color: var(--primary);

    font-weight: 800;
}

.full-teams {
    display: flex;
    align-items: center;

    gap: 30px;

    margin: 15px 0;
}

.full-team {
    display: flex;
    align-items: center;

    gap: 12px;

    font-weight: 800;
}

.full-logo {
    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: var(--primary);

    color: white;

    font-weight: 900;
}

.full-logo.dark {
    background: var(--dark);
}

.match-vs {
    color: #aeb7c6;

    font-size: 12px;
}

.full-match-meta {
    color: var(--gray);

    font-size: 11px;

    display: flex;
    gap: 15px;
}

.match-action {
    padding: 25px;
}

.match-action a {
    display: inline-flex;

    padding: 11px 18px;

    border-radius: 10px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.match-action a:hover {
    background: var(--primary);
    color: white;
}


/* RESULTS */

.result-score {
    display: flex;
    align-items: center;

    gap: 8px;

    font-weight: 900;

    color: var(--dark);
}

.result-score .winner {
    color: var(--primary);
}

.match-result-badge {
    display: inline-flex;

    margin-top: 10px;

    padding: 4px 10px;

    border-radius: 50px;

    background: #e8fff2;

    color: #14985f;

    font-size: 10px;

    font-weight: 800;
}

.match-result-badge.loss {
    background: #fff0f1;
    color: #e63946;
}


/* =========================================
   RESPONSIVE MATCH PAGE
========================================= */

@media(max-width: 800px) {

    .live-body {
        padding: 35px 20px;
    }

    .large-team-logo {
        width: 75px;
        height: 75px;

        font-size: 25px;
    }

    .large-score {
        font-size: 35px;
        gap: 10px;
    }

    .large-team-name {
        font-size: 13px;
    }

    .full-match-card {
        grid-template-columns: 90px 1fr;
    }

    .match-action {
        grid-column: 1 / -1;

        padding-top: 0;

        padding-right: 120px;
    }

}


@media(max-width: 600px) {

    .match-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .match-tab {
        white-space: nowrap;
    }

    .live-body {
        grid-template-columns: 1fr auto 1fr;
    }

    .full-match-card {
        grid-template-columns: 1fr;
    }

    .full-match-date {
        min-height: 90px;
    }

    .full-match-info {
        padding: 20px;
    }

    .full-teams {
        gap: 10px;

        flex-wrap: wrap;
    }

    .full-team {
        font-size: 12px;
    }

    .match-action {
        padding: 0 20px 20px;
    }

}

/* =========================================
   NEWS PAGE
========================================= */

.featured-news {
    display: grid;
    grid-template-columns: 1.1fr 1fr;

    background: white;

    border: 1px solid var(--border);

    border-radius: 28px;

    overflow: hidden;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);
}

.featured-image {
    position: relative;

    min-height: 450px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #06368e,
            #0a63e8);
}

.featured-image::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 50px solid rgba(255, 255, 255, .1);

    border-radius: 50%;

    top: -120px;
    right: -100px;
}

.featured-image-placeholder {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 20px;

    color: white;

    font-size: 60px;
}

.featured-image-placeholder span {
    font-size: 20px;
    font-weight: 900;

    letter-spacing: 3px;
}

.featured-badge {
    position: absolute;

    top: 25px;
    right: 25px;

    background: white;

    color: var(--primary);

    padding: 8px 16px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;
}

.featured-content {
    padding: 55px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.news-category {
    display: inline-flex;

    width: fit-content;

    background: var(--primary-light);

    color: var(--primary);

    padding: 6px 13px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 800;
}

.featured-content h2 {
    margin: 18px 0;

    font-size: 30px;

    line-height: 1.7;

    color: var(--dark);
}

.featured-content p {
    color: var(--gray);

    line-height: 2;
}

.news-meta {
    display: flex;

    gap: 20px;

    margin: 22px 0;

    color: var(--gray);

    font-size: 11px;
}


/* NEWS PAGE LAYOUT */

.news-page-section {
    background: var(--bg);
}

.news-page-layout {
    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 35px;
}


/* TOOLBAR */

.news-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
}

.news-categories {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.news-filter {
    background: white;

    border: 1px solid var(--border);

    padding: 10px 18px;

    border-radius: 10px;

    color: var(--gray);

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.news-filter:hover,
.news-filter.active {
    background: var(--primary);

    border-color: var(--primary);

    color: white;
}

.news-search {
    position: relative;

    min-width: 220px;
}

.news-search i {
    position: absolute;

    right: 15px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--gray);
}

.news-search input {
    width: 100%;

    padding: 12px 40px 12px 15px;

    border-radius: 10px;

    border: 1px solid var(--border);

    outline: none;

    font-family: inherit;

    transition: var(--transition);
}

.news-search input:focus {
    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(0, 86, 210, .08);
}


/* NEWS GRID */

.news-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.news-card {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.news-image {
    height: 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;
}

.news-image::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 35px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    left: -60px;
    bottom: -70px;
}

.news-image-1 {
    background: linear-gradient(135deg, #0056d2, #002a6e);
}

.news-image-2 {
    background: linear-gradient(135deg, #0086d8, #004fa8);
}

.news-image-3 {
    background: linear-gradient(135deg, #0d1b35, #0756d8);
}

.news-image-4 {
    background: linear-gradient(135deg, #0071bc, #003b82);
}

.news-image-5 {
    background: linear-gradient(135deg, #006ce0, #08152c);
}

.news-image-6 {
    background: linear-gradient(135deg, #003b8f, #0096ff);
}

.news-image-icon {
    position: relative;

    z-index: 2;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(10px);

    display: grid;

    place-items: center;

    color: white;

    font-size: 30px;
}

.news-card-content {
    padding: 23px;
}

.news-card h3 {
    margin: 14px 0 10px;

    font-size: 17px;

    line-height: 1.8;

    color: var(--dark);
}

.news-card p {
    color: var(--gray);

    font-size: 12px;

    line-height: 1.9;
}

.news-card-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 20px;

    padding-top: 15px;

    border-top: 1px solid var(--border);

    font-size: 11px;

    color: var(--gray);
}

.news-card-footer a {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--primary-light);

    color: var(--primary);

    transition: var(--transition);
}

.news-card:hover .news-card-footer a {
    background: var(--primary);

    color: white;
}


/* LOAD MORE */

.load-more-container {
    text-align: center;

    margin-top: 40px;
}

.load-more-btn {
    background: white;

    border: 1px solid var(--border);

    padding: 13px 28px;

    border-radius: 12px;

    color: var(--primary);

    font-family: inherit;

    font-weight: 800;

    cursor: pointer;

    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--primary);

    color: white;

    border-color: var(--primary);
}


/* NO RESULTS */

.no-results {
    display: none;

    text-align: center;

    padding: 70px 20px;
}

.no-results i {
    font-size: 50px;

    color: var(--primary-light);
}

.no-results h3 {
    margin-top: 15px;
}


/* SIDEBAR */

.news-sidebar {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.sidebar-box {
    background: white;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 25px;
}

.sidebar-title {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 22px;
}

.sidebar-title h3 {
    font-size: 17px;

    color: var(--dark);
}

.sidebar-title span {
    width: 35px;
    height: 3px;

    background: var(--primary);

    border-radius: 50px;
}

.sidebar-news-list {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.sidebar-news {
    display: flex;

    gap: 12px;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);
}

.sidebar-news:last-child {
    border-bottom: none;

    padding-bottom: 0;
}

.sidebar-news-image {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background: var(--primary-light);

    color: var(--primary);
}

.sidebar-news h4 {
    font-size: 12px;

    line-height: 1.8;

    color: var(--dark);

    transition: var(--transition);
}

.sidebar-news:hover h4 {
    color: var(--primary);
}

.sidebar-news span {
    display: block;

    margin-top: 5px;

    color: var(--gray);

    font-size: 10px;
}


/* NEWSLETTER */

.newsletter-box {
    background:
        linear-gradient(135deg,
            #002b70,
            #0069e8);

    color: white;

    padding: 35px 25px;

    border-radius: 18px;

    text-align: center;

    position: relative;

    overflow: hidden;
}

.newsletter-box::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border: 30px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    top: -100px;

    right: -70px;
}

.newsletter-box>* {
    position: relative;

    z-index: 2;
}

.newsletter-icon {
    width: 60px;
    height: 60px;

    margin: auto;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: rgba(255, 255, 255, .15);

    font-size: 22px;
}

.newsletter-box h3 {
    margin: 18px 0 8px;

    font-size: 19px;
}

.newsletter-box p {
    font-size: 12px;

    color: rgba(255, 255, 255, .75);

    margin-bottom: 20px;
}

.newsletter-box form {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.newsletter-box input {
    border: none;

    outline: none;

    padding: 13px;

    border-radius: 10px;

    font-family: inherit;
}

.newsletter-box button {
    background: white;

    color: var(--primary);

    border: none;

    padding: 12px;

    border-radius: 10px;

    font-family: inherit;

    font-weight: 800;

    cursor: pointer;

    transition: var(--transition);
}

.newsletter-box button:hover {
    transform: translateY(-2px);
}


/* SOCIAL LARGE */

.social-large {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;
}

.social-large a {
    height: 45px;

    border-radius: 10px;

    display: grid;

    place-items: center;

    background: var(--primary-light);

    color: var(--primary);

    transition: var(--transition);
}

.social-large a:hover {
    background: var(--primary);

    color: white;

    transform: translateY(-4px);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .featured-news {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 350px;
    }

    .news-page-layout {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-box {
        grid-column: span 2;
    }

}


@media (max-width: 700px) {

    .featured-content {
        padding: 30px 22px;
    }

    .featured-content h2 {
        font-size: 23px;
    }

    .news-toolbar {
        flex-direction: column;

        align-items: stretch;
    }

    .news-search {
        width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        grid-column: auto;
    }

}


@media (max-width: 500px) {

    .news-meta {
        flex-direction: column;

        gap: 8px;
    }

    .featured-image {
        min-height: 280px;
    }

}

/* =========================================
   NEWS DETAILS PAGE
========================================= */

.article-hero {
    position: relative;

    padding: 90px 0 100px;

    background:
        linear-gradient(135deg,
            #031a46,
            #0756d8);

    color: white;

    overflow: hidden;
}

.article-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 80px solid rgba(255, 255, 255, .06);

    border-radius: 50%;

    left: -150px;
    top: -200px;
}

.article-hero-content {
    position: relative;

    z-index: 2;

    max-width: 1000px;
}

.article-category {
    display: inline-flex;

    background: rgba(255, 255, 255, .15);

    color: white;

    padding: 7px 15px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 800;

    margin-top: 25px;
}

.article-hero h1 {
    max-width: 900px;

    margin: 20px 0;

    font-size: clamp(30px, 4vw, 52px);

    line-height: 1.6;

    font-weight: 900;
}

.article-meta {
    display: flex;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

.article-author {
    display: flex;

    align-items: center;

    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: white;

    color: var(--primary);
}

.article-author strong,
.article-author span {
    display: block;
}

.article-author span {
    color: rgba(255, 255, 255, .6);

    font-size: 11px;

    margin-top: 3px;
}

.article-date {
    display: flex;

    gap: 18px;

    color: rgba(255, 255, 255, .75);

    font-size: 11px;

    flex-wrap: wrap;
}


/* ARTICLE LAYOUT */

.article-section {
    background: var(--bg);
}

.article-layout {
    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 35px;
}


/* MAIN IMAGE */

.article-main-image {
    height: 500px;

    border-radius: 25px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #003c96,
            #0078ff);

    position: relative;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.article-main-image::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border: 60px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    top: -150px;

    right: -100px;
}

.article-main-image-placeholder {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color: white;

    font-size: 80px;
}

.article-main-image-placeholder span {
    font-size: 24px;

    font-weight: 900;

    letter-spacing: 5px;
}


/* ARTICLE BODY */

.article-body {
    background: white;

    margin-top: 30px;

    padding: 50px;

    border-radius: 25px;

    border: 1px solid var(--border);
}

.article-body p {
    font-size: 16px;

    color: #4d5a6d;

    line-height: 2.3;

    margin-bottom: 25px;
}

.article-body .article-intro {
    font-size: 20px;

    font-weight: 700;

    color: var(--dark);

    line-height: 2.1;

    padding-bottom: 30px;

    border-bottom: 1px solid var(--border);
}

.article-body h2 {
    margin: 35px 0 18px;

    font-size: 25px;

    color: var(--dark);
}


/* QUOTE */

.article-quote {
    position: relative;

    margin: 40px 0;

    padding: 35px 40px;

    background: var(--primary-light);

    border-right: 5px solid var(--primary);

    border-radius: 0 18px 18px 0;
}

.article-quote i {
    font-size: 30px;

    color: var(--primary);

    opacity: .3;
}

.article-quote p {
    margin: 15px 0 !important;

    color: var(--dark) !important;

    font-size: 18px !important;

    font-weight: 700;
}

.article-quote span {
    color: var(--primary);

    font-size: 12px;

    font-weight: 800;
}


/* INLINE IMAGE */

.article-inline-image {
    height: 350px;

    margin: 35px 0;

    border-radius: 18px;

    background:
        linear-gradient(135deg,
            #001d4d,
            #0064dc);

    display: grid;

    place-items: center;

    color: white;

    overflow: hidden;

    position: relative;
}

.article-inline-image::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 50px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    bottom: -150px;

    left: -80px;
}

.article-inline-image div {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

    font-size: 60px;
}

.article-inline-image span {
    font-size: 18px;

    font-weight: 800;
}


/* TAGS */

.article-tags {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.article-tags>span {
    font-size: 12px;

    font-weight: 800;
}

.article-tags a {
    background: var(--primary-light);

    color: var(--primary);

    padding: 7px 14px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 700;

    transition: var(--transition);
}

.article-tags a:hover {
    background: var(--primary);

    color: white;
}


/* SHARE */

.article-share {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.article-share>span {
    font-size: 13px;

    font-weight: 800;
}

.article-share div {
    display: flex;

    gap: 10px;
}

.share-btn {
    width: 42px;
    height: 42px;

    border: none;

    border-radius: 10px;

    background: var(--primary-light);

    color: var(--primary);

    cursor: pointer;

    transition: var(--transition);
}

.share-btn:hover {
    background: var(--primary);

    color: white;

    transform: translateY(-3px);
}


/* ARTICLE NAVIGATION */

.article-navigation {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 30px;
}

.article-nav {
    background: white;

    border: 1px solid var(--border);

    padding: 25px;

    border-radius: 18px;

    transition: var(--transition);
}

.article-nav:hover {
    border-color: var(--primary);

    transform: translateY(-4px);
}

.article-nav span {
    display: block;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    margin-bottom: 10px;
}

.article-nav strong {
    font-size: 13px;

    line-height: 1.9;

    color: var(--dark);
}

.article-nav.next {
    text-align: left;
}


/* ARTICLE SIDEBAR */

.article-sidebar {
    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* NEXT MATCH SIDEBAR */

.next-match-sidebar {
    background:
        linear-gradient(135deg,
            #031a46,
            #0756d8);

    color: white;

    padding: 25px;

    border-radius: 20px;

    overflow: hidden;

    position: relative;
}

.next-match-sidebar::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border: 40px solid rgba(255, 255, 255, .08);

    border-radius: 50%;

    top: -120px;

    left: -100px;
}

.next-match-sidebar>* {
    position: relative;

    z-index: 2;
}

.next-match-title {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255, 255, 255, .15);

    font-size: 12px;

    font-weight: 800;
}

.match-date {
    color: rgba(255, 255, 255, .7);

    font-weight: 500;
}

.sidebar-match-teams {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    text-align: center;

    margin: 30px 0;
}

.sidebar-team-logo {
    width: 60px;
    height: 60px;

    margin: auto;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: white;

    color: var(--primary);

    font-weight: 900;
}

.sidebar-team-logo.dark {
    background: #0d1b35;

    color: white;

    border: 2px solid rgba(255, 255, 255, .2);
}

.sidebar-match-teams strong {
    display: block;

    margin-top: 10px;

    font-size: 10px;
}

.sidebar-vs {
    display: flex;

    flex-direction: column;

    gap: 5px;

    font-size: 12px;

    font-weight: 900;
}

.sidebar-vs small {
    color: rgba(255, 255, 255, .65);

    font-size: 10px;
}

.next-match-sidebar>a {
    display: block;

    background: white;

    color: var(--primary);

    padding: 12px;

    text-align: center;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}

.next-match-sidebar>a:hover {
    transform: translateY(-2px);
}


/* RELATED NEWS */

.related-news-section {
    background: white;
}

.related-news-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* RESPONSIVE */

@media(max-width: 1000px) {

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }

    .next-match-sidebar {
        grid-column: span 2;
    }

}


@media(max-width: 700px) {

    .article-hero {
        padding: 60px 0 70px;
    }

    .article-body {
        padding: 30px 22px;
    }

    .article-body p {
        font-size: 14px;
    }

    .article-body .article-intro {
        font-size: 16px;
    }

    .article-main-image {
        height: 320px;
    }

    .article-main-image-placeholder {
        font-size: 55px;
    }

    .article-main-image-placeholder span {
        font-size: 16px;
    }

    .article-inline-image {
        height: 250px;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .next-match-sidebar {
        grid-column: auto;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
    }

}


@media(max-width: 500px) {

    .article-meta {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .article-date {
        flex-direction: column;

        gap: 8px;
    }

    .article-share {
        align-items: flex-start;

        flex-direction: column;
    }

}

/* =========================================
   PLAYER PROFILE PAGE
========================================= */

.player-hero {
    position: relative;
    min-height: 600px;

    background:
        linear-gradient(135deg,
            #021536,
            #0756d8);

    color: white;

    overflow: hidden;
}

.player-hero::before,
.player-hero::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border: 80px solid rgba(255, 255, 255, .05);
}

.player-hero::before {
    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;
}

.player-hero::after {
    width: 350px;
    height: 350px;

    bottom: -180px;
    left: 10%;
}

.player-hero-container {
    position: relative;

    z-index: 2;

    min-height: 600px;

    display: flex;

    align-items: center;
}

.player-hero-info {
    width: 55%;

    padding: 70px 0;
}

.player-breadcrumb {
    margin-bottom: 40px;
}

.player-position {
    display: inline-flex;

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, .15);

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 800;
}

.player-hero h1 {
    font-size: clamp(55px, 8vw, 110px);

    line-height: 1;

    margin: 25px 0;

    font-weight: 400;
}

.player-hero h1 strong {
    display: block;

    font-weight: 900;
}

.player-hero-details {
    display: flex;

    gap: 25px;

    color: rgba(255, 255, 255, .75);

    font-size: 13px;
}

.player-hero-details i {
    margin-left: 6px;
}

.player-social {
    display: flex;

    gap: 10px;

    margin-top: 30px;
}

.player-social a {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, .1);

    color: white;

    transition: var(--transition);
}

.player-social a:hover {
    background: white;

    color: var(--primary);

    transform: translateY(-4px);
}

.player-number {
    position: absolute;

    left: 38%;
    bottom: -60px;

    font-size: 320px;

    font-weight: 900;

    color: rgba(255, 255, 255, .06);

    line-height: 1;

    pointer-events: none;
}

.player-image-wrapper {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 50%;

    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: center;
}

.player-image {
    width: min(440px, 100%);

    height: 520px;

    border-radius: 220px 220px 0 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(255, 255, 255, .15);

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}

.player-image-placeholder {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 20px;

    font-size: 100px;

    color: rgba(255, 255, 255, .5);
}

.player-image-placeholder span {
    font-size: 15px;

    font-weight: 900;

    letter-spacing: 5px;
}


/* QUICK STATS */

.player-stats-section {
    position: relative;

    margin-top: -45px;

    z-index: 5;
}

.player-stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);

    border: 1px solid var(--border);
}

.player-stat-box {
    padding: 25px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-left: 1px solid var(--border);
}

.player-stat-box:last-child {
    border-left: none;
}

.stat-icon {
    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 20px;
}

.player-stat-box strong,
.player-stat-box span {
    display: block;
}

.player-stat-box strong {
    font-size: 24px;

    color: var(--dark);
}

.player-stat-box span {
    font-size: 11px;

    color: var(--gray);
}


/* PLAYER CONTENT */

.player-content-section {
    background: var(--bg);
}

.player-content-layout {
    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 35px;
}

.player-content-card,
.player-info-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 35px;

    margin-bottom: 25px;
}

.player-card-title {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;
}

.player-card-title>span {
    color: var(--primary);

    font-size: 12px;

    font-weight: 900;
}

.player-card-title h2 {
    font-size: 22px;

    color: var(--dark);
}

.player-about-text p {
    color: var(--gray);

    line-height: 2.2;

    margin-bottom: 18px;
}


/* PERFORMANCE CHART */

.performance-chart {
    height: 280px;

    display: flex;

    align-items: flex-end;

    padding: 20px;

    background: #f8faff;

    border-radius: 15px;
}

.chart-bars {
    width: 100%;

    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: space-around;

    gap: 15px;
}

.chart-bar {
    height: 100%;

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;
}

.chart-bar span {
    width: 100%;

    max-width: 55px;

    border-radius: 10px 10px 4px 4px;

    background: linear-gradient(180deg,
            #0b7cff,
            #0046b0);

    transition: height .8s ease;
}

.chart-bar small {
    font-size: 10px;

    color: var(--gray);
}

.performance-legend {
    margin-top: 15px;

    font-size: 11px;

    color: var(--gray);
}

.performance-legend i {
    display: inline-block;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--primary);

    margin-left: 5px;
}


/* PLAYER MATCHES */

.player-matches {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.player-match {
    display: grid;

    grid-template-columns: 70px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 16px;

    background: #f8faff;

    border-radius: 14px;
}

.player-match-date {
    text-align: center;

    color: var(--primary);

    font-size: 24px;

    font-weight: 900;
}

.player-match-date span {
    display: block;

    font-size: 10px;

    font-weight: 500;

    color: var(--gray);
}

.player-match-teams {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    font-size: 12px;
}

.player-match-teams span {
    color: var(--primary);

    font-size: 14px;

    font-weight: 900;
}

.player-match-stat {
    font-size: 11px;

    color: var(--gray);
}

.player-match-stat i {
    color: var(--primary);
}


/* ACHIEVEMENTS */

.achievements-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.achievement {
    padding: 20px;

    border: 1px solid var(--border);

    border-radius: 15px;

    display: flex;

    align-items: center;

    gap: 12px;
}

.achievement-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background: var(--primary-light);

    color: var(--primary);
}

.achievement strong,
.achievement span {
    display: block;
}

.achievement strong {
    font-size: 11px;

    color: var(--dark);
}

.achievement span {
    margin-top: 4px;

    font-size: 10px;

    color: var(--gray);
}


/* PLAYER INFO */

.player-info-list {
    display: flex;

    flex-direction: column;
}

.player-info-list>div {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);

    gap: 15px;
}

.player-info-list>div:last-child {
    border-bottom: none;
}

.player-info-list span {
    font-size: 11px;

    color: var(--gray);
}

.player-info-list strong {
    font-size: 11px;

    color: var(--dark);
}


/* SEASON SUMMARY */

.season-summary {
    padding: 30px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #031a46,
            #0756d8);

    color: white;

    margin-bottom: 20px;
}

.season-summary h3 {
    margin-bottom: 25px;

    font-size: 18px;
}

.summary-row {
    display: flex;

    justify-content: space-between;

    font-size: 11px;

    margin: 18px 0 8px;
}

.progress {
    width: 100%;

    height: 6px;

    background: rgba(255, 255, 255, .15);

    border-radius: 50px;

    overflow: hidden;
}

.progress span {
    display: block;

    height: 100%;

    background: white;

    border-radius: inherit;
}


/* DOWNLOAD */

.download-profile {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 14px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}

.download-profile:hover {
    background: var(--primary);

    color: white;

    border-color: var(--primary);
}


/* OTHER PLAYERS */

.other-players-section {
    background: white;
}

.other-players-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.other-player-card {
    background: #f8faff;

    border: 1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;

    transition: var(--transition);
}

.other-player-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 20px 35px rgba(0, 0, 0, .08);
}

.other-player-image {
    height: 210px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    background:
        linear-gradient(135deg,
            #00235f,
            #006ce0);

    color: rgba(255, 255, 255, .6);

    font-size: 70px;
}

.other-player-image span {
    position: absolute;

    bottom: 15px;

    left: 20px;

    color: rgba(255, 255, 255, .2);

    font-size: 70px;

    font-weight: 900;
}

.other-player-info {
    padding: 20px;
}

.other-player-info strong,
.other-player-info span {
    display: block;
}

.other-player-info strong {
    color: var(--dark);

    font-size: 16px;
}

.other-player-info span {
    margin-top: 5px;

    color: var(--primary);

    font-size: 11px;
}


/* RESPONSIVE */

@media(max-width: 1000px) {

    .player-content-layout {
        grid-template-columns: 1fr;
    }

    .player-sidebar {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .player-info-card {
        margin-bottom: 0;
    }

    .player-hero-info {
        width: 60%;
    }

    .player-image-wrapper {
        width: 45%;
    }

    .player-number {
        font-size: 230px;
    }

}


@media(max-width: 750px) {

    .player-hero {
        min-height: auto;
    }

    .player-hero-container {
        min-height: auto;

        display: block;

        padding-top: 50px;
    }

    .player-hero-info {
        width: 100%;

        padding: 20px 0;
    }

    .player-image-wrapper {
        position: relative;

        width: 100%;

        height: 400px;

        margin-top: 30px;
    }

    .player-image {
        height: 400px;

        width: 300px;
    }

    .player-number {
        font-size: 220px;

        left: 10px;

        bottom: 0;
    }

    .player-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .player-stat-box:nth-child(2) {
        border-left: none;
    }

    .player-stat-box {
        border-bottom: 1px solid var(--border);
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .other-players-grid {
        grid-template-columns: 1fr;
    }

}


@media(max-width: 550px) {

    .player-hero h1 {
        font-size: 60px;
    }

    .player-hero-details {
        flex-direction: column;

        gap: 10px;
    }

    .player-stats-grid {
        grid-template-columns: 1fr;
    }

    .player-stat-box {
        border-left: none !important;
    }

    .player-sidebar {
        grid-template-columns: 1fr;
    }

    .player-match {
        grid-template-columns: 60px 1fr;
    }

    .player-match-stat {
        grid-column: 2;
    }

    .player-match-teams {
        flex-wrap: wrap;
    }

    .performance-chart {
        height: 220px;
    }

    .chart-bars {
        gap: 6px;
    }

    .chart-bar small {
        font-size: 8px;
    }

}

/* =========================================
   TEAMS PAGE
========================================= */

.team-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;

    background:
        linear-gradient(135deg, #021536, #0756d8);

    color: white;
}

.team-hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border: 100px solid rgba(255, 255, 255, .05);

    border-radius: 50%;

    left: -250px;
    top: -250px;
}

.team-hero-container {
    position: relative;
    z-index: 2;

    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.team-hero-info {
    max-width: 650px;
}

.team-badge-label {
    display: inline-block;

    padding: 8px 18px;

    border: 1px solid rgba(255, 255, 255, .2);

    background: rgba(255, 255, 255, .08);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 20px;
}

.team-hero h1 {
    font-size: clamp(40px, 6vw, 75px);

    margin-bottom: 20px;
}

.team-hero h1 strong {
    color: #ffffff;
}

.team-hero p {
    max-width: 600px;

    color: rgba(255, 255, 255, .75);

    line-height: 2.2;

    font-size: 15px;
}

.team-hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 30px;
}

.team-hero-logo {
    position: relative;

    width: 280px;
    height: 280px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}

.team-logo-circle {
    width: 220px;
    height: 220px;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, .25);

    background: rgba(255, 255, 255, .08);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    font-size: 60px;
}

.team-logo-circle strong {
    font-size: 20px;

    margin-top: 10px;

    letter-spacing: 3px;
}

.team-year {
    position: absolute;

    bottom: 10px;

    padding: 8px 18px;

    border-radius: 50px;

    background: white;

    color: var(--primary);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* TEAM STATS */

.team-stats-section {
    position: relative;

    margin-top: -40px;

    z-index: 3;
}

.team-stats-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    background: white;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);

    overflow: hidden;
}

.team-stat {
    text-align: center;

    padding: 25px;

    border-left: 1px solid var(--border);
}

.team-stat:last-child {
    border-left: none;
}

.team-stat strong {
    display: block;

    font-size: 28px;

    color: var(--primary);

    font-weight: 900;
}

.team-stat span {
    font-size: 11px;

    color: var(--gray);
}


/* PLAYERS */

.players-section {
    background: var(--bg);
}

.players-filter {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;
}

.players-filter button {
    border: 1px solid var(--border);

    background: white;

    padding: 10px 18px;

    border-radius: 50px;

    cursor: pointer;

    font-family: inherit;

    color: var(--gray);

    font-size: 12px;

    font-weight: 700;

    transition: var(--transition);
}

.players-filter button:hover,
.players-filter button.active {
    background: var(--primary);

    color: white;

    border-color: var(--primary);
}

.players-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.team-player-card {
    display: block;

    background: white;

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.team-player-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 40px rgba(0, 0, 0, .1);
}

.team-player-image {
    height: 260px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg, #021536, #0874ef);

    color: rgba(255, 255, 255, .6);

    font-size: 90px;

    overflow: hidden;
}

.team-player-image::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border: 45px solid rgba(255, 255, 255, .07);

    border-radius: 50%;

    bottom: -120px;

    left: -80px;
}

.team-player-number {
    position: absolute;

    left: 18px;
    bottom: 0;

    font-size: 100px;

    font-weight: 900;

    color: rgba(255, 255, 255, .12);

    line-height: 1;

    z-index: 2;
}

.team-player-info {
    padding: 20px;
}

.team-player-info span {
    font-size: 10px;

    color: var(--primary);

    font-weight: 800;
}

.team-player-info h3 {
    font-size: 18px;

    margin: 7px 0;
}

.team-player-info small {
    color: var(--gray);

    font-size: 10px;
}


/* STAFF */

.staff-section {
    background: white;
}

.staff-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.staff-card {
    background: var(--bg);

    border-radius: 20px;

    overflow: hidden;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.staff-card:hover {
    transform: translateY(-6px);
}

.staff-card.featured {
    background:
        linear-gradient(135deg, #031a46, #0756d8);

    color: white;
}

.staff-image {
    height: 200px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 70px;

    color: var(--primary);

    background: white;
}

.staff-card.featured .staff-image {
    background: rgba(255, 255, 255, .1);

    color: rgba(255, 255, 255, .8);
}

.staff-info {
    padding: 22px;
}

.staff-info span {
    font-size: 10px;

    color: var(--primary);

    font-weight: 800;
}

.staff-card.featured .staff-info span {
    color: rgba(255, 255, 255, .7);
}

.staff-info h3 {
    margin: 8px 0;

    font-size: 17px;
}

.staff-info p {
    font-size: 11px;

    color: var(--gray);

    line-height: 1.9;
}

.staff-card.featured .staff-info p {
    color: rgba(255, 255, 255, .7);
}


/* ACHIEVEMENTS */

.team-achievements-section {
    background: var(--bg);
}

.team-achievements-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.team-achievement-card {
    position: relative;

    padding: 35px;

    text-align: center;

    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;

    transition: var(--transition);
}

.team-achievement-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.achievement-year {
    position: absolute;

    top: 15px;
    left: 20px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 900;
}

.achievement-main-icon {
    width: 80px;
    height: 80px;

    margin: 20px auto;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 32px;
}

.team-achievement-card h3 {
    font-size: 18px;

    margin-bottom: 10px;
}

.team-achievement-card p {
    color: var(--gray);

    font-size: 12px;

    line-height: 2;
}


/* CTA */

.team-cta {
    padding: 70px 0;

    background:
        linear-gradient(135deg, #021536, #0756d8);

    color: white;
}

.team-cta .container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.team-cta span {
    color: rgba(255, 255, 255, .6);

    font-size: 11px;

    letter-spacing: 3px;
}

.team-cta h2 {
    font-size: 32px;

    margin: 10px 0;
}

.team-cta p {
    color: rgba(255, 255, 255, .7);

    font-size: 13px;
}


/* RESPONSIVE */

@media(max-width: 1050px) {

    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width: 800px) {

    .team-hero-container {
        flex-direction: column;

        text-align: center;
    }

    .team-hero-buttons {
        justify-content: center;
    }

    .team-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-stat {
        border-bottom: 1px solid var(--border);
    }

    .team-achievements-grid {
        grid-template-columns: 1fr;
    }

    .team-cta .container {
        flex-direction: column;

        text-align: center;
    }

}


@media(max-width: 600px) {

    .players-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-player-image {
        height: 200px;

        font-size: 65px;
    }

    .team-player-number {
        font-size: 75px;
    }

}


@media(max-width: 420px) {

    .players-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   MATCH DETAILS PAGE
========================================= */

.match-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 100px;

    background:
        linear-gradient(135deg, #021536, #0756d8);

    color: white;
}

.match-hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, .08),
            transparent 55%);
}

.match-hero-container {
    position: relative;
    z-index: 2;
}

.match-breadcrumb {
    margin-bottom: 50px;
}

.match-competition {
    text-align: center;

    font-size: 12px;

    color: rgba(255, 255, 255, .7);

    margin-bottom: 30px;
}

.match-competition i {
    color: #fff;

    margin-left: 7px;
}


/* SCORE */

.match-score-wrapper {
    display: grid;

    grid-template-columns: 1fr 300px 1fr;

    align-items: center;

    gap: 40px;

    max-width: 1000px;

    margin: auto;
}

.match-team {
    text-align: center;
}

.match-team-logo {
    width: 130px;
    height: 130px;

    margin: auto;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    border: 2px solid rgba(255, 255, 255, .2);

    font-size: 50px;
}

.match-team h2 {
    margin-top: 20px;

    font-size: 22px;
}

.match-team span {
    color: rgba(255, 255, 255, .55);

    font-size: 11px;
}

.match-score-center {
    text-align: center;
}

.match-status {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 15px;

    border-radius: 50px;

    font-size: 10px;

    font-weight: 900;

    margin-bottom: 20px;
}

.match-status.live {
    background: rgba(255, 255, 255, .12);
}

.match-status.live span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ff3b3b;

    animation: livePulse 1s infinite;
}

@keyframes livePulse {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(1.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}

.match-score {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;
}

.match-score strong {
    font-size: 70px;

    font-weight: 900;
}

.match-score span {
    font-size: 35px;

    opacity: .4;
}

.match-time {
    margin-top: 15px;

    font-size: 18px;

    font-weight: 800;
}

.match-time i {
    margin-left: 7px;
}

.match-period {
    margin-top: 8px;

    color: rgba(255, 255, 255, .55);

    font-size: 11px;
}


/* MATCH INFO */

.match-info-row {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 60px;

    color: rgba(255, 255, 255, .7);

    font-size: 12px;
}

.match-info-row i {
    margin-left: 7px;
}


/* TABS */

.match-nav-section {
    position: sticky;

    top: 0;

    z-index: 10;

    background: white;

    border-bottom: 1px solid var(--border);
}

.match-tabs {
    display: flex;

    justify-content: center;

    gap: 30px;
}

.match-tab {
    position: relative;

    border: none;

    background: transparent;

    padding: 20px 5px;

    font-family: inherit;

    cursor: pointer;

    font-size: 12px;

    color: var(--gray);
}

.match-tab::after {

    content: "";

    position: absolute;

    bottom: 0;

    right: 0;

    width: 0;

    height: 3px;

    background: var(--primary);

    transition: .3s;

}

.match-tab.active {
    color: var(--primary);

    font-weight: 800;
}

.match-tab.active::after {
    width: 100%;
}


/* CONTENT */

.match-content-section {
    background: var(--bg);
}

.match-tab-content {
    display: none;
}

.match-tab-content.active {
    display: block;

    animation: tabFade .4s ease;
}

@keyframes tabFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.match-content-grid {
    display: grid;

    grid-template-columns: 1fr 320px;

    gap: 30px;
}

.match-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 30px;

    margin-bottom: 25px;
}

.match-section-title {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
}

.match-section-title span {
    color: var(--primary);

    font-size: 11px;

    font-weight: 900;
}

.match-section-title h2 {
    font-size: 20px;
}

.match-summary-text {
    color: var(--gray);

    line-height: 2.2;

    font-size: 14px;
}

.match-summary-stats {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 25px;
}

.match-summary-stats div {
    text-align: center;

    padding: 20px;

    background: #f7faff;

    border-radius: 15px;
}

.match-summary-stats strong {
    display: block;

    color: var(--primary);

    font-size: 28px;
}

.match-summary-stats span {
    font-size: 10px;

    color: var(--gray);
}


/* MINI EVENTS */

.mini-events {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.mini-event {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px;

    border-radius: 14px;

    background: #f8faff;
}

.event-minute {
    font-weight: 900;

    color: var(--primary);
}

.event-icon {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 10px;
}

.event-icon.goal {
    background: var(--primary-light);

    color: var(--primary);
}

.event-icon.card {
    background: #fff2f2;

    color: #e53935;
}

.mini-event strong,
.mini-event span {
    display: block;
}

.mini-event strong {
    font-size: 12px;
}

.mini-event span {
    margin-top: 3px;

    font-size: 10px;

    color: var(--gray);
}

.show-tab-btn {
    margin-top: 20px;

    border: none;

    background: transparent;

    color: var(--primary);

    font-family: inherit;

    font-size: 12px;

    font-weight: 800;

    cursor: pointer;
}


/* DETAILS LIST */

.match-details-list>div {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.match-details-list>div:last-child {
    border-bottom: none;
}

.match-details-list span {
    font-size: 11px;

    color: var(--gray);
}

.match-details-list strong {
    font-size: 11px;
}


/* SHARE */

.match-share {
    padding: 25px;

    border-radius: 18px;

    background:
        linear-gradient(135deg, #021536, #0756d8);

    color: white;
}

.match-share>span {
    font-size: 12px;

    font-weight: 800;
}

.match-share div {
    display: flex;

    gap: 10px;

    margin-top: 18px;
}

.match-share a {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, .1);

    color: white;

    transition: .3s;
}

.match-share a:hover {
    background: white;

    color: var(--primary);
}


/* TIMELINE */

.timeline-container {
    max-width: 750px;

    margin: auto;

    position: relative;
}

.timeline-container::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    right: 50%;

    width: 2px;

    background: var(--border);
}

.timeline-item {
    position: relative;

    width: 50%;

    padding: 15px 50px;

    margin-bottom: 20px;
}

.timeline-item.home-event {
    margin-right: 50%;
}

.timeline-item.away-event {
    text-align: left;
}

.timeline-point {
    position: absolute;

    top: 22px;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    z-index: 2;
}

.home-event .timeline-point {
    right: -21px;
}

.away-event .timeline-point {
    left: -21px;
}

.timeline-point.goal {
    background: var(--primary);

    color: white;
}

.timeline-point.card {
    background: #e53935;

    color: white;
}

.timeline-time {
    color: var(--primary);

    font-size: 13px;

    font-weight: 900;

    margin-bottom: 5px;
}

.timeline-content {
    padding: 18px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 15px;
}

.timeline-content span {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;
}

.timeline-content h3 {
    font-size: 15px;

    margin: 5px 0;
}

.timeline-content p {
    font-size: 10px;

    color: var(--gray);
}


/* STATS */

.match-stats-card {
    max-width: 850px;

    margin: auto;
}

.stats-team-header {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    text-align: center;

    margin-bottom: 35px;
}

.stats-team-header span {
    color: var(--gray);

    font-size: 11px;
}

.match-stat-row {
    display: grid;

    grid-template-columns: 50px 1fr 50px;

    align-items: center;

    gap: 20px;

    margin-bottom: 28px;
}

.match-stat-row>strong {
    text-align: center;

    font-size: 20px;

    color: var(--primary);
}

.stat-compare {
    position: relative;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.stat-compare span,
.stat-compare i {
    display: block;

    height: 7px;

    border-radius: 50px;
}

.stat-compare span {
    background: var(--primary);
}

.stat-compare i {
    background: #dfe7f2;
}

.stat-compare label {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    background: white;

    padding: 0 10px;

    font-size: 10px;

    color: var(--gray);
}


/* LINEUP */

.lineup-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.lineup-team {
    background: white;

    border: 1px solid var(--border);

    border-radius: 20px;

    overflow: hidden;
}

.lineup-team-title {
    padding: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        linear-gradient(135deg, #021536, #0756d8);

    color: white;
}

.lineup-team-title.away {
    background:
        linear-gradient(135deg, #102235, #304967);
}

.lineup-team-title i {
    font-size: 25px;
}

.lineup-team-title h2 {
    font-size: 18px;
}

.lineup-list {
    padding: 15px 25px;
}

.lineup-player {
    display: grid;

    grid-template-columns: 45px 1fr auto;

    align-items: center;

    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.lineup-player:last-child {
    border-bottom: none;
}

.lineup-number {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 10px;

    font-weight: 900;
}

.lineup-player strong {
    font-size: 12px;
}

.lineup-player>span:last-child {
    font-size: 10px;

    color: var(--gray);
}


/* RELATED MATCHES */

.related-matches-section {
    background: white;
}

.related-matches-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.related-match-card {
    padding: 25px;

    text-align: center;

    border-radius: 18px;

    border: 1px solid var(--border);

    transition: .3s;
}

.related-match-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 20px 35px rgba(0, 0, 0, .08);
}

.related-match-date {
    color: var(--primary);

    font-size: 10px;

    font-weight: 900;

    margin-bottom: 20px;
}

.related-match-teams {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    font-size: 12px;
}

.related-match-teams span {
    color: var(--gray);

    font-size: 10px;
}

.related-match-card small {
    display: block;

    margin-top: 20px;

    color: var(--gray);

    font-size: 10px;
}


/* RESPONSIVE */

@media(max-width: 800px) {

    .match-score-wrapper {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .match-team:first-child {
        order: 1;
    }

    .match-score-center {
        order: 2;
    }

    .match-team:last-child {
        order: 3;
    }

    .match-team-logo {
        width: 90px;
        height: 90px;

        font-size: 35px;
    }

    .match-content-grid {
        grid-template-columns: 1fr;
    }

    .lineup-wrapper {
        grid-template-columns: 1fr;
    }

    .related-matches-grid {
        grid-template-columns: 1fr;
    }

}


@media(max-width: 600px) {

    .match-tabs {
        justify-content: flex-start;

        overflow-x: auto;
    }

    .match-tab {
        white-space: nowrap;
    }

    .match-score strong {
        font-size: 50px;
    }

    .match-info-row {
        flex-direction: column;

        align-items: center;

        gap: 15px;
    }

    .match-summary-stats {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        right: 20px;
    }

    .timeline-item,
    .timeline-item.home-event,
    .timeline-item.away-event {
        width: 100%;

        margin-right: 0;

        text-align: right;

        padding-right: 60px;

        padding-left: 0;
    }

    .home-event .timeline-point,
    .away-event .timeline-point {
        right: 0;

        left: auto;
    }

}

/* =========================================
   STANDINGS PAGE
========================================= */

.standings-hero {
    position: relative;
    overflow: hidden;

    padding: 90px 0;

    background:
        linear-gradient(135deg,
            #021536,
            #0756d8);

    color: #fff;
}

.standings-hero-pattern {
    position: absolute;
    inset: 0;

    opacity: .12;

    background-image:
        radial-gradient(rgba(255, 255, 255, .8) 1px,
            transparent 1px);

    background-size: 28px 28px;
}

.standings-hero-content {
    position: relative;

    z-index: 2;
}

.standings-hero-text {
    max-width: 650px;
}

.standings-hero-text h1 {
    font-size: 48px;

    margin: 18px 0;
}

.standings-hero-text p {
    color: rgba(255, 255, 255, .7);

    line-height: 2;
}

.standings-hero-icon {
    position: absolute;

    left: 8%;

    bottom: -20px;

    font-size: 170px;

    color: rgba(255, 255, 255, .08);

    transform: rotate(-12deg);
}


/* FILTERS */

.standings-filter-section {
    background: #fff;

    border-bottom:
        1px solid var(--border);
}

.standings-filters {
    display: flex;

    align-items: end;

    gap: 20px;

    padding: 25px 0;
}

.filter-item {
    display: flex;

    flex-direction: column;

    gap: 8px;

    min-width: 220px;
}

.filter-item label {
    font-size: 11px;

    color: var(--gray);

    font-weight: 700;
}

.filter-item label i {
    color: var(--primary);

    margin-left: 5px;
}

.filter-item select {
    width: 100%;

    padding: 13px 15px;

    border-radius: 10px;

    border: 1px solid var(--border);

    outline: none;

    background: #fff;

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;
}

.update-standings-btn {
    border: none;

    padding: 14px 22px;

    border-radius: 10px;

    background: var(--primary);

    color: #fff;

    font-family: inherit;

    cursor: pointer;

    font-size: 12px;

    transition: .3s;
}

.update-standings-btn:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}

.update-standings-btn i {
    margin-left: 6px;
}


/* LAYOUT */

.standings-section {
    background: var(--bg);
}

.standings-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 320px;

    gap: 30px;

    align-items: start;
}


/* HEADER */

.standings-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}

.standings-header h2 {
    margin-top: 5px;

    font-size: 26px;
}

.standings-last-update {
    color: var(--gray);

    font-size: 11px;
}

.standings-last-update i {
    color: var(--primary);

    margin-left: 5px;
}


/* TABLE */

.standings-table-wrapper {
    background: #fff;

    border-radius: 20px;

    overflow-x: auto;

    border:
        1px solid var(--border);
}

.standings-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 750px;
}

.standings-table th {
    padding: 18px 15px;

    background: #f8faff;

    color: var(--gray);

    font-size: 11px;

    font-weight: 800;

    text-align: center;

    white-space: nowrap;
}

.standings-table th.team-column {
    text-align: right;
}

.standings-table td {
    padding: 16px 15px;

    text-align: center;

    border-bottom:
        1px solid var(--border);

    font-size: 12px;
}

.standings-table tr:last-child td {
    border-bottom: none;
}

.standings-row {
    transition: .25s;
}

.standings-row:hover {
    background: #f8fbff;
}

.team-name {
    display: flex;

    align-items: center;

    gap: 12px;

    text-align: right !important;

    min-width: 220px;
}

.mini-team-logo {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #e8f1ff;

    color: var(--primary);

    font-size: 10px;

    font-weight: 900;
}

.mini-team-logo.royal {
    background: #edf0f6;
    color: #253858;
}

.mini-team-logo.city {
    background: #e8f8f6;
    color: #12806d;
}

.mini-team-logo.union {
    background: #f3ecff;
    color: #7446c6;
}

.mini-team-logo.modern {
    background: #fff3e5;
    color: #e07a19;
}

.mini-team-logo.warriors {
    background: #eaf0ff;
    color: #254eb8;
}

.mini-team-logo.stars {
    background: #fff4dd;
    color: #b87900;
}

.mini-team-logo.elite {
    background: #eef1f4;
    color: #4e5967;
}

.mini-team-logo.united {
    background: #fff0f0;
    color: #d13d3d;
}

.mini-team-logo.phoenix {
    background: #f9e9e9;
    color: #ad2222;
}


/* POSITIONS */

.position-number {
    width: 30px;
    height: 30px;

    display: inline-grid;

    place-items: center;

    border-radius: 8px;

    background: #f2f4f7;

    font-size: 11px;

    font-weight: 900;
}

.position-1 {
    background: var(--primary);

    color: #fff;
}

.position-2 {
    background: #d9e1ec;

    color: #26354a;
}

.position-3 {
    background: #f0d8bd;

    color: #88592b;
}

.position-number.danger {
    background: #ffe8e8;

    color: #d83333;
}

.team-points {
    display: inline-block;

    min-width: 36px;

    padding: 6px;

    border-radius: 8px;

    background: var(--primary-light);

    color: var(--primary);
}

.positive {
    color: #148b5a;
}

.negative {
    color: #d44747;
}


/* LEGEND */

.standings-legend {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    margin-top: 20px;

    font-size: 10px;

    color: var(--gray);
}

.standings-legend div {
    display: flex;

    align-items: center;

    gap: 8px;
}

.legend-color {
    width: 10px;
    height: 10px;

    border-radius: 50%;
}

.legend-color.champion {
    background: var(--primary);
}

.legend-color.relegation {
    background: #d83333;
}


/* SIDEBAR */

.standings-sidebar {
    display: flex;

    flex-direction: column;

    gap: 20px;
}


/* LEADER */

.leader-card {
    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 35px 25px;

    border-radius: 22px;

    background:
        linear-gradient(145deg,
            #021536,
            #0756d8);

    color: #fff;
}

.leader-card::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .06);

    top: -100px;

    left: -80px;
}

.leader-label {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 14px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .12);

    font-size: 10px;
}

.leader-logo {
    position: relative;

    z-index: 2;

    width: 90px;
    height: 90px;

    margin: 25px auto 15px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border:
        2px solid rgba(255, 255, 255, .25);

    background:
        rgba(255, 255, 255, .1);

    font-size: 35px;
}

.leader-card h2 {
    position: relative;

    z-index: 2;

    font-size: 20px;
}

.leader-points {
    position: relative;

    z-index: 2;

    margin: 20px 0;
}

.leader-points strong {
    display: block;

    font-size: 45px;
}

.leader-points span {
    font-size: 11px;

    color:
        rgba(255, 255, 255, .6);
}

.leader-record {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid rgba(255, 255, 255, .12);

    padding-top: 20px;
}

.leader-record strong,
.leader-record span {
    display: block;
}

.leader-record strong {
    font-size: 18px;
}

.leader-record span {
    margin-top: 4px;

    font-size: 9px;

    color:
        rgba(255, 255, 255, .55);
}


/* NEXT MATCH */

.next-match-card {
    padding: 25px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 20px;
}

.next-match-title {
    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--gray);

    font-size: 11px;

    font-weight: 700;
}

.next-match-title i {
    color: var(--primary);
}

.next-match-teams {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin: 25px 0;
}

.next-match-teams strong {
    font-size: 11px;

    text-align: center;
}

.next-match-teams span {
    color: var(--gray);

    font-size: 10px;
}

.next-match-card small {
    display: block;

    text-align: center;

    color: var(--gray);

    font-size: 10px;
}

.next-match-card a {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 20px;

    padding: 11px;

    border-radius: 10px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;
}


/* TEAM FORM */

.team-form-card {
    padding: 25px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 20px;
}

.team-form-card h3 {
    font-size: 15px;

    margin-bottom: 20px;
}

.form-results {
    display: flex;

    gap: 8px;
}

.form-results span {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    font-size: 11px;

    font-weight: 900;
}

.form-results .win {
    background: #e8f8ef;

    color: #15824f;
}

.form-results .draw {
    background: #eef1f5;

    color: #68717c;
}

.form-results .loss {
    background: #fff0f0;

    color: #d13d3d;
}

.team-form-card p {
    margin-top: 18px;

    color: var(--gray);

    font-size: 10px;

    line-height: 1.8;
}


/* LEAGUE STATS */

.league-stats-section {
    background: #fff;
}

.league-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.league-stat-card {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    border:
        1px solid var(--border);

    border-radius: 18px;

    transition: .3s;
}

.league-stat-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, .06);
}

.league-stat-icon {
    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 20px;
}

.league-stat-card strong,
.league-stat-card span {
    display: block;
}

.league-stat-card strong {
    font-size: 24px;
}

.league-stat-card span {
    margin-top: 3px;

    color: var(--gray);

    font-size: 10px;
}


/* RESPONSIVE */

@media(max-width: 1000px) {

    .standings-layout {
        grid-template-columns: 1fr;
    }

    .standings-sidebar {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media(max-width: 800px) {

    .standings-hero-text h1 {
        font-size: 36px;
    }

    .standings-filters {
        flex-wrap: wrap;
    }

    .filter-item {
        flex: 1;

        min-width: 180px;
    }

    .league-stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media(max-width: 650px) {

    .standings-hero {
        padding: 70px 0;
    }

    .standings-hero-icon {
        font-size: 100px;

        left: 0;
    }

    .standings-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

    .standings-sidebar {
        grid-template-columns: 1fr;
    }

    .standings-filters {
        flex-direction: column;

        align-items: stretch;
    }

    .filter-item {
        width: 100%;
    }

    .league-stats-grid {
        grid-template-columns: 1fr;
    }

    .update-standings-btn {
        width: 100%;
    }

}

@keyframes tableRowAnimation {

    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* =========================================
   SHOP PAGE
========================================= */

.cart-btn {
    position: relative;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #fff;

    color: var(--dark);

    cursor: pointer;

    transition: .3s;
}

.cart-btn:hover {
    background: var(--primary);

    color: #fff;
}

.cart-btn span {
    position: absolute;

    top: -7px;
    left: -7px;

    width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    font-size: 9px;

    font-weight: 800;
}


/* HERO */

.shop-hero {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #021536 0%,
            #063f9e 55%,
            #0b6cff 100%);

    color: #fff;
}

.shop-hero-overlay {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(45deg,
            rgba(255, 255, 255, .04) 25%,
            transparent 25%);

    background-size: 40px 40px;

    opacity: .6;
}

.shop-hero-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.shop-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-size: 11px;

    color: rgba(255, 255, 255, .65);
}

.shop-breadcrumb a {
    color: #fff;
}

.shop-hero h1 {
    margin: 20px 0;

    font-size: 55px;

    line-height: 1.3;
}

.shop-hero p {
    max-width: 620px;

    color: rgba(255, 255, 255, .75);

    line-height: 2;

    font-size: 15px;
}

.shop-hero-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding: 15px 25px;

    border-radius: 10px;

    background: #fff;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    transition: .3s;
}

.shop-hero-btn:hover {
    transform: translateY(-4px);
}

.shop-hero-decoration {
    position: absolute;

    left: 8%;

    bottom: -50px;

    font-size: 250px;

    color: rgba(255, 255, 255, .07);

    transform: rotate(-12deg);
}


/* FEATURES */

.shop-features {
    position: relative;

    z-index: 5;

    margin-top: -45px;
}

.shop-features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .1);

    overflow: hidden;
}

.shop-feature {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    border-left:
        1px solid var(--border);
}

.shop-feature:last-child {
    border-left: none;
}

.shop-feature-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: var(--primary-light);

    color: var(--primary);
}

.shop-feature strong,
.shop-feature span {
    display: block;
}

.shop-feature strong {
    font-size: 12px;
}

.shop-feature span {
    margin-top: 4px;

    color: var(--gray);

    font-size: 9px;
}


/* SECTION TOP */

.shop-section {
    padding-top: 100px;
}

.shop-section-top {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

    margin-bottom: 35px;
}

.shop-section-top h2 {
    margin: 7px 0;

    font-size: 30px;
}

.shop-section-top p {
    color: var(--gray);

    font-size: 12px;
}


/* SEARCH */

.shop-search {
    width: 300px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #fff;
}

.shop-search i {
    color: var(--gray);
}

.shop-search input {
    width: 100%;

    border: none;

    outline: none;

    font-family: inherit;

    font-size: 11px;
}


/* CATEGORIES */

.shop-categories {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}

.shop-category {
    padding: 11px 20px;

    border: 1px solid var(--border);

    border-radius: 50px;

    background: #fff;

    color: var(--gray);

    font-family: inherit;

    font-size: 11px;

    cursor: pointer;

    transition: .3s;
}

.shop-category:hover,
.shop-category.active {
    background: var(--primary);

    border-color: var(--primary);

    color: #fff;
}


/* PRODUCTS */

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.product-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 18px;

    transition: .35s;
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

.product-image {
    position: relative;

    height: 240px;

    display: grid;

    place-items: center;

    overflow: hidden;
}

.product-bg-1 {
    background: linear-gradient(135deg, #e6f0ff, #c9ddff);
}

.product-bg-2 {
    background: linear-gradient(135deg, #edf4ff, #d7e8ff);
}

.product-bg-3 {
    background: linear-gradient(135deg, #e5efff, #c3d8ff);
}

.product-bg-4 {
    background: linear-gradient(135deg, #edf1f7, #dbe4f2);
}

.product-bg-5 {
    background: linear-gradient(135deg, #e8f3ff, #c6ddf7);
}

.product-bg-6 {
    background: linear-gradient(135deg, #dceaff, #b9d2ff);
}

.product-bg-7 {
    background: linear-gradient(135deg, #eef5ff, #d5e6ff);
}

.product-bg-8 {
    background: linear-gradient(135deg, #e4efff, #c4d8f8);
}

.product-placeholder {
    width: 110px;
    height: 110px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .5);

    color: var(--primary);

    font-size: 42px;

    transition: .4s;
}

.product-card:hover .product-placeholder {
    transform: scale(1.1) rotate(-5deg);
}

.product-badge {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 2;

    padding: 6px 11px;

    border-radius: 6px;

    background: var(--primary);

    color: #fff;

    font-size: 9px;

    font-weight: 800;
}

.product-badge.sale {
    background: #e53935;
}

.quick-view {
    position: absolute;

    top: 15px;
    left: 15px;

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 50%;

    background: #fff;

    color: var(--dark);

    cursor: pointer;

    opacity: 0;

    transform: translateY(-10px);

    transition: .3s;
}

.product-card:hover .quick-view {
    opacity: 1;

    transform: translateY(0);
}

.product-content {
    padding: 20px;
}

.product-category {
    color: var(--primary);

    font-size: 9px;

    font-weight: 700;
}

.product-content h3 {
    margin: 8px 0 18px;

    font-size: 14px;
}

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;
}

.product-price {
    color: var(--dark);

    font-size: 14px;
}

.add-cart {
    padding: 9px 13px;

    border: none;

    border-radius: 8px;

    background: var(--primary-light);

    color: var(--primary);

    font-family: inherit;

    font-size: 10px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s;
}

.add-cart:hover {
    background: var(--primary);

    color: #fff;
}


/* NO PRODUCTS */

.no-products {
    display: none;

    text-align: center;

    padding: 70px 20px;

    color: var(--gray);
}

.no-products i {
    font-size: 50px;

    color: var(--primary);

    opacity: .5;
}

.no-products h3 {
    margin-top: 20px;

    color: var(--dark);
}


/* PROMO */

.shop-promo {
    padding: 80px 0;

    margin-top: 80px;

    background:
        linear-gradient(135deg,
            #021536,
            #0756d8);

    color: #fff;
}

.shop-promo-content {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.shop-promo span {
    color: #8fc1ff;

    font-size: 11px;

    font-weight: 800;
}

.shop-promo h2 {
    margin: 10px 0;

    font-size: 32px;
}

.shop-promo p {
    color: rgba(255, 255, 255, .65);

    font-size: 12px;
}

.shop-promo a {
    padding: 15px 25px;

    border-radius: 10px;

    background: #fff;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;
}


/* CART */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 1000;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .3s;
}

.cart-overlay.active {
    opacity: 1;

    visibility: visible;
}

.cart-sidebar {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 1001;

    width: 400px;

    max-width: 100%;

    height: 100vh;

    display: flex;

    flex-direction: column;

    background: #fff;

    transform: translateX(100%);

    transition: .35s;
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px;

    border-bottom: 1px solid var(--border);
}

.cart-header span,
.cart-header small {
    display: block;
}

.cart-header span {
    font-weight: 900;
}

.cart-header small {
    margin-top: 3px;

    color: var(--gray);

    font-size: 10px;
}

.cart-header button,
.close-modal {
    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background: #f3f5f8;

    cursor: pointer;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px;
}

.empty-cart {
    text-align: center;

    margin-top: 100px;

    color: var(--gray);
}

.empty-cart i {
    font-size: 55px;

    color: var(--primary);

    opacity: .3;
}

.empty-cart h3 {
    margin: 15px 0 5px;

    color: var(--dark);
}

.empty-cart p {
    font-size: 11px;
}

.cart-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 55px;
    height: 55px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: var(--primary-light);

    color: var(--primary);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 11px;
}

.cart-item-info strong {
    display: block;

    margin-top: 5px;

    color: var(--primary);

    font-size: 11px;
}

.remove-item {
    border: none;

    background: none;

    color: #d93b3b;

    cursor: pointer;
}

.cart-footer {
    padding: 20px 25px;

    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;
}

.cart-total strong {
    color: var(--primary);
}

.checkout-btn {
    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 10px;

    background: var(--primary);

    color: #fff;

    font-family: inherit;

    cursor: pointer;

    font-weight: 800;
}


/* QUICK MODAL */

.quick-modal {
    position: fixed;

    inset: 0;

    z-index: 1100;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, .5);

    opacity: 0;

    visibility: hidden;

    transition: .3s;
}

.quick-modal.active {
    opacity: 1;

    visibility: visible;
}

.quick-modal-box {
    position: relative;

    width: 750px;

    max-width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    overflow: hidden;

    border-radius: 22px;

    background: #fff;

    transform: translateY(30px);

    transition: .3s;
}

.quick-modal.active .quick-modal-box {
    transform: translateY(0);
}

.close-modal {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 5;
}

.quick-product-image {
    min-height: 400px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(135deg,
            #e4efff,
            #bfd8ff);

    color: var(--primary);

    font-size: 100px;
}

.quick-product-info {
    padding: 50px 35px;
}

.quick-product-info>span {
    color: var(--primary);

    font-size: 10px;

    font-weight: 800;
}

.quick-product-info h2 {
    margin: 15px 0;

    font-size: 26px;
}

.quick-product-info strong {
    display: block;

    color: var(--primary);

    font-size: 25px;
}

.quick-product-info p {
    margin: 20px 0;

    color: var(--gray);

    line-height: 2;

    font-size: 11px;
}

.quick-product-info button {
    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 10px;

    background: var(--primary);

    color: #fff;

    font-family: inherit;

    cursor: pointer;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 800px) {

    .shop-hero {
        min-height: 450px;
    }

    .shop-hero h1 {
        font-size: 40px;
    }

    .shop-section-top {
        align-items: stretch;

        flex-direction: column;
    }

    .shop-search {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-promo-content {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 550px) {

    .shop-hero h1 {
        font-size: 32px;
    }

    .shop-hero-decoration {
        font-size: 130px;

        left: -20px;
    }

    .shop-features {
        margin-top: -25px;
    }

    .shop-features-grid {
        grid-template-columns: 1fr;
    }

    .shop-feature {
        border-left: none;

        border-bottom: 1px solid var(--border);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .quick-modal-box {
        grid-template-columns: 1fr;

        max-height: 90vh;

        overflow-y: auto;
    }

    .quick-product-image {
        min-height: 230px;

        font-size: 65px;
    }

    .quick-product-info {
        padding: 30px 25px;
    }

    .cart-sidebar {
        width: 100%;
    }

}

/* =========================================
   PRODUCT DETAILS PAGE
========================================= */

.product-breadcrumb-section {
    padding: 35px 0;
    background: #f7f9fc;
    border-bottom: 1px solid var(--border);
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: var(--gray);
}

.product-breadcrumb a {
    color: var(--dark);
    transition: .3s;
}

.product-breadcrumb a:hover {
    color: var(--primary);
}

.product-breadcrumb i {
    font-size: 8px;
    color: #aab2bf;
}


/* PRODUCT DETAILS */

.product-details {
    padding: 80px 0;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: start;
}


/* GALLERY */

.product-gallery {
    position: sticky;
    top: 110px;
}

.main-product-image {
    position: relative;
    min-height: 520px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            #e8f1ff,
            #bfd8ff);
}

.main-product-image::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .35);
}

.main-product-icon {
    position: relative;
    z-index: 2;

    width: 220px;
    height: 220px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .55);

    color: var(--primary);

    font-size: 95px;

    transition: .4s;
}

.main-product-image:hover .main-product-icon {
    transform: scale(1.07) rotate(-5deg);
}

.main-product-badge {
    position: absolute;

    top: 25px;
    right: 25px;

    padding: 8px 15px;

    border-radius: 8px;

    background: var(--primary);

    color: #fff;

    font-size: 10px;

    font-weight: 800;
}

.product-thumbnails {
    display: flex;
    gap: 12px;

    margin-top: 18px;
}

.thumbnail {
    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    border: 2px solid transparent;
    border-radius: 14px;

    background: #f4f7fb;

    color: var(--gray);

    font-size: 25px;

    cursor: pointer;

    transition: .3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);

    background: var(--primary-light);

    color: var(--primary);
}


/* PRODUCT INFORMATION */

.product-details-category {
    color: var(--primary);

    font-size: 11px;

    font-weight: 800;
}

.product-details-info h1 {
    margin: 15px 0;

    font-size: 36px;

    line-height: 1.5;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--border);
}

.stars {
    display: flex;
    gap: 3px;

    color: #ffb400;

    font-size: 12px;
}

.product-rating span {
    font-weight: 800;
    font-size: 12px;
}

.product-rating small {
    color: var(--gray);
    font-size: 10px;
}

.product-details-price {
    margin: 25px 0;

    color: var(--primary);

    font-size: 32px;

    font-weight: 900;
}

.product-details-price span {
    margin-right: 10px;

    color: var(--gray);

    font-size: 15px;

    text-decoration: line-through;
}

.product-short-description {
    color: var(--gray);

    line-height: 2;

    font-size: 13px;

    padding-bottom: 25px;

    border-bottom: 1px solid var(--border);
}


/* OPTIONS */

.product-option {
    margin-top: 25px;
}

.option-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
}

.option-title strong,
.quantity-label {
    font-size: 13px;
}

.option-title button {
    border: none;

    background: none;

    color: var(--primary);

    font-family: inherit;

    font-size: 10px;

    cursor: pointer;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-options button {
    min-width: 50px;

    height: 45px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #fff;

    color: var(--dark);

    font-family: inherit;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;
}

.size-options button:hover,
.size-options button.active {
    border-color: var(--primary);

    background: var(--primary);

    color: #fff;
}


/* QUANTITY */

.product-action-row {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;

    border: 1px solid var(--border);

    border-radius: 10px;

    overflow: hidden;
}

.quantity-selector button {
    width: 42px;
    height: 48px;

    border: none;

    background: #f7f9fc;

    color: var(--dark);

    cursor: pointer;
}

.quantity-selector span {
    width: 45px;

    text-align: center;

    font-size: 13px;

    font-weight: 800;
}

.product-add-cart {
    flex: 1;

    height: 48px;

    border: none;

    border-radius: 10px;

    background: var(--primary);

    color: #fff;

    font-family: inherit;

    font-weight: 800;

    cursor: pointer;

    transition: .3s;
}

.product-add-cart:hover {
    background: #0347b8;

    transform: translateY(-2px);
}

.wishlist-btn {
    width: 48px;
    height: 48px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #fff;

    cursor: pointer;

    transition: .3s;
}

.wishlist-btn:hover {
    color: #e63946;
    border-color: #e63946;
}


/* ADVANTAGES */

.product-advantages {
    display: grid;

    gap: 12px;

    margin-top: 30px;

    padding: 20px;

    border-radius: 15px;

    background: #f7f9fc;
}

.product-advantages div {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
}

.product-advantages i {
    width: 30px;

    color: var(--primary);

    text-align: center;
}


/* PRODUCT TABS */

.product-tabs-section {
    padding: 80px 0;

    background: #f7f9fc;
}

.product-tabs {
    display: flex;
    gap: 25px;

    margin-bottom: 35px;

    border-bottom: 1px solid var(--border);
}

.product-tab {
    position: relative;

    padding: 15px 5px;

    border: none;

    background: transparent;

    color: var(--gray);

    font-family: inherit;

    font-size: 12px;

    cursor: pointer;
}

.product-tab::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: .3s;
}

.product-tab.active {
    color: var(--primary);
    font-weight: 800;
}

.product-tab.active::after {
    width: 100%;
}

.tab-content {
    display: none;

    max-width: 850px;

    animation: tabFade .35s ease;
}

.tab-content.active {
    display: block;
}

@keyframes tabFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.tab-content h2 {
    margin-bottom: 20px;

    font-size: 23px;
}

.tab-content p {
    color: var(--gray);

    line-height: 2;

    font-size: 13px;
}

.tab-content ul {
    margin-top: 20px;

    display: grid;
    gap: 10px;

    color: var(--gray);

    font-size: 12px;
}

.tab-content li::marker {
    color: var(--primary);
}


/* SPECIFICATIONS */

.specifications-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.specifications-grid div {
    padding: 20px;

    border-radius: 12px;

    background: #fff;

    border: 1px solid var(--border);
}

.specifications-grid span,
.specifications-grid strong {
    display: block;
}

.specifications-grid span {
    color: var(--gray);

    font-size: 10px;
}

.specifications-grid strong {
    margin-top: 7px;

    font-size: 13px;
}


/* RELATED PRODUCTS */

.related-products {
    padding: 100px 0;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .product-details-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .product-gallery {
        position: static;
    }

    .main-product-image {
        min-height: 450px;
    }

}

@media (max-width: 600px) {

    .product-details {
        padding: 50px 0;
    }

    .main-product-image {
        min-height: 330px;
    }

    .main-product-icon {
        width: 150px;
        height: 150px;

        font-size: 65px;
    }

    .product-details-info h1 {
        font-size: 27px;
    }

    .product-details-price {
        font-size: 25px;
    }

    .product-action-row {
        flex-wrap: wrap;
    }

    .product-add-cart {
        min-width: 100%;
        order: 3;
    }

    .product-tabs {
        gap: 15px;

        overflow-x: auto;

        white-space: nowrap;
    }

    .specifications-grid {
        grid-template-columns: 1fr;
    }

    .thumbnail {
        flex: 1;

        height: 65px;
    }

}

/* =========================================
   CART PAGE
========================================= */

.cart-page {
    padding: 90px 0;
    background: #f7f9fc;
    min-height: 600px;
}

.cart-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 45px;
}

.cart-page-header h1 {
    margin: 8px 0;

    font-size: 38px;
}

.cart-page-header p {
    color: var(--gray);
    font-size: 13px;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.cart-page-grid {
    display: grid;

    grid-template-columns: 1fr 360px;

    gap: 30px;

    align-items: start;
}


/* CART ITEMS */

.cart-page-items {
    display: grid;
    gap: 15px;
}

.cart-page-item {
    display: grid;

    grid-template-columns: 110px 1fr auto;

    gap: 20px;

    align-items: center;

    padding: 18px;

    border-radius: 18px;

    background: #fff;

    border: 1px solid var(--border);

    transition: .3s;
}

.cart-page-item:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.cart-product-image {
    width: 110px;
    height: 110px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background: linear-gradient(135deg,
            #e8f1ff,
            #c4dbff);

    color: var(--primary);

    font-size: 42px;
}

.cart-product-info h3 {
    margin-bottom: 7px;

    font-size: 15px;
}

.cart-product-info span {
    color: var(--gray);

    font-size: 11px;
}

.cart-product-actions {
    display: flex;
    align-items: center;

    gap: 25px;
}

.cart-item-price {
    color: var(--primary);

    font-size: 15px;

    font-weight: 900;
}

.cart-item-quantity {
    display: flex;
    align-items: center;

    border: 1px solid var(--border);

    border-radius: 8px;

    overflow: hidden;
}

.cart-item-quantity button {
    width: 32px;
    height: 36px;

    border: none;

    background: #f7f9fc;

    cursor: pointer;
}

.cart-item-quantity span {
    width: 35px;

    text-align: center;

    font-size: 12px;

    font-weight: 800;
}

.remove-cart-item {
    border: none;

    background: none;

    color: #d8dce3;

    cursor: pointer;

    transition: .3s;
}

.remove-cart-item:hover {
    color: #e63946;
}


/* ORDER SUMMARY */

.order-summary {
    position: sticky;

    top: 110px;

    padding: 28px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid var(--border);
}

.order-summary h2 {
    margin-bottom: 25px;

    font-size: 20px;
}

.summary-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);

    font-size: 11px;

    color: var(--gray);
}

.summary-row strong {
    color: var(--dark);

    font-size: 11px;
}

.summary-total {
    display: flex;

    justify-content: space-between;

    padding: 22px 0;

    font-size: 14px;

    font-weight: 800;
}

.summary-total strong {
    color: var(--primary);

    font-size: 21px;
}

.checkout-page-btn {
    width: 100%;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 10px;

    background: var(--primary);

    color: #fff;

    font-size: 12px;

    font-weight: 800;

    transition: .3s;
}

.checkout-page-btn:hover {
    transform: translateY(-2px);

    background: #0347b8;
}

.summary-continue {
    display: block;

    margin-top: 17px;

    text-align: center;

    color: var(--gray);

    font-size: 11px;
}

.secure-checkout {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: var(--gray);

    font-size: 10px;
}

.secure-checkout i {
    color: var(--primary);
}


/* EMPTY CART */

.empty-cart-page {
    padding: 80px 30px;

    text-align: center;

    border-radius: 20px;

    background: #fff;

    border: 1px dashed var(--border);
}

.empty-cart-page i {
    color: var(--primary);

    font-size: 60px;

    margin-bottom: 20px;
}

.empty-cart-page h2 {
    margin-bottom: 10px;
}

.empty-cart-page p {
    color: var(--gray);

    font-size: 12px;

    margin-bottom: 25px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .cart-page-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

}

@media (max-width: 650px) {

    .cart-page {
        padding: 55px 0;
    }

    .cart-page-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-page-header h1 {
        font-size: 30px;
    }

    .cart-page-item {
        grid-template-columns: 80px 1fr;

        gap: 15px;
    }

    .cart-product-image {
        width: 80px;
        height: 80px;

        font-size: 30px;
    }

    .cart-product-actions {
        grid-column: 1 / -1;

        justify-content: space-between;

        padding-top: 12px;

        border-top: 1px solid var(--border);
    }

}

/* =========================================
   CHECKOUT PAGE
========================================= */

.checkout-navbar {
    padding: 18px 0;

    background: #fff;

    border-bottom: 1px solid var(--border);
}

.checkout-nav-container {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.checkout-security {
    display: flex;

    align-items: center;
    gap: 8px;

    color: var(--gray);

    font-size: 11px;
}

.checkout-security i {
    color: var(--primary);
}


/* PAGE */

.checkout-page {
    padding: 60px 0 100px;

    background: #f7f9fc;

    min-height: 100vh;
}


/* STEPS */

.checkout-steps {
    max-width: 650px;

    display: flex;

    align-items: center;

    margin: 0 auto 60px;
}

.checkout-step {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: #aeb6c2;
}

.checkout-step span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #e7ebf1;

    font-size: 12px;

    font-weight: 800;
}

.checkout-step.active {
    color: var(--primary);
}

.checkout-step.active span {
    background: var(--primary);

    color: #fff;
}

.checkout-step small {
    font-size: 10px;

    white-space: nowrap;
}

.checkout-line {
    flex: 1;

    height: 2px;

    margin: 0 15px 25px;

    background: #e3e7ed;
}


/* GRID */

.checkout-grid {
    display: grid;

    grid-template-columns: 1fr 360px;

    gap: 35px;

    align-items: start;
}


/* TITLE */

.checkout-title {
    margin-bottom: 30px;
}

.checkout-title h1 {
    margin: 8px 0;

    font-size: 34px;
}

.checkout-title p {
    color: var(--gray);

    font-size: 12px;
}


/* CHECKOUT CARD */

.checkout-card {
    margin-bottom: 20px;

    padding: 30px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid var(--border);
}

.checkout-card h2 {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    font-size: 17px;
}

.checkout-card h2 i {
    color: var(--primary);

    font-size: 15px;
}


/* FORM */

.form-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 11px;

    font-weight: 700;
}

.form-group label span {
    color: var(--gray);

    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea,
.order-note-card textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid var(--border);

    border-radius: 10px;

    outline: none;

    background: #fff;

    color: var(--dark);

    font-family: inherit;

    font-size: 12px;

    transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.order-note-card textarea:focus {
    border-color: var(--primary);

    box-shadow: 0 0 0 3px rgba(0, 91, 255, .08);
}


/* PAYMENT */

.payment-options {
    display: grid;

    gap: 12px;
}

.payment-option {
    display: grid;

    grid-template-columns: 45px 1fr auto;

    align-items: center;

    gap: 15px;

    padding: 15px;

    border: 1px solid var(--border);

    border-radius: 13px;

    cursor: pointer;

    transition: .3s;
}

.payment-option input {
    display: none;
}

.payment-option.active {
    border-color: var(--primary);

    background: #f7faff;
}

.payment-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--primary-light);

    color: var(--primary);
}

.payment-option strong,
.payment-option span {
    display: block;
}

.payment-option strong {
    font-size: 12px;
}

.payment-option span {
    margin-top: 4px;

    color: var(--gray);

    font-size: 10px;
}

.payment-option>i {
    color: var(--primary);
}


/* BUTTON */

.confirm-order-btn {
    width: 100%;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: none;

    border-radius: 12px;

    background: var(--primary);

    color: #fff;

    font-family: inherit;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s;
}

.confirm-order-btn:hover {
    background: #0347b8;

    transform: translateY(-2px);
}


/* SUMMARY */

.checkout-summary {
    position: sticky;

    top: 30px;

    padding: 28px;

    border-radius: 20px;

    background: #fff;

    border: 1px solid var(--border);
}

.checkout-summary h2 {
    margin-bottom: 20px;

    font-size: 19px;
}

.checkout-products {
    display: grid;

    gap: 15px;

    margin-bottom: 20px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.checkout-product {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    font-size: 11px;
}

.checkout-product-info {
    display: flex;

    align-items: center;

    gap: 10px;
}

.checkout-product-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    background: var(--primary-light);

    color: var(--primary);
}

.checkout-product-info span {
    display: block;

    margin-top: 3px;

    color: var(--gray);

    font-size: 9px;
}

.checkout-product-price {
    color: var(--primary);

    font-weight: 800;

    white-space: nowrap;
}

.checkout-summary-row {
    display: flex;

    justify-content: space-between;

    padding: 13px 0;

    color: var(--gray);

    font-size: 11px;
}

.checkout-summary-row strong {
    color: var(--dark);
}

.checkout-summary-total {
    display: flex;

    justify-content: space-between;

    margin-top: 10px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    font-size: 14px;

    font-weight: 800;
}

.checkout-summary-total strong {
    color: var(--primary);

    font-size: 21px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

}

@media (max-width: 600px) {

    .checkout-page {
        padding: 40px 0 70px;
    }

    .checkout-security {
        font-size: 9px;
    }

    .checkout-step small {
        font-size: 8px;
    }

    .checkout-line {
        margin-left: 8px;
        margin-right: 8px;
    }

    .checkout-title h1 {
        font-size: 28px;
    }

    .checkout-card {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

}

/* =========================================
   ORDER SUCCESS PAGE
========================================= */

.order-success-body {
    background: #f6f9ff;
}


/* PAGE */

.order-success-page {
    padding: 70px 0 90px;

    min-height: 100vh;
}


/* SUCCESS HERO */

.success-hero {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;

    animation: successFadeUp .8s ease;
}

.success-icon-wrapper {
    display: flex;

    justify-content: center;

    margin-bottom: 22px;
}

.success-circle {
    width: 95px;
    height: 95px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--primary);

    color: #fff;

    font-size: 38px;

    box-shadow:
        0 15px 40px rgba(0, 91, 255, .25);

    animation: successPop .7s ease;
}

.success-label {
    display: inline-block;

    padding: 6px 14px;

    border-radius: 30px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}

.success-hero h1 {
    margin: 16px 0 12px;

    font-size: 38px;

    font-weight: 900;
}

.success-hero>p {
    max-width: 620px;

    margin: auto;

    color: var(--gray);

    line-height: 2;

    font-size: 13px;
}


/* ORDER NUMBER */

.success-order-number {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 25px;

    padding: 13px 20px;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #fff;
}

.success-order-number span {
    color: var(--gray);

    font-size: 11px;
}

.success-order-number strong {
    color: var(--primary);

    font-size: 15px;

    direction: ltr;
}


/* SUCCESS GRID */

.success-grid {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 25px;

    margin-bottom: 40px;
}


/* SUCCESS CARD */

.success-card {
    padding: 30px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 20px;

    animation: successFadeUp .8s ease both;
}

.customer-info-card {
    animation-delay: .15s;
}

.success-card-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 20px;

    margin-bottom: 5px;

    border-bottom: 1px solid var(--border);
}

.success-card-header h2 {
    margin-top: 5px;

    font-size: 20px;
}

.success-card-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: var(--primary-light);

    color: var(--primary);

    font-size: 20px;
}


/* PRODUCTS */

.success-products {
    display: grid;

    gap: 0;
}

.success-product {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}

.success-product-info {
    display: flex;

    align-items: center;

    gap: 12px;
}

.success-product-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--primary-light);

    color: var(--primary);
}

.success-product-info strong {
    display: block;

    font-size: 12px;
}

.success-product-info span {
    display: block;

    margin-top: 3px;

    color: var(--gray);

    font-size: 10px;
}

.success-product-price {
    color: var(--primary);

    font-size: 13px;

    white-space: nowrap;
}


/* TOTAL */

.success-total-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 22px;

    font-size: 14px;

    font-weight: 800;
}

.success-total-row strong {
    color: var(--primary);

    font-size: 24px;
}


/* DELIVERY INFO */

.delivery-info-list {
    display: grid;

    gap: 5px;

    padding-top: 10px;
}

.delivery-info-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 0;

    border-bottom: 1px solid var(--border);
}

.delivery-info-item:last-child {
    border-bottom: none;
}

.delivery-info-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: #f5f8fd;

    color: var(--primary);
}

.delivery-info-item span {
    display: block;

    margin-bottom: 3px;

    color: var(--gray);

    font-size: 10px;
}

.delivery-info-item strong {
    display: block;

    font-size: 12px;

    line-height: 1.8;
}


/* TRACKING */

.tracking-section {
    margin-bottom: 30px;

    padding: 40px;

    border: 1px solid var(--border);

    border-radius: 22px;

    background: #fff;

    animation: successFadeUp .8s .25s ease both;
}

.tracking-header {
    margin-bottom: 40px;

    text-align: center;
}

.tracking-header h2 {
    margin: 8px 0;

    font-size: 25px;
}

.tracking-header p {
    color: var(--gray);

    font-size: 12px;
}

.tracking-timeline {
    display: flex;

    align-items: flex-start;

    justify-content: center;
}

.tracking-step {
    flex: 1;

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    text-align: center;

    color: #a8b0bc;
}

.tracking-icon {
    width: 55px;
    height: 55px;

    position: relative;

    z-index: 2;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #eef1f5;

    font-size: 18px;
}

.tracking-step.active {
    color: var(--dark);
}

.tracking-step.active .tracking-icon {
    background: var(--primary);

    color: #fff;

    box-shadow:
        0 10px 25px rgba(0, 91, 255, .25);
}

.tracking-step strong {
    font-size: 12px;
}

.tracking-step span {
    color: var(--gray);

    font-size: 10px;
}

.tracking-line {
    flex: .5;

    height: 2px;

    margin-top: 27px;

    background: #e4e8ee;
}


/* NEXT STEPS */

.next-steps-card {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-bottom: 35px;

    padding: 25px 30px;

    border-radius: 20px;

    background: linear-gradient(135deg,
            var(--primary),
            #0347b8);

    color: #fff;

    animation: successFadeUp .8s .35s ease both;
}

.next-step-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    font-size: 20px;
}

.next-step-content h2 {
    margin-bottom: 5px;

    font-size: 18px;
}

.next-step-content p {
    opacity: .85;

    font-size: 11px;

    line-height: 1.9;
}


/* ACTIONS */

.success-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    animation: successFadeUp .8s .45s ease both;
}

.success-actions a,
.print-invoice-btn {
    min-width: 180px;

    height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 20px;

    border-radius: 11px;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s;
}

.print-invoice-btn {
    border: 1px solid var(--border);

    background: #fff;

    color: var(--dark);
}

.print-invoice-btn:hover {
    transform: translateY(-3px);

    border-color: var(--primary);

    color: var(--primary);
}

.back-shop-btn {
    background: var(--primary);

    color: #fff;
}

.back-shop-btn:hover {
    background: #0347b8;

    transform: translateY(-3px);
}

.back-home-btn {
    background: #eef4ff;

    color: var(--primary);
}

.back-home-btn:hover {
    transform: translateY(-3px);

    background: var(--primary);

    color: #fff;
}


/* ANIMATIONS */

@keyframes successPop {

    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

@keyframes successFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* MOBILE */

@media (max-width: 900px) {

    .success-grid {
        grid-template-columns: 1fr;
    }

    .tracking-timeline {
        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .tracking-step {
        flex-direction: row;

        align-items: center;

        text-align: right;

        padding: 12px 0;
    }

    .tracking-step>div:last-child {
        text-align: right;
    }

    .tracking-line {
        width: 2px;

        height: 30px;

        flex: none;

        margin: 0 27px;

        background: #e4e8ee;
    }

}


@media (max-width: 600px) {

    .order-success-page {
        padding: 45px 0 60px;
    }

    .success-hero {
        margin-bottom: 40px;
    }

    .success-circle {
        width: 80px;
        height: 80px;

        font-size: 30px;
    }

    .success-hero h1 {
        font-size: 29px;
    }

    .success-hero>p {
        font-size: 11px;
    }

    .success-card {
        padding: 20px;
    }

    .tracking-section {
        padding: 25px 20px;
    }

    .tracking-header h2 {
        font-size: 21px;
    }

    .next-steps-card {
        align-items: flex-start;

        padding: 22px 20px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions a,
    .print-invoice-btn {
        width: 100%;
    }

}

/* =========================================
   SCHEDULE PAGE
========================================= */

.schedule-hero {
    padding: 120px 0 90px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 60, 180, .96), rgba(0, 110, 255, .82));
    color: #fff;
}

.schedule-hero h1 {
    margin: 12px 0;
    font-size: 46px;
}

.schedule-hero p {
    opacity: .8;
    font-size: 13px;
}

.schedule-section {
    padding: 80px 0;
    background: #f6f9ff;
}

.schedule-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
}

.schedule-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.schedule-tab {
    border: 1px solid var(--border);
    background: #fff;
    padding: 11px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: .3s;
}

.schedule-tab:hover,
.schedule-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.schedule-select {
    min-width: 180px;
    padding: 11px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    outline: none;
}

.schedule-month {
    margin-bottom: 45px;
}

.schedule-month-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.schedule-month-title span {
    font-size: 24px;
    font-weight: 900;
}

.schedule-month-title small {
    color: var(--primary);
    font-weight: 800;
}

.schedule-list {
    display: grid;
    gap: 12px;
}

.schedule-match {
    display: grid;
    grid-template-columns: 90px 1fr auto auto;
    align-items: center;
    gap: 25px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: .3s;
}

.schedule-match:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 50, 120, .07);
}

.schedule-date {
    text-align: center;
    border-left: 1px solid var(--border);
}

.schedule-date strong,
.schedule-date span {
    display: block;
}

.schedule-date strong {
    color: var(--primary);
    font-size: 25px;
}

.schedule-date span {
    color: var(--gray);
    font-size: 10px;
}

.schedule-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.schedule-team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
}

.team-mini-logo {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.opponent-logo {
    background: #e9edf3;
    color: var(--dark);
}

.schedule-score {
    min-width: 80px;
    text-align: center;
    color: var(--dark);
    font-size: 15px;
    font-weight: 900;
}

.upcoming-time {
    color: var(--primary);
}

.schedule-status {
    min-width: 100px;
    padding: 7px 10px;
    border-radius: 30px;
    text-align: center;
    font-size: 9px;
    font-weight: 800;
}

.finished-status {
    background: #f0f2f5;
    color: var(--gray);
}

.upcoming-status {
    background: #eaf2ff;
    color: var(--primary);
}

.schedule-details {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
}

.schedule-empty {
    display: none;
    padding: 70px 20px;
    text-align: center;
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: 20px;
}

.schedule-empty i {
    color: var(--primary);
    font-size: 45px;
}

.schedule-empty h3 {
    margin: 15px 0 5px;
}

.schedule-empty p {
    color: var(--gray);
    font-size: 11px;
}

@media (max-width: 900px) {

    .schedule-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .schedule-select {
        width: 100%;
    }

    .schedule-match {
        grid-template-columns: 75px 1fr;
    }

    .schedule-teams {
        grid-column: 2;
    }

    .schedule-status,
    .schedule-details {
        grid-column: 2;
    }

}

@media (max-width: 600px) {

    .schedule-hero h1 {
        font-size: 34px;
    }

    .schedule-section {
        padding: 55px 0;
    }

    .schedule-match {
        padding: 15px;
        gap: 15px;
    }

    .schedule-teams {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .schedule-score {
        order: -1;
    }

    .schedule-team.opponent {
        flex-direction: row-reverse;
    }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    padding: 120px 0 90px;
    text-align: center;
    color: #fff;

    background:
        linear-gradient(135deg,
            rgba(0, 55, 170, .96),
            rgba(0, 115, 255, .85));
}

.contact-hero h1 {
    margin: 12px 0;
    font-size: 46px;
}

.contact-hero p {
    max-width: 600px;
    margin: auto;
    opacity: .85;
    font-size: 13px;
    line-height: 2;
}

.contact-section {
    padding: 80px 0;
    background: #f6f9ff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 55px;
}

.contact-info-card {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: .3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 50, 130, .08);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    border-radius: 15px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 20px;
}

.contact-info-card h3 {
    margin-bottom: 7px;
    font-size: 14px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 10px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
}

.contact-form-container {
    padding: 45px;
}

.contact-form-container h2 {
    margin: 10px 0;
    font-size: 28px;
}

.contact-form-container>p {
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 12px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-submit-btn {
    margin-top: 25px;
    padding: 15px 28px;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .3s;
}

.contact-submit-btn:hover {
    background: #0347b8;
    transform: translateY(-2px);
}

.contact-side {
    position: relative;
    min-height: 100%;
    padding: 45px;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            var(--primary),
            #023c9e);
    color: #fff;
}

.contact-side-content {
    position: relative;
    z-index: 2;
}

.contact-side h2 {
    margin: 10px 0 15px;
    font-size: 28px;
}

.contact-side p {
    opacity: .85;
    font-size: 12px;
    line-height: 2;
}

.contact-socials {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 10px;
    margin-top: 35px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    transition: .3s;
}

.contact-socials a:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-side-ball {
    position: absolute;
    left: -50px;
    bottom: -60px;
    opacity: .08;
    font-size: 220px;
    transform: rotate(-25deg);
}

@media (max-width: 950px) {

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-side {
        min-height: 350px;
    }

}

@media (max-width: 600px) {

    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-section {
        padding: 55px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .contact-side {
        padding: 28px 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   ABOUT PAGE
========================================= */

.about-hero {
    padding: 130px 0 100px;
    text-align: center;
    color: #fff;

    background:
        linear-gradient(135deg,
            #003c9e,
            #006eff);
}

.about-hero h1 {
    margin: 15px 0;
    font-size: 50px;
}

.about-hero p {
    max-width: 650px;
    margin: auto;
    opacity: .85;
    line-height: 2;
    font-size: 13px;
}


/* INTRO */

.about-intro {
    padding: 100px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-intro-content h2 {
    margin: 10px 0 20px;
    font-size: 38px;
}

.about-intro-content>p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 2;
    font-size: 13px;
}

.about-stats {
    display: flex;
    gap: 35px;
    margin-top: 35px;
}

.about-stats strong,
.about-stats span {
    display: block;
}

.about-stats strong {
    color: var(--primary);
    font-size: 30px;
}

.about-stats span {
    margin-top: 4px;
    color: var(--gray);
    font-size: 10px;
}


/* VISUAL */

.about-visual {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 30px;

    background:
        linear-gradient(135deg,
            var(--primary),
            #002e80);
}

.about-big-icon {
    color: rgba(255, 255, 255, .15);
    font-size: 190px;
}

.about-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
    font-size: 11px;
    font-weight: 800;
}

.about-floating-card i {
    color: var(--primary);
}

.card-one {
    top: 55px;
    right: 35px;
}

.card-two {
    bottom: 55px;
    left: 35px;
}


/* VISION */

.vision-section {
    padding: 90px 0;
    background: #f6f9ff;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.vision-card {
    padding: 35px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: .3s;
}

.vision-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 50, 120, .08);
}

.vision-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 15px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 20px;
}

.vision-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
}

.vision-card p {
    color: var(--gray);
    font-size: 12px;
    line-height: 2;
}


/* HISTORY */

.club-history {
    padding: 100px 0;
}

.section-heading.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading.center h2 {
    margin: 10px 0;
    font-size: 35px;
}

.section-heading.center p {
    color: var(--gray);
    font-size: 12px;
}

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: auto;
}

.history-timeline::before {
    content: "";
    position: absolute;
    right: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.history-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.history-year {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
}

.history-content {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.history-content h3 {
    margin-bottom: 7px;
    font-size: 15px;
}

.history-content p {
    color: var(--gray);
    font-size: 11px;
    line-height: 1.9;
}


/* CTA */

.about-cta {
    padding: 70px 0;
    background: var(--primary);
    color: #fff;
}

.about-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.about-cta span {
    opacity: .7;
    font-size: 10px;
    font-weight: 800;
}

.about-cta h2 {
    margin: 8px 0;
    font-size: 30px;
}

.about-cta p {
    opacity: .8;
    font-size: 12px;
}

.about-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    transition: .3s;
}

.about-cta a:hover {
    transform: translateY(-3px);
}


@media (max-width: 900px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .about-hero h1 {
        font-size: 35px;
    }

    .about-intro {
        padding: 60px 0;
    }

    .about-intro-content h2 {
        font-size: 29px;
    }

    .about-stats {
        gap: 20px;
    }

    .about-stats strong {
        font-size: 23px;
    }

    .about-visual {
        min-height: 300px;
    }

    .about-big-icon {
        font-size: 130px;
    }

    .history-timeline::before {
        right: 35px;
    }

    .history-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .history-year {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }

    .about-cta .container {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =========================================
   LIVE PAGE
========================================= */

.live-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 90px;
    background:
        linear-gradient(135deg,
            #001f5c,
            #005bea);
    color: #fff;
}

.live-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -150px;
}

.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -180px;
    right: -100px;
}

.live-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 45px;
}

.live-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 13px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .1);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b3b;
    animation: liveBlink 1s infinite;
}

@keyframes liveBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .3;
        transform: scale(.7);
    }

}

.live-header h1 {
    margin-bottom: 8px;
    font-size: 34px;
}

.live-header p {
    font-size: 12px;
    opacity: .75;
}

.live-refresh {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    opacity: .8;
}

.live-refresh i {
    animation: rotateIcon 4s linear infinite;
}

@keyframes rotateIcon {

    to {
        transform: rotate(360deg);
    }

}


/* LIVE MATCH */

.live-match-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.live-match-top,
.live-match-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.live-match-top {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.live-competition {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
}

.live-competition i {
    color: #ffd44d;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(255, 70, 70, .15);
    color: #ff7b7b;
    font-size: 10px;
    font-weight: 900;
}

.live-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff3b3b;
    animation: liveBlink 1s infinite;
}

.live-scoreboard {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 70px;
    padding: 60px 40px;
}

.live-team {
    text-align: center;
}

.live-team-logo {
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 28px;
    background: #fff;
    color: var(--primary);
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.live-team-logo.opponent {
    background: #eaf1ff;
    color: #002f86;
}

.live-team h2 {
    margin-bottom: 5px;
    font-size: 18px;
}

.live-team span {
    font-size: 10px;
    opacity: .65;
}

.live-score-center {
    min-width: 240px;
    text-align: center;
}

.live-minute {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
    font-size: 11px;
    font-weight: 800;
}

.live-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.live-score strong {
    font-size: 68px;
    line-height: 1;
}

.live-score span {
    font-size: 30px;
    opacity: .5;
}

.live-period {
    margin-top: 12px;
    font-size: 10px;
    opacity: .7;
}

.live-match-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.live-match-info {
    display: flex;
    gap: 25px;
}

.live-match-info span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    opacity: .75;
}

.live-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 17px;
    border-radius: 10px;
    background: #fff;
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
}


/* LIVE CONTENT */

.live-content {
    padding: 90px 0;
}

.live-dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
}

.live-events-panel,
.live-stats-panel {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
}

.live-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 25px;
}

.live-panel-header h2 {
    margin-top: 5px;
    font-size: 20px;
}

.events-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff3b3b;
    font-size: 9px;
    font-weight: 900;
}

.live-event {
    display: grid;
    grid-template-columns: 45px 45px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
    animation: eventAppear .5s ease;
}

@keyframes eventAppear {

    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.live-event:last-child {
    border-bottom: none;
}

.live-event-time {
    font-size: 11px;
    font-weight: 900;
    color: var(--primary);
}

.live-event-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
}

.live-event-icon.goal {
    background: var(--primary-light);
    color: var(--primary);
}

.live-event-icon.warning {
    background: #fff3d8;
    color: #e5a500;
}

.live-event-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.live-event-content strong {
    font-size: 11px;
}

.live-event-content span {
    color: var(--gray);
    font-size: 9px;
}

.live-event-score {
    padding: 6px 9px;
    border-radius: 7px;
    background: #f3f6fb;
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
}


/* LIVE STATS */

.live-stat-item {
    margin-bottom: 28px;
}

.live-stat-title {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 8px;
    text-align: center;
}

.live-stat-title strong {
    font-size: 13px;
}

.live-stat-title span {
    color: var(--gray);
    font-size: 9px;
}

.live-stat-bar {
    display: flex;
    gap: 3px;
    height: 9px;
}

.live-stat-home,
.live-stat-away {
    border-radius: 20px;
}

.live-stat-home {
    background: var(--primary);
}

.live-stat-away {
    background: #dce3ee;
}


/* PROGRESS */

.match-progress-box {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 800;
}

.match-progress {
    height: 8px;
    overflow: hidden;
    border-radius: 20px;
    background: #edf1f7;
}

#matchProgress {
    width: 70%;
    height: 100%;
    border-radius: inherit;
    background: var(--primary);
    transition: width .5s ease;
}


/* MATCH CENTER */

.live-other-section {
    padding: 90px 0;
    background: #f6f9ff;
}

.live-matches-tabs {
    display: flex;
    gap: 10px;
    margin: 35px 0 25px;
}

.live-tab {
    padding: 10px 22px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: #fff;
    color: var(--gray);
    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.live-tab.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.live-matches-content {
    display: none;
}

.live-matches-content.active {
    display: block;
}

.mini-live-match {
    display: grid;
    grid-template-columns: 180px 1fr 90px;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
    color: var(--dark);
    transition: .3s;
}

.mini-live-match:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.mini-match-date {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--gray);
    font-size: 10px;
}

.mini-match-date span {
    color: var(--dark);
    font-weight: 800;
}

.mini-match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 11px;
    font-weight: 800;
}

.mini-match-teams strong {
    color: var(--primary);
}

.finished-score {
    padding: 7px 12px;
    border-radius: 8px;
    background: var(--primary-light);
}

.mini-match-status {
    padding: 7px;
    border-radius: 7px;
    text-align: center;
    font-size: 9px;
    font-weight: 900;
}

.mini-match-status.upcoming {
    background: #eef4ff;
    color: var(--primary);
}

.mini-match-status.finished {
    background: #e5f8ec;
    color: #1a9b52;
}

.mini-match-status.lost {
    background: #ffeaea;
    color: #d83d3d;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .live-scoreboard {
        gap: 30px;
    }

    .live-team-logo {
        width: 85px;
        height: 85px;
    }

    .live-score strong {
        font-size: 52px;
    }

    .live-dashboard-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 650px) {

    .live-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .live-header h1 {
        font-size: 27px;
    }

    .live-scoreboard {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 20px;
    }

    .live-score-center {
        order: -1;
    }

    .live-team-logo {
        width: 75px;
        height: 75px;
        margin-bottom: 10px;
    }

    .live-match-top,
    .live-match-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        padding: 18px;
    }

    .live-match-info {
        flex-direction: column;
        gap: 10px;
    }

    .live-event {
        grid-template-columns: 35px 38px 1fr;
    }

    .live-event-score {
        display: none;
    }

    .live-events-panel,
    .live-stats-panel {
        padding: 20px 15px;
    }

    .mini-live-match {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .mini-match-date {
        align-items: center;
    }

    .mini-match-teams {
        gap: 10px;
        flex-wrap: wrap;
    }

}