:root {
    --orange: #f47a00;
    --orange-dark: #cf5f00;
    --orange-light: #ff9a32;

    --black: #0a0a0b;
    --black-soft: #111214;
    --black-card: #17181b;

    --white: #ffffff;
    --off-white: #f7f7f7;
    --gray: #777b82;
    --gray-light: #e9eaec;

    --border: rgba(15, 15, 15, 0.09);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.09);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.24);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--off-white);
    color: var(--black);
    font-family: "Tajawal", sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

body.offcanvas-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
textarea,
select {
    font-family: inherit;
}

::selection {
    background: var(--orange);
    color: var(--white);
}

.site-main {
    min-height: 65vh;
}

.sports-pattern {
    position: fixed;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    opacity: 0.022;
    background-image:
        linear-gradient(30deg, #000 12%, transparent 12.5%, transparent 87%, #000 87.5%, #000),
        linear-gradient(150deg, #000 12%, transparent 12.5%, transparent 87%, #000 87.5%, #000),
        linear-gradient(30deg, #000 12%, transparent 12.5%, transparent 87%, #000 87.5%, #000),
        linear-gradient(150deg, #000 12%, transparent 12.5%, transparent 87%, #000 87.5%, #000);
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    background-size: 80px 140px;
}

/* Loader */

.site-loader {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--black);
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
}

.loader-ball {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 22px;
    animation: loaderBounce 0.8s infinite alternate ease-in-out;
}

@keyframes loaderBounce {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-15px) rotate(30deg);
    }
}

/* Navbar */

.site-header {
    position: fixed;
    z-index: 1040;
    top: 0;
    right: 0;
    left: 0;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(10, 10, 11, 0.96);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.sports-navbar {
    min-height: 78px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sports-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.sports-brand:hover {
    color: var(--white);
}

.brand-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(244, 122, 0, 0.3);
}

.brand-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-content strong {
    font-size: 16px;
    font-weight: 900;
}

.brand-content small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 500;
}

.sports-navbar .nav-link {
    position: relative;
    margin: 0 4px;
    padding: 10px 14px !important;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    transition: 0.25s ease;
}

.sports-navbar .nav-link::after {
    position: absolute;
    right: 14px;
    bottom: 2px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: var(--orange);
    content: "";
    transition: width 0.25s ease;
}

.sports-navbar .nav-link:hover,
.sports-navbar .nav-link.active {
    color: var(--white);
}

.sports-navbar .nav-link:hover::after,
.sports-navbar .nav-link.active::after {
    width: 22px;
}

.navbar-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 30px;
    background: var(--orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.navbar-cta:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.sports-toggler {
    display: flex;
    width: 43px;
    height: 43px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    box-shadow: none !important;
}

.sports-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 5px;
    background: var(--white);
}

.sports-offcanvas {
    background: var(--black);
    color: var(--white);
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.offcanvas-brand>span:last-child {
    display: flex;
    flex-direction: column;
}

.offcanvas-brand strong {
    font-size: 15px;
}

.offcanvas-brand small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.offcanvas-close {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    font-size: 17px;
}

.offcanvas-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-footer span,
.offcanvas-footer strong {
    display: block;
}

.offcanvas-footer span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

.offcanvas-footer strong {
    margin-top: 4px;
    color: var(--white);
    font-size: 15px;
}

.offcanvas-footer i {
    color: var(--orange);
}

/* Hero */

.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-empty {
    min-height: 680px;
}

.hero-slide-link {
    position: relative;
    display: block;
    min-height: 680px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 10, 11, 0.35) 0%,
            rgba(10, 10, 11, 0.72) 55%,
            rgba(10, 10, 11, 0.98) 100%),
        linear-gradient(0deg,
            rgba(10, 10, 11, 0.92) 0%,
            transparent 52%);
}

.hero-grid,
.support-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.7) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to left, #000, transparent 70%);
}

