:root {
    --brand-orange: #f05a27;
    --brand-darkorange: #e04d1f;
    --brand-red: #dcb158;
    --brand-dark: #1a1a2e;
    --brand-panel: #ffffff;
    --brand-panel-hover: #fef3e8;
    --body-bg: #f5f5f4;
    --body-muted: #4a5568;
    --body-soft: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--body-bg);
    color: var(--brand-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-heading {
    font-family: 'Anton', sans-serif;
    letter-spacing: .02em;
}

.site-container {
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}

.text-brand-red {
    color: var(--brand-red) !important;
}

.text-brand-dark {
    color: var(--brand-dark) !important;
}

.bg-brand-orange {
    background-color: var(--brand-orange) !important;
}

.bg-brand-red {
    background-color: var(--brand-red) !important;
}

.bg-brand-dark {
    background-color: var(--brand-dark) !important;
}

.border-brand-orange {
    border-color: var(--brand-orange) !important;
}

.border-soft {
    border-color: rgba(26, 26, 46, 0.2) !important;
}

.text-soft {
    color: var(--body-soft) !important;
}

.text-muted-custom {
    color: var(--body-muted) !important;
}

.tracking-wide-2 {
    letter-spacing: .2em;
}

.tracking-wide-3 {
    letter-spacing: .3em;
}

.tracking-wide-4 {
    letter-spacing: .4em;
}

.leading-tight-9 {
    line-height: .9;
}

.leading-none {
    line-height: 1;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    color: transparent;
}

.clip-slant {
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.clip-slant-reverse {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

.backdrop-blur-lg {
    backdrop-filter: blur(16px);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background: var(--body-bg);
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: grid;
}

.slide-dot {
    transition: all .3s ease;
}

.slide-dot.active {
    background: var(--brand-orange) !important;
    width: 2rem !important;
}

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

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px 0 rgba(255, 107, 26, 0.4);
    }
    50% {
        opacity: .8;
        box-shadow: 0 0 30px 5px rgba(255, 107, 26, 0.6);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slowZoom {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.12);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-slide-left {
    animation: slideLeft 20s linear infinite;
}

.animate-slow-zoom {
    animation: slowZoom 20s ease-out forwards;
}

.hero-slide.active .slide-content {
    animation: slideInLeft .6s ease forwards;
}

.hero-bg-overlay-right {
    background: linear-gradient(to right, rgba(245, 245, 244, .97), rgba(245, 245, 244, .85), rgba(245, 245, 244, .3));
}

.hero-bg-overlay-top {
    background: linear-gradient(to top, rgba(245, 245, 244, .95), transparent, rgba(245, 245, 244, .2));
}

.hero-glow-a,
.hero-glow-b {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
}

.hero-glow-a {
    top: 25%;
    left: 25%;
    width: 800px;
    height: 800px;
    background: rgba(220, 177, 88, .12);
    filter: blur(120px);
}

.hero-glow-b {
    right: 0;
    bottom: 0;
    width: 600px;
    height: 600px;
    background: rgba(240, 90, 39, .08);
    filter: blur(100px);
}

.hero-heading-sm {
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
}

.hero-heading-lg {
    font-size: clamp(3.5rem, 8vw, 6.875rem);
    line-height: .9;
    text-transform: uppercase;
}

.gradient-text-orange {
    background: linear-gradient(to right, var(--brand-orange), var(--brand-red), var(--brand-orange));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-mixed {
    background: linear-gradient(to right, var(--brand-orange), #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-card {
    backdrop-filter: blur(24px);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 28rem;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(220, 177, 88, .4);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}

.hero-card-topline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: .25rem;
    background: linear-gradient(to right, var(--brand-orange), var(--brand-red));
}

.countdown-box {
    border-radius: 1rem;
    padding: .75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f4;
    border: 1px solid rgba(220, 177, 88, .3);
}

.countdown-box.active {
    background: rgba(240, 90, 39, .12);
    border-color: rgba(240, 90, 39, .4);
}

.slider-controls {
    position: absolute;
    left: 50%;
    bottom: 6rem;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(26, 26, 46, .2);
    color: var(--brand-dark);
}

.ticker-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-block: .75rem;
    overflow: hidden;
    border-top: 1px solid var(--brand-red);
    border-bottom: 1px solid var(--brand-red);
    background: var(--brand-orange);
    z-index: 20;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    width: 200%;
    animation: slideLeft 20s linear infinite;
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-inline: 1rem;
}

.section-title {
    font-size: clamp(2.75rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 1;
}

.results-card {
    min-width: 380px;
    width: 380px;
    height: auto;
    min-height: 0;
    align-self: flex-start;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    border: 1px solid rgba(220, 177, 88, .2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.results-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(240, 90, 39, .2), transparent);
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}

.results-card:hover::before {
    opacity: 1;
}

.match-team-badge {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,.1);
}

.match-team-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.group-tab,
.lb-filter {
    border-width: 2px;
    border-style: solid;
    transition: all .2s ease;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.active-tab,
.active-filter {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: #fff !important;
}

.group-table.d-none-custom {
    display: none;
}

.news-card,
.leaderboard-card,
.table-shell {
    background: #fff;
    border: 1px solid rgba(220, 177, 88, .2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    border-radius: 1rem;
    overflow: hidden;
}

.footer-social {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 90, 39, 0.12);
    color: var(--brand-orange);
    border: 1px solid rgba(240, 90, 39, 0.24);
    transition: all .25s ease;
}

.footer-social:hover {
    background: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
    transform: translateY(-2px);
}

.footer-social i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
    color: var(--brand-orange);
}

.footer-social i::before {
    color: var(--brand-orange);
}

.footer-social:hover i,
.footer-social:hover i::before {
    color: #fff;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .hero-slide.active {
        display: block;
    }

    .slider-controls {
        bottom: 4.5rem;
    }

    .hero-card {
        margin-top: 3rem;
    }
}

.cta-section {
    background: linear-gradient(135deg, #f05a27 0%, #e04d1f 100%);
}

/* Overlay pattern */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    mix-blend-mode: multiply;
}

/* Title */
.cta-title {
    color: #ffffff;
    font-family: "Bebas Neue", 'Anton', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.8rem;
    }
}

/* Text */
.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Button */
.cta-btn {
    background: #ffffff;
    color: #f05a27;
    padding: 14px 32px;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: "Bebas Neue", 'Anton', sans-serif;
}

.cta-btn:hover {
    background: #ffece6;
    color: #e04d1f;
}