.hero-content-container {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 680px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 100px;
}

.hero-content,
.hero-empty-content {
    max-width: 650px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--orange-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.hero-kicker span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 10px;
    background: var(--orange);
}

.hero-content h1,
.hero-empty h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 900;
    line-height: 1.12;
}

.hero-content h1 strong,
.hero-empty h1 strong {
    display: block;
    color: var(--orange);
}

.hero-content p,
.hero-empty p {
    max-width: 550px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.9;
}

.hero-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    padding: 11px 22px;
    border-radius: 40px;
    background: var(--orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    transition: 0.25s ease;
}

.hero-button i {
    transition: transform 0.25s ease;
}

.hero-button:hover {
    background: var(--white);
    color: var(--black);
}

.hero-button:hover i {
    transform: translateX(-5px);
}

.hero-empty {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 100px;
    background:
        radial-gradient(circle at 15% 50%, rgba(244, 122, 0, 0.18), transparent 34%),
        linear-gradient(135deg, #191a1d, #050506);
}

.sports-carousel-control {
    top: auto;
    bottom: 70px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    opacity: 1;
    transition: 0.25s ease;
}

.sports-carousel-control:hover {
    border-color: var(--orange);
    background: var(--orange);
}

.carousel-control-prev {
    right: auto;
    left: calc((100% - 1320px) / 2);
}

.carousel-control-next {
    right: auto;
    left: calc((100% - 1320px) / 2 + 54px);
}

.sports-indicators {
    right: auto;
    bottom: 81px;
    left: calc((100% - 1320px) / 2 + 118px);
    justify-content: flex-start;
    margin: 0;
}

.sports-indicators [data-bs-target] {
    width: 22px;
    height: 3px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
}

.sports-indicators .active {
    width: 42px;
    background: var(--orange);
}

.hero-bottom-bar {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 6, 0.75);
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 44px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: rgba(244, 122, 0, 0.14);
    color: var(--orange);
    font-size: 15px;
}

.hero-stat>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hero-stat small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
}

.hero-stat strong {
    margin-top: 3px;
    color: var(--white);
    font-size: 12px;
}

/* Sections */

.content-section {
    position: relative;
    padding: 100px 0;
}

.news-section {
    background: var(--off-white);
}

.events-section {
    background: var(--white);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 800;
}

.section-heading h2,
.contact-content h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(31px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.25;
}

.section-heading h2 strong,
.contact-content h2 strong {
    color: var(--orange);
}

.section-heading p {
    margin: 9px 0 0;
    color: var(--gray);
    font-size: 13px;
}

.heading-decoration {
    color: rgba(10, 10, 11, 0.055);
    font-size: 88px;
    font-weight: 900;
    line-height: 0.75;
}

.sports-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sports-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.sports-card-image {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background: var(--black-card);
}

.sports-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sports-card:hover .sports-card-image img {
    transform: scale(1.06);
}

.sports-card-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 52%);
    content: "";
}

.card-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(244, 122, 0, 0.22), transparent 35%),
        var(--black-card);
    color: rgba(255, 255, 255, 0.16);
    font-size: 64px;
}

.card-category {
    position: absolute;
    z-index: 2;
    top: 15px;
    right: 15px;
    padding: 5px 11px;
    border-radius: 30px;
    background: var(--orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
}

.card-arrow {
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: 15px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    font-size: 14px;
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.sports-card:hover .card-arrow {
    border-color: var(--orange);
    background: var(--orange);
}

.sports-card-body {
    padding: 21px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 9px;
    font-weight: 600;
}

.card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.card-meta i {
    color: var(--orange);
}

.sports-card h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.55;
}

.sports-card h3 a {
    color: var(--black);
    transition: color 0.25s ease;
}

.sports-card h3 a:hover {
    color: var(--orange-dark);
}

.sports-card-body p {
    min-height: 48px;
    margin: 10px 0 17px;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.8;
}

.card-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--black);
    font-size: 11px;
    font-weight: 800;
}

.card-more i {
    color: var(--orange);
    transition: transform 0.25s ease;
}

.card-more:hover {
    color: var(--orange-dark);
}

.card-more:hover i {
    transform: translateX(-5px);
}

.event-date {
    position: absolute;
    z-index: 3;
    top: 15px;
    right: 15px;
    display: flex;
    width: 56px;
    min-height: 61px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--orange);
    color: var(--white);
    line-height: 1;
    box-shadow: 0 8px 22px rgba(244, 122, 0, 0.3);
}

.event-date strong {
    font-size: 22px;
    font-weight: 900;
}

.event-date span {
    margin-top: 5px;
    font-size: 9px;
    font-weight: 700;
}

.empty-content-card {
    padding: 60px 25px;
    border: 1px dashed rgba(10, 10, 11, 0.15);
    border-radius: var(--radius-md);
    background: var(--white);
    text-align: center;
}

.empty-content-card>span {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 50%;
    background: rgba(244, 122, 0, 0.1);
    color: var(--orange);
    font-size: 28px;
}

.empty-content-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.empty-content-card p {
    margin: 8px 0 0;
    color: var(--gray);
    font-size: 12px;
}

/* Support Banner */

.support-banner-section {
    position: relative;
    z-index: 2;
    padding: 15px 0;
    background: var(--off-white);
}

.support-banner {
    position: relative;
    display: flex;
    min-height: 205px;
    overflow: hidden;
    align-items: center;
    gap: 28px;
    padding: 42px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(244, 122, 0, 0.28), transparent 32%),
        var(--black);
    color: var(--white);
    box-shadow: var(--shadow-dark);
}

.support-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    font-size: 31px;
    transform: rotate(-9deg);
}

.support-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.support-content>span {
    color: var(--orange-light);
    font-size: 10px;
    font-weight: 800;
}

.support-content h2 {
    margin: 5px 0;
    font-size: clamp(25px, 4vw, 39px);
    font-weight: 900;
}

.support-content h2 strong {
    color: var(--orange);
}

.support-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
    font-size: 12px;
}

.support-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    transition: 0.25s ease;
}

.support-button:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

/* Contact */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(244, 122, 0, 0.17), transparent 32%),
        var(--black);
    color: var(--white);
}

.contact-background-text {
    position: absolute;
    top: 50%;
    left: -35px;
    color: rgba(255, 255, 255, 0.025);
    font-size: clamp(80px, 13vw, 190px);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transform: translateY(-50%) rotate(-4deg);
}

.section-label-dark {
    color: var(--orange-light);
}

.contact-content h2 {
    color: var(--white);
}

.contact-content>p {
    max-width: 480px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.9;
}

.contact-features {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 25px;
}

.contact-features>div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
}

.contact-features i {
    color: var(--orange);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.social-card {
    display: flex;
    min-height: 105px;
    align-items: center;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.social-card:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
    transform: translateY(-4px);
}

.social-card-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 21px;
}

.social-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    line-height: 1.3;
}

.social-card-content small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
}

.social-card:hover .social-card-content small {
    color: rgba(255, 255, 255, 0.75);
}

.social-card-content strong {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 800;
}

.social-card-arrow {
    font-size: 13px;
}

.empty-social-card {
    padding: 45px 25px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.empty-social-card>i {
    color: var(--orange);
    font-size: 32px;
}

.empty-social-card h3 {
    margin: 14px 0 5px;
    font-size: 17px;
    font-weight: 800;
}

.empty-social-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

/* Footer */

.site-footer {
    position: relative;
    background: #050506;
    color: var(--white);
}

.footer-top-line {
    height: 4px;
    background:
        linear-gradient(90deg,
            var(--orange) 0 30%,
            transparent 30% 35%,
            var(--orange) 35% 60%,
            transparent 60% 65%,
            var(--orange) 65% 100%);
}

.footer-main {
    padding: 72px 0 52px;
}

.footer-brand>p {
    max-width: 430px;
    margin: 19px 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.9;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-socials a {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: 0.25s ease;
}

.footer-socials a:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-column h3 {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 11px;
    font-size: 14px;
    font-weight: 800;
}

.footer-column h3::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: var(--orange);
    content: "";
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li+li {
    margin-top: 10px;
}

.footer-column li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    transition: 0.25s ease;
}

.footer-column li a i {
    color: var(--orange);
    font-size: 9px;
}

.footer-column li a:hover {
    color: var(--white);
    transform: translateX(-4px);
}

.footer-contact-text {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
    line-height: 1.8;
}

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 9px 17px;
    border-radius: 30px;
    background: var(--orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    transition: 0.25s ease;
}

.footer-contact-button:hover {
    background: var(--white);
    color: var(--black);
}

.footer-bottom {
    display: flex;
    min-height: 65px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
}

.footer-bottom strong {
    color: var(--white);
}

.footer-signature i {
    margin-right: 4px;
    color: var(--orange);
}

/* Scroll top */

.scroll-top {
    position: fixed;
    z-index: 1030;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(244, 122, 0, 0.3);
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.25s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--black);
}

/* Responsive */

@media (min-width: 992px) {
    .sports-offcanvas {
        position: static;
        z-index: auto;
        display: flex !important;
        width: auto !important;
        height: auto !important;
        flex-grow: 1;
        visibility: visible !important;
        border: 0;
        background: transparent;
        transform: none !important;
    }

    .sports-offcanvas .offcanvas-header {
        display: none;
    }

    .sports-offcanvas .offcanvas-body {
        display: flex;
        align-items: center;
        padding: 0;
        overflow: visible;
    }
}

@media (max-width: 1399.98px) {
    .carousel-control-prev {
        left: 42px;
    }

    .carousel-control-next {
        left: 96px;
    }

    .sports-indicators {
        left: 160px;
    }
}

@media (max-width: 991.98px) {
    .sports-navbar {
        min-height: 70px;
    }

    .sports-offcanvas {
        width: min(340px, 88vw) !important;
    }

    .sports-offcanvas .offcanvas-body {
        display: flex;
        flex-direction: column;
        padding: 20px;
    }

    .sports-offcanvas .navbar-nav {
        width: 100%;
        align-items: stretch !important;
    }

    .sports-navbar .nav-link {
        margin: 0;
        padding: 13px 4px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .sports-navbar .nav-link::after {
        display: none;
    }

    .navbar-actions {
        width: 100%;
        margin-top: 22px;
    }

    .navbar-cta {
        width: 100%;
    }

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-slide-link,
    .hero-empty,
    .hero-content-container {
        min-height: 620px;
    }

    .hero-content,
    .hero-empty-content {
        max-width: 560px;
    }

    .support-banner {
        flex-wrap: wrap;
    }

    .support-content {
        flex: 1 1 calc(100% - 110px);
    }

    .support-button {
        margin-right: 106px;
    }

    .contact-content {
        max-width: 650px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 13px;
    }

    .brand-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
        font-size: 18px;
    }

    .brand-content strong {
        font-size: 14px;
    }

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item,
    .hero-slide-link,
    .hero-empty,
    .hero-content-container {
        min-height: 590px;
    }

    .hero-content-container {
        align-items: flex-end;
        padding-top: 100px;
        padding-bottom: 120px;
    }

    .hero-empty {
        align-items: flex-end;
        padding-bottom: 120px;
    }

    .hero-content h1,
    .hero-empty h1 {
        font-size: 44px;
    }

    .hero-content p,
    .hero-empty p {
        font-size: 13px;
    }

    .hero-bottom-bar {
        position: absolute;
    }

    .hero-stats {
        min-height: 68px;
        justify-content: space-between;
        gap: 12px;
    }

    .sports-carousel-control {
        display: none;
    }

    .sports-indicators {
        right: 15px;
        bottom: 88px;
        left: auto;
    }

    .content-section,
    .contact-section {
        padding: 72px 0;
    }

    .section-heading {
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .section-heading h2,
    .contact-content h2 {
        font-size: 32px;
    }

    .heading-decoration {
        display: none;
    }

    .sports-card-image {
        height: 220px;
    }

    .support-banner {
        display: block;
        padding: 28px;
    }

    .support-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 18px;
        font-size: 25px;
    }

    .support-content h2 {
        font-size: 27px;
    }

    .support-button {
        margin-top: 22px;
        margin-right: 0;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding: 55px 0 40px;
    }

    .footer-bottom {
        min-height: 85px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 479.98px) {

    .hero-content h1,
    .hero-empty h1 {
        font-size: 38px;
    }

    .hero-kicker {
        font-size: 10px;
    }

    .hero-button {
        min-height: 44px;
        margin-top: 23px;
        padding: 9px 18px;
        font-size: 11px;
    }

    .hero-stat-icon {
        width: 32px;
        height: 32px;
    }

    .hero-stat strong {
        font-size: 10px;
    }

    .section-heading h2,
    .contact-content h2 {
        font-size: 28px;
    }

    .sports-card-image {
        height: 205px;
    }

    .sports-card-body {
        padding: 18px;
    }

    .social-card {
        min-height: 92px;
        padding: 15px;
    }
}

/* Swiper Hero */

.hero-swiper {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
}

.hero-swiper .swiper-wrapper {
    min-height: 680px;
}

.hero-swiper .swiper-slide {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--black);
}

.hero-swiper .hero-slide-link {
    position: relative;
    display: block;
    min-height: 680px;
    overflow: hidden;
}

.hero-swiper .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.hero-swiper .swiper-slide-active .hero-image {
    transform: scale(1);
}

.hero-swiper .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease 0.2s,
        transform 0.7s ease 0.2s;
}

.hero-swiper .swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Swiper navigation */

.hero-swiper-button {
    position: absolute;
    z-index: 15;
    bottom: 88px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.38);
    color: var(--white);
    font-size: 15px;
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.hero-swiper-button:hover {
    border-color: var(--orange);
    background: var(--orange);
}

.hero-swiper-prev {
    left: max(42px, calc((100vw - 1320px) / 2));
}

.hero-swiper-next {
    left: max(96px, calc((100vw - 1320px) / 2 + 54px));
}

/* Swiper pagination */

.hero-swiper-pagination {
    position: absolute !important;
    z-index: 15;
    right: auto !important;
    bottom: 103px !important;
    left: max(160px, calc((100vw - 1320px) / 2 + 118px)) !important;
    display: flex;
    width: auto !important;
    align-items: center;
    gap: 6px;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 3px;
    margin: 0 !important;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    width: 42px;
    background: var(--orange);
}

/* Swiper fade fix */

.hero-swiper.swiper-fade .swiper-slide {
    pointer-events: none;
}

.hero-swiper.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

@media (max-width: 991.98px) {

    .hero-swiper,
    .hero-swiper .swiper-wrapper,
    .hero-swiper .swiper-slide,
    .hero-swiper .hero-slide-link {
        min-height: 620px;
    }
}

@media (max-width: 767.98px) {

    /* Navbar */
    .sports-navbar {
        min-height: 60px;
        padding: 8px 0;
    }

    .site-header {
        height: 60px;
    }

    /* Hero */

    .hero-section {
        margin-top: 60px;
    }

    .hero-swiper,
    .hero-swiper .swiper-wrapper,
    .hero-swiper .swiper-slide,
    .hero-swiper .hero-slide-link,
    .hero-empty,
    .hero-content-container {
        height: 300px;
        min-height: 300px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-content-container {
        align-items: flex-end;
        padding-top: 60px;
        padding-bottom: 65px;
    }

    .hero-content h1,
    .hero-empty h1 {
        font-size: 30px;
    }

    .hero-content p,
    .hero-empty p {
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.7;
    }

    .hero-button {
        margin-top: 16px;
        min-height: 38px;
        padding: 8px 16px;
        font-size: 11px;
    }

    /* أخفي شريط الإحصائيات لأنه يأخذ مساحة كبيرة */
    .hero-bottom-bar {
        display: none;
    }

    /* Pagination */
    .hero-swiper-pagination {
        bottom: 18px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }

    /* الأسهم */
    .hero-swiper-button {
        display: none;
    }
}


/* Content Swipers */

.content-swiper {
    position: relative;
    overflow: hidden;
    padding-bottom: 64px;
}

.content-swiper .swiper-slide {
    height: auto;
}

.content-swiper .sports-card {
    height: 100%;
}

.content-swiper-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.content-swiper-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(10, 10, 11, 0.12);
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    transition: 0.25s ease;
}

.content-swiper-button:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

.content-swiper-button.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.content-swiper-pagination {
    position: static !important;
    display: flex;
    width: auto !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.content-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: rgba(10, 10, 11, 0.2);
    opacity: 1;
    transition: 0.25s ease;
}

.content-swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 10px;
    background: var(--orange);
}

@media (max-width: 767.98px) {
    .content-swiper {
        padding-bottom: 54px;
        overflow: visible;
    }

    .content-swiper-controls {
        gap: 10px;
    }

    .content-swiper-button {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        background: rgba(10, 10, 11, 0.98);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        backdrop-filter: blur(12px);
    }

    .site-header.is-scrolled {
        background: rgba(10, 10, 11, 0.98);
    }
}

@media (max-width: 767.98px) {
    .site-header {
        height: 60px;
        background: #0a0a0b;
    }

    .sports-navbar {
        min-height: 60px;
        padding: 8px 0;
        background: transparent;
    }

    .hero-section {
        margin-top: 60px;
    }
}

/* Mobile offcanvas fix */
@media (max-width: 991.98px) {
    .sports-offcanvas {
        width: min(340px, 88vw) !important;
        height: 100vh !important;
        background: #0a0a0b !important;
        background-color: #0a0a0b !important;
        color: #ffffff !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.45) !important;
        opacity: 1 !important;
        backdrop-filter: none !important;
    }

    .sports-offcanvas.show,
    .sports-offcanvas.showing {
        background: #0a0a0b !important;
        opacity: 1 !important;
    }

    .sports-offcanvas .offcanvas-header {
        min-height: 72px;
        padding: 16px 18px;
        background: #0a0a0b !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sports-offcanvas .offcanvas-body {
        display: flex;
        flex-direction: column;
        padding: 18px;
        overflow-y: auto;
        background: #0a0a0b !important;
    }

    .sports-offcanvas .navbar-nav {
        width: 100%;
    }

    .sports-offcanvas .nav-link {
        display: flex;
        align-items: center;
        min-height: 46px;
        margin: 0;
        padding: 12px 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 13px;
        font-weight: 600;
    }

    .sports-offcanvas .nav-link:hover,
    .sports-offcanvas .nav-link.active {
        color: #ffffff !important;
    }

    .sports-offcanvas .nav-link.active {
        padding-right: 14px !important;
        border-radius: 8px;
        border-bottom-color: transparent;
        background: rgba(244, 122, 0, 0.14);
    }

    .sports-offcanvas .navbar-actions {
        width: 100%;
        margin-top: 22px;
    }

    .sports-offcanvas .navbar-cta {
        width: 100%;
        background: #f47a00;
        color: #ffffff;
    }

    .sports-offcanvas .offcanvas-footer {
        margin-top: auto;
        padding: 18px;
        background: #050506 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .offcanvas-backdrop.show {
        opacity: 0.72 !important;
        background-color: #000000 !important;
    }
}