/*
Theme Name: Bad Boys Toy
Theme URI: https://badboystoy.nl
Description: Custom thema voor tractorpullingteam Bad Boys Toy, de eerste V8 prostock in Europa.
Version: 3.8.2
Author: Webhouse B.V.
Author URI: https://www.webhouse.nl
Text Domain: badboystoy
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
    --bbt-black: #0a0a0a;
    --bbt-dark: #111111;
    --bbt-darker: #0d0d0d;
    --bbt-card: #161616;
    --bbt-border: #2a2a2a;
    --bbt-red: #e2001a;
    --bbt-red-dark: #b80015;
    --bbt-red-glow: rgba(226, 0, 26, 0.4);
    --bbt-orange: #ff6600;
    --bbt-white: #ffffff;
    --bbt-gray: #8a8a8a;
    --bbt-light: #cccccc;
    --bbt-font-heading: 'Anton', sans-serif;
    --bbt-font-body: 'Inter', sans-serif;
    --bbt-font-accent: 'Saira Condensed', sans-serif;
    --bbt-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--bbt-font-body);
    background-color: var(--bbt-black);
    color: var(--bbt-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bbt-font-heading);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

a {
    color: var(--bbt-red);
    text-decoration: none;
    transition: var(--bbt-transition);
}

a:hover {
    color: var(--bbt-orange);
}

img {
    max-width: 100%;
    height: auto;
}

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

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000;
    background: var(--bbt-red);
    color: var(--bbt-white);
    padding: 0.75rem 1.25rem;
}

.full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.bbt-section {
    padding: 5rem 0;
    position: relative;
}

.bbt-section-dark {
    background-color: var(--bbt-dark);
}

.bbt-section-darker {
    background-color: var(--bbt-black);
}

.section-label {
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bbt-red);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--bbt-white);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--bbt-red), var(--bbt-orange));
    margin-top: 1rem;
    border-radius: 2px;
}

.section-title-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    color: var(--bbt-gray);
    max-width: 620px;
    font-size: 1.0625rem;
}

.section-title-center + .section-intro {
    margin-left: auto;
    margin-right: auto;
}

.bbt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--bbt-font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--bbt-transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bbt-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: left 0.4s ease;
}

.bbt-btn:hover::before {
    left: 0;
}

.bbt-btn-primary {
    background: var(--bbt-red);
    color: var(--bbt-white);
}

.bbt-btn-primary::before {
    background: var(--bbt-red-dark);
}

.bbt-btn-primary:hover {
    color: var(--bbt-white);
    box-shadow: 0 0 30px var(--bbt-red-glow);
}

.bbt-btn-outline {
    background: transparent;
    color: var(--bbt-white);
    border: 2px solid var(--bbt-white);
}

.bbt-btn-outline::before {
    background: var(--bbt-white);
}

.bbt-btn-outline:hover {
    color: var(--bbt-black);
}

.bbt-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.25rem 0;
    transition: var(--bbt-transition);
    background: transparent;
}

.bbt-navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--bbt-border);
}

.bbt-navbar .navbar-brand img {
    height: 46px;
    width: auto;
    transition: var(--bbt-transition);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.bbt-navbar.scrolled .navbar-brand img {
    height: 36px;
}

.bbt-navbar .nav-link {
    font-family: var(--bbt-font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bbt-white);
    padding: 0.5rem 1rem !important;
    position: relative;
}

.bbt-navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--bbt-red);
    transition: width 0.3s ease;
}

.bbt-navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.15em;
    border-top-color: var(--bbt-white);
    border-right-color: transparent;
    border-left-color: transparent;
    background: none;
    width: auto;
    height: auto;
    position: static;
    transform: none;
}

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

.bbt-navbar .nav-link:hover::before,
.bbt-navbar .nav-link.active::before {
    width: 70%;
}

.bbt-navbar .navbar-toggler {
    border: none;
    padding: 0;
    color: var(--bbt-white);
    font-size: 1.75rem;
}

.bbt-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.bbt-navbar .dropdown-menu {
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bbt-border);
    border-radius: 0;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.bbt-navbar .dropdown-item {
    font-family: var(--bbt-font-accent);
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bbt-light);
    padding: 0.625rem 1.25rem;
}

.bbt-navbar .dropdown-item.active,
.bbt-navbar .dropdown-item:active {
    background: transparent;
    color: var(--bbt-red);
}

.bbt-navbar .dropdown-item:hover,
.bbt-navbar .dropdown-item:focus {
    background: var(--bbt-red);
    color: var(--bbt-white);
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-wrap video,
.hero-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 72%, var(--bbt-black) 100%);
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.035) 2px, rgba(0, 0, 0, 0.035) 4px);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 620px;
    max-width: 90vw;
    background: radial-gradient(circle, rgba(226, 0, 26, 0.25) 0%, transparent 65%);
    z-index: 2;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 1rem;
    max-width: 900px;
}

.hero-subtitle {
    font-family: var(--bbt-font-accent);
    font-size: clamp(1.125rem, 3vw, 1.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--bbt-white);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.hero-title-logo {
    margin-bottom: 1.5rem;
    line-height: 1;
}

.hero-title-logo img {
    width: min(82vw, 720px);
    height: auto;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.6)) drop-shadow(0 20px 42px rgba(0, 0, 0, 0.75));
    opacity: 0;
    transform: translateY(30px) scale(0.94);
    animation: heroLogoIn 0.9s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.4s;
}

@keyframes heroLogoIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
    font-family: var(--bbt-font-accent);
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    color: var(--bbt-light);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 0.9s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeUp 0.8s ease forwards 1.2s;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: heroFadeUp 0.8s ease forwards 1.5s;
    cursor: pointer;
}

.hero-scroll-icon {
    display: block;
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.hero-scroll-icon::after {
    content: '';
    display: block;
    width: 4px;
    height: 8px;
    background: var(--bbt-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

.hero-scroll span:last-child {
    font-family: var(--bbt-font-accent);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

.engine-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--bbt-font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bbt-white);
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--bbt-red);
    padding: 0.8rem 1.75rem;
    cursor: pointer;
    transition: var(--bbt-transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.engine-btn:hover {
    background: var(--bbt-red);
    box-shadow: 0 0 40px var(--bbt-red-glow);
    color: var(--bbt-white);
}

.engine-btn .rev-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.engine-btn.revving .rev-icon {
    animation: revSpin 0.4s linear infinite;
}

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

.marquee-wrap {
    overflow: hidden;
    padding: 2.5rem 0;
}

.marquee-band {
    background: var(--bbt-red);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-2deg) scale(1.05);
}

.marquee-band.alt {
    background: var(--bbt-white);
    transform: rotate(2deg) scale(1.05);
    margin-top: -2.5rem;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-band.alt .marquee-track {
    animation-direction: reverse;
    animation-duration: 34s;
}

.marquee-track span {
    font-family: var(--bbt-font-heading);
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    text-transform: uppercase;
    color: var(--bbt-white);
    padding: 0 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
}

.marquee-band.alt .marquee-track span {
    color: var(--bbt-black);
}

.marquee-track span i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.marquee-band.alt .marquee-track span i {
    color: var(--bbt-red);
}

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

.countdown-section {
    position: relative;
    padding: 4rem 0;
    background: var(--bbt-dark);
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bbt-red), transparent);
}

.countdown-event-name {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--bbt-white);
    margin-bottom: 0.5rem;
}

.countdown-event-info {
    font-family: var(--bbt-font-accent);
    font-size: 1.0625rem;
    color: var(--bbt-gray);
    margin-bottom: 2rem;
}

.countdown-event-info i {
    color: var(--bbt-red);
    margin-right: 0.25rem;
}

.countdown-wrap {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    font-family: var(--bbt-font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--bbt-white);
    line-height: 1;
    display: block;
}

.countdown-number::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bbt-red), var(--bbt-orange));
    margin-top: 0.5rem;
    border-radius: 2px;
}

.countdown-label {
    font-family: var(--bbt-font-accent);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bbt-gray);
    margin-top: 0.5rem;
    display: block;
}

.countdown-link {
    margin-top: 2rem;
}

.power-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: var(--bbt-black);
}

.power-bg-text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    font-family: var(--bbt-font-heading);
    font-size: clamp(8rem, 25vw, 22rem);
    color: rgba(255, 255, 255, 0.022);
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.power-content {
    position: relative;
    z-index: 1;
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-right: 4px solid var(--bbt-red);
    border-bottom: 4px solid var(--bbt-red);
    pointer-events: none;
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease;
    will-change: transform;
}

.tilt-card .tilt-inner {
    transform: translateZ(35px);
}

.reveal-mask {
    overflow: hidden;
    display: inline-block;
}

.reveal-mask > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.scroll-reveal.revealed .reveal-mask > span {
    transform: translateY(0);
}

.lineup-section {
    background: var(--bbt-black);
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.lineup-swiper {
    padding: 1.75rem 0;
    overflow: visible;
}

.lineup-swiper .swiper-wrapper {
    align-items: center;
}

.lineup-swiper .swiper-slide {
    width: 260px;
}

.lineup-card {
    width: 260px;
    height: 380px;
    position: relative;
    transform: skewX(-8deg);
    overflow: hidden;
    border: 3px solid var(--bbt-red);
    transition: var(--bbt-transition);
}

.lineup-swiper .swiper-slide:nth-child(even) .lineup-card {
    transform: skewX(-8deg) translateY(22px);
}

.lineup-card:hover {
    border-color: var(--bbt-orange);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lineup-card-media {
    position: absolute;
    inset: -2px -30px;
    transform: skewX(8deg);
}

.lineup-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lineup-card:hover .lineup-card-media img {
    transform: scale(1.08);
}

.lineup-card-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 1.25rem;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.96), transparent);
    z-index: 2;
    transform: skewX(8deg);
}

.lineup-card-name h3 {
    font-size: 1.3rem;
    color: var(--bbt-white);
    margin: 0;
    line-height: 1.1;
}

.lineup-card-name span {
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bbt-red);
}

.stats-band {
    background: linear-gradient(rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.88)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e2001a' fill-opacity='0.05'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-band::before,
.stats-band::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--bbt-red-glow), transparent 70%);
    opacity: 0.3;
    filter: blur(40px);
}

.stats-band::before { top: -100px; left: -100px; }
.stats-band::after { bottom: -100px; right: -100px; }

.glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bbt-red), transparent);
    opacity: 0.6;
}

.big-stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

.big-stat-number {
    font-family: var(--bbt-font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    background: linear-gradient(180deg, var(--bbt-white), var(--bbt-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.big-stat-label {
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--bbt-red);
    margin-top: 0.5rem;
    display: block;
}

.specs-card {
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: var(--bbt-transition);
    height: 100%;
}

.specs-card:hover {
    border-color: var(--bbt-red);
    transform: translateY(-4px);
}

.specs-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bbt-red), var(--bbt-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--bbt-white);
}

.specs-card-value {
    font-family: var(--bbt-font-heading);
    font-size: 1.85rem;
    color: var(--bbt-red);
    display: block;
    line-height: 1.1;
}

.specs-card-title {
    font-size: 1.05rem;
    color: var(--bbt-white);
    margin-top: 0.35rem;
}

.specs-card-desc {
    font-size: 0.9375rem;
    color: var(--bbt-gray);
    margin: 0.5rem 0 0;
}

.spec-hotspot-wrap {
    position: relative;
    overflow: visible;
}

.spec-hotspot-wrap.reveal-done {
    clip-path: none !important;
}

.spec-hotspot-wrap > img {
    width: 100%;
    display: block;
}

.spec-hotspot {
    position: absolute;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
}

.spec-hotspot-dot {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--bbt-red);
    border: 2px solid var(--bbt-white);
}

.spec-hotspot-dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--bbt-red);
    animation: hotspotPulse 1.8s ease-out infinite;
}

@keyframes hotspotPulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.spec-hotspot-tip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bbt-card);
    border: 1px solid var(--bbt-red);
    padding: 0.75rem 1rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: var(--bbt-transition);
    z-index: 3;
}

.spec-hotspot:hover .spec-hotspot-tip,
.spec-hotspot:focus-within .spec-hotspot-tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.spec-hotspot-tip h5 {
    font-size: 1rem;
    color: var(--bbt-white);
    margin: 0 0 0.25rem;
}

.spec-hotspot-tip span {
    font-family: var(--bbt-font-accent);
    font-size: 1.125rem;
    color: var(--bbt-red);
    font-weight: 700;
}

.spec-hotspot:hover,
.spec-hotspot:focus-within {
    z-index: 5;
}

.spec-hotspot.tip-below .spec-hotspot-tip {
    bottom: auto;
    top: calc(100% + 12px);
    transform: translateX(-50%) translateY(-10px);
}

.spec-hotspot.tip-below:hover .spec-hotspot-tip,
.spec-hotspot.tip-below:focus-within .spec-hotspot-tip {
    transform: translateX(-50%) translateY(0);
}

.spec-hotspot.tip-left .spec-hotspot-tip {
    left: -6px;
    transform: translateY(10px);
}

.spec-hotspot.tip-right .spec-hotspot-tip {
    left: auto;
    right: -6px;
    transform: translateY(10px);
}

.spec-hotspot.tip-left.tip-below .spec-hotspot-tip,
.spec-hotspot.tip-right.tip-below .spec-hotspot-tip {
    transform: translateY(-10px);
}

.spec-hotspot.tip-left:hover .spec-hotspot-tip,
.spec-hotspot.tip-left:focus-within .spec-hotspot-tip,
.spec-hotspot.tip-right:hover .spec-hotspot-tip,
.spec-hotspot.tip-right:focus-within .spec-hotspot-tip {
    transform: none;
}

.spec-hotspot-tip.has-photo {
    width: 260px;
    min-width: 0;
    padding: 0 0 0.85rem;
}

.spec-hotspot-tip.has-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin-bottom: 0.7rem;
}

.spec-hotspot-tip.has-photo h5,
.spec-hotspot-tip.has-photo span {
    padding: 0 1rem;
    display: block;
}

.calendar-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    margin-bottom: 1rem;
    transition: var(--bbt-transition);
    position: relative;
    overflow: hidden;
}

.calendar-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--bbt-red);
}

.calendar-item:hover {
    border-color: var(--bbt-red);
    transform: translateX(4px);
}

.calendar-date {
    text-align: center;
    min-width: 70px;
    flex-shrink: 0;
}

.calendar-date-day {
    font-family: var(--bbt-font-heading);
    font-size: 2rem;
    color: var(--bbt-white);
    line-height: 1;
    display: block;
}

.calendar-date-month {
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bbt-red);
    display: block;
    margin-top: 0.25rem;
}

.calendar-info {
    flex-grow: 1;
}

.calendar-info h4 {
    font-size: 1.2rem;
    color: var(--bbt-white);
    margin-bottom: 0.25rem;
}

.calendar-info p {
    font-size: 0.9375rem;
    color: var(--bbt-gray);
    margin-bottom: 0;
}

.calendar-info p i {
    color: var(--bbt-red);
    margin-right: 0.375rem;
}

.calendar-badge {
    font-family: var(--bbt-font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    margin-left: auto;
    flex-shrink: 0;
}

.calendar-badge-next {
    background: var(--bbt-red);
    color: var(--bbt-white);
}

.calendar-badge-done {
    background: var(--bbt-border);
    color: var(--bbt-gray);
}

.schedule {
    padding: 5rem 0;
    background: var(--bbt-darker);
    overflow: hidden;
}

.schedule-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
}

.schedule-scroll::-webkit-scrollbar {
    display: none;
}

.schedule-grid {
    --schedule-gap: 8px;
    min-width: 720px;
}

.schedule-row {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: var(--schedule-gap);
    margin-bottom: var(--schedule-gap);
}

.schedule-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--schedule-gap);
}

.schedule-block {
    position: relative;
    padding: 1.25rem 1.5rem;
    min-width: 0;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.schedule-block-span {
    grid-column: 1 / -1;
}

.schedule-block-day {
    background: var(--bbt-red);
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.schedule-day-name {
    font-size: 1.5rem;
    color: var(--bbt-white);
    margin: 0;
}

.schedule-block-fill {
    background: var(--bbt-red);
}

.schedule-block-dark {
    background: var(--bbt-card);
}

.schedule-time {
    font-family: var(--bbt-font-accent);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.schedule-block-fill .schedule-time {
    color: rgba(255, 255, 255, 0.85);
}

.schedule-block-dark .schedule-time {
    color: var(--bbt-red);
}

.schedule-event {
    font-family: var(--bbt-font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    line-height: 1.1;
    display: block;
    color: var(--bbt-white);
}

.announce {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.announce::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.94) 100%);
    z-index: 1;
}

.announce-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 5rem 1.5rem;
}

.announce-label {
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--bbt-red);
    margin-bottom: 1rem;
    display: inline-block;
}

.announce-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--bbt-white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.announce-text {
    font-size: 1.0625rem;
    color: var(--bbt-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.announce-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.news-card {
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    overflow: hidden;
    transition: var(--bbt-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: var(--bbt-red);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

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

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

.news-card-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--bbt-red);
    color: var(--bbt-white);
    font-family: var(--bbt-font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    z-index: 3;
}

.news-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    font-size: 1.25rem;
    color: var(--bbt-white);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.news-card-title a {
    color: inherit;
}

.news-card-title a:hover {
    color: var(--bbt-red);
}

.news-card-excerpt {
    font-size: 0.9375rem;
    color: var(--bbt-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--bbt-font-accent);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bbt-red);
    margin-top: 1rem;
}

.news-card-link i {
    transition: transform 0.3s ease;
}

.news-card-link:hover i {
    transform: translateX(4px);
}

.scroll-gallery {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.scroll-gallery::-webkit-scrollbar {
    display: none;
}

.scroll-gallery.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.scroll-gallery-item {
    flex: 0 0 auto;
    width: 420px;
    max-width: 80vw;
    height: 520px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
}

.scroll-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    pointer-events: none;
}

.scroll-gallery-item:hover img {
    transform: scale(1.06);
}

.scroll-gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    z-index: 3;
}

.scroll-gallery-item-content h3 {
    font-size: 1.5rem;
    color: var(--bbt-white);
    margin-bottom: 0.25rem;
}

.scroll-gallery-item-content p {
    font-family: var(--bbt-font-accent);
    font-size: 0.9375rem;
    color: var(--bbt-gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-gallery-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bbt-gray);
    margin-top: 1.5rem;
}

.scroll-gallery-hint i {
    animation: hintSlide 1.5s ease-in-out infinite;
}

@keyframes hintSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.img-reveal {
    position: relative;
}

.bbt-anim .img-reveal {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.bbt-anim .img-reveal.in,
.img-reveal.in {
    clip-path: inset(0 0 0 0);
}

.img-reveal::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 55%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateY(-170%);
    opacity: 0;
    z-index: 4;
    pointer-events: none;
    mix-blend-mode: screen;
}

.img-reveal.in::before {
    animation: imgLightSweep 1s ease-out 0.15s;
}

@keyframes imgLightSweep {
    0% { transform: translateY(-170%); opacity: 0; }
    25% { opacity: 1; }
    100% { transform: translateY(280%); opacity: 0; }
}

.promo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.promo-block {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--bbt-border);
}

.promo-block-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.promo-block::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.75) 45%, rgba(10, 10, 10, 0.35) 100%);
    transition: var(--bbt-transition);
}

.promo-block:hover .promo-block-img {
    transform: scale(1.05);
}

.promo-block-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    max-width: 62%;
}

.promo-block-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--bbt-white);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.promo-block-content p {
    font-size: 0.9375rem;
    color: var(--bbt-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-card {
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    padding: 2rem;
    transition: var(--bbt-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-card:hover {
    border-color: var(--bbt-red);
    transform: translateY(-4px);
}

.partner-card-logo {
    height: 64px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    background: #ececec;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.partner-card-name {
    font-size: 1.1rem;
    color: var(--bbt-white);
    margin-bottom: 0.5rem;
}

.partner-card-desc {
    font-size: 0.9375rem;
    color: var(--bbt-gray);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.feature-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 70vh;
}

.feature-split-media {
    position: relative;
    overflow: hidden;
    min-width: 0;
    min-height: 340px;
    background-size: cover;
    background-position: center;
}

.feature-split-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 4rem;
    background: var(--bbt-dark);
}

.sponsor-logo-marquee {
    margin-top: 2.5rem;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.sponsor-logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: sponsorLogoScroll 50s linear infinite;
}

.sponsor-logo-track:hover {
    animation-play-state: paused;
}

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

.sponsor-logo {
    flex: 0 0 auto;
    margin: 0 0.6rem;
    padding: 0.85rem 1.5rem;
    min-height: 72px;
    background: #ececec;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bbt-transition);
}

.sponsor-logo:hover {
    background: var(--bbt-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.sponsor-logo img {
    height: 44px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
}

.sponsor-logo-text {
    font-family: var(--bbt-font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #161616;
    white-space: nowrap;
}

.sponsor-section {
    padding: 3.5rem 0;
    background: var(--bbt-darker);
    border-top: 1px solid var(--bbt-border);
    overflow: hidden;
}

.sponsor-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: sponsorLogoScroll 57s linear infinite;
}

.sponsor-track:hover {
    animation-play-state: paused;
}

.sponsor-item {
    flex: 0 0 auto;
    margin: 0 0.6rem;
    padding: 0.75rem 1.5rem;
    min-height: 68px;
    min-width: 150px;
    background: #ececec;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bbt-transition);
}

.sponsor-item:hover {
    background: var(--bbt-white);
    transform: translateY(-2px);
}

.sponsor-item img {
    height: 42px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.sponsor-item-text {
    font-family: var(--bbt-font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #161616;
    white-space: nowrap;
}

.info-card {
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    padding: 2rem;
    height: 100%;
    transition: var(--bbt-transition);
}

.info-card:hover {
    border-color: var(--bbt-red);
    transform: translateY(-4px);
}

.info-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--bbt-red), var(--bbt-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--bbt-white);
    margin-bottom: 1.25rem;
}

.info-card h3 {
    font-size: 1.15rem;
    color: var(--bbt-white);
    margin-bottom: 0.6rem;
}

.info-card p {
    font-size: 0.9375rem;
    color: var(--bbt-gray);
    margin: 0;
}

.timeline {
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--bbt-red), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.25rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bbt-red);
    border: 3px solid var(--bbt-black);
}

.timeline-year {
    font-family: var(--bbt-font-accent);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--bbt-red);
    text-transform: uppercase;
}

.timeline-item h3 {
    font-size: 1.25rem;
    color: var(--bbt-white);
    margin: 0.25rem 0 0.5rem;
}

.timeline-item p {
    color: var(--bbt-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--bbt-border);
    background: var(--bbt-card);
    transition: var(--bbt-transition);
}

.video-card:hover {
    border-color: var(--bbt-red);
    transform: translateY(-4px);
}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bbt-black);
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.35);
    color: var(--bbt-white);
    font-size: 3rem;
    transition: var(--bbt-transition);
}

.video-card:hover .video-card-play {
    background: rgba(226, 0, 26, 0.45);
}

.video-card-title {
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    color: var(--bbt-white);
    margin: 0;
}

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--bbt-border);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
}

.gallery-grid-item span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem 1rem 0.9rem;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.9), transparent);
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bbt-white);
}

.product-card {
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--bbt-transition);
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--bbt-red);
    transform: translateY(-4px);
}

.product-card-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

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

.product-card:hover .product-card-media img {
    transform: scale(1.06);
}

.product-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-body h3 {
    font-size: 1.1rem;
    color: var(--bbt-white);
    margin-bottom: 0.35rem;
}

.product-price {
    font-family: var(--bbt-font-accent);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--bbt-red);
    margin-bottom: 1rem;
    display: block;
}

.link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    height: 100%;
    transition: var(--bbt-transition);
}

.link-card:hover {
    border-color: var(--bbt-red);
    transform: translateX(4px);
}

.link-card i {
    color: var(--bbt-red);
    font-size: 1.25rem;
}

.link-card h3 {
    font-size: 1.05rem;
    color: var(--bbt-white);
    margin: 0 0 0.15rem;
}

.link-card p {
    font-size: 0.875rem;
    color: var(--bbt-gray);
    margin: 0;
}

.podium-card {
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    border-top: 4px solid var(--bbt-red);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
}

.podium-place {
    font-family: var(--bbt-font-heading);
    font-size: 3rem;
    line-height: 1;
    color: var(--bbt-red);
    display: block;
}

.podium-card h3 {
    font-size: 1.15rem;
    color: var(--bbt-white);
    margin: 0.75rem 0 0.5rem;
}

.podium-card p {
    color: var(--bbt-gray);
    font-size: 0.9375rem;
    margin: 0;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th {
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bbt-red);
    text-align: left;
    padding: 0.9rem 1rem;
    border-bottom: 2px solid var(--bbt-border);
    white-space: nowrap;
}

.results-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--bbt-border);
    color: var(--bbt-light);
    font-size: 0.9375rem;
}

.results-table tr:hover td {
    background: var(--bbt-card);
    color: var(--bbt-white);
}

.bbt-form label {
    display: block;
    font-family: var(--bbt-font-accent);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bbt-light);
    margin-bottom: 0.4rem;
}

.bbt-form input[type="text"],
.bbt-form input[type="email"],
.bbt-form input[type="tel"],
.bbt-form input[type="search"],
.bbt-form textarea,
.form-control {
    width: 100%;
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    color: var(--bbt-white);
    padding: 0.75rem 1rem;
    border-radius: 0;
    font-family: var(--bbt-font-body);
}

.bbt-form input:focus,
.bbt-form textarea:focus,
.form-control:focus {
    outline: none;
    border-color: var(--bbt-red);
    background: var(--bbt-card);
    color: var(--bbt-white);
    box-shadow: none;
}

.page-header {
    padding: 10rem 0 4rem;
    background: var(--bbt-dark);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(226, 0, 26, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.page-header > .container {
    position: relative;
    z-index: 1;
}

.page-header-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--bbt-white);
    margin-bottom: 1rem;
}

.page-header-breadcrumb {
    font-family: var(--bbt-font-accent);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-header-breadcrumb a {
    color: var(--bbt-gray);
}

.page-header-breadcrumb a:hover {
    color: var(--bbt-white);
}

.page-header-breadcrumb .separator {
    color: var(--bbt-red);
    margin: 0 0.5rem;
}

.page-header-breadcrumb .current {
    color: var(--bbt-red);
}

.entry-content p {
    margin-bottom: 1.25rem;
}

.entry-content h2,
.entry-content h3 {
    color: var(--bbt-white);
    margin: 2rem 0 1rem;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.25rem 1.25rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content img {
    height: auto;
}

.entry-content blockquote {
    border-left: 4px solid var(--bbt-red);
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: var(--bbt-white);
    font-size: 1.125rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.5rem;
    margin: 0 0.2rem;
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    color: var(--bbt-light);
    font-family: var(--bbt-font-accent);
    font-weight: 600;
    transition: var(--bbt-transition);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--bbt-red);
    border-color: var(--bbt-red);
    color: var(--bbt-white);
}

.scroll-reveal {
    opacity: 1;
    transform: none;
}

.bbt-anim .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bbt-anim .scroll-reveal.revealed,
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bbt-black);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-screen.loaded {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bbt-border);
    border-top-color: var(--bbt-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--bbt-red);
    color: var(--bbt-white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 9990;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--bbt-transition);
    box-shadow: 0 4px 20px var(--bbt-red-glow);
}

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

.back-to-top:hover {
    background: var(--bbt-red-dark);
    transform: translateY(-3px);
}

.bbt-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bbt-red);
    pointer-events: none;
    z-index: 99999;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    will-change: transform;
    transition: width 0.18s ease, height 0.18s ease;
    mix-blend-mode: difference;
}

.bbt-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(226, 0, 26, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.bbt-cursor.hovering {
    width: 0;
    height: 0;
}

.bbt-cursor-ring.hovering {
    width: 70px;
    height: 70px;
    border-color: var(--bbt-red);
    background: rgba(226, 0, 26, 0.08);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
    cursor: none;
}

.drive-in {
    position: fixed;
    width: clamp(190px, 22vw, 430px);
    z-index: 60;
    pointer-events: none;
    will-change: transform;
}

.drive-in::before {
    content: '';
    position: absolute;
    left: 5%;
    right: 5%;
    top: 10%;
    bottom: 4%;
    background: radial-gradient(ellipse at center, rgba(226, 0, 26, 0.6) 0%, rgba(255, 102, 0, 0.25) 40%, rgba(226, 0, 26, 0) 70%);
    filter: blur(22px);
    z-index: -1;
    animation: tractorGlow 1s ease-in-out infinite alternate;
}

@keyframes tractorGlow {
    from { opacity: 0.2; transform: scale(0.85); }
    to { opacity: 0.95; transform: scale(1.08); }
}

.drive-in img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.55));
}

.drive-in-left {
    left: 0;
    bottom: 2%;
    transform: translateX(-130%) scaleX(-1);
}

.drive-in-right {
    right: 0;
    bottom: 18%;
    transform: translateX(130%);
}

.bbt-footer {
    background: var(--bbt-dark);
    padding-top: 0;
    position: relative;
}

.bbt-footer > .container {
    padding-top: 3.5rem;
}

.footer-edge {
    height: 24px;
    width: 100%;
    background: repeating-linear-gradient(-45deg, var(--bbt-red) 0 18px, #111111 18px 36px);
    border-top: 3px solid var(--bbt-red);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.55), inset 0 -4px 10px rgba(0, 0, 0, 0.55);
}

.footer-brand {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9375rem;
    color: var(--bbt-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    color: var(--bbt-light);
    font-size: 1.125rem;
    transition: var(--bbt-transition);
}

.footer-social a:hover {
    background: var(--bbt-red);
    border-color: var(--bbt-red);
    color: var(--bbt-white);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.1rem;
    color: var(--bbt-white);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bbt-red);
}

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

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    font-family: var(--bbt-font-body);
    font-size: 0.9375rem;
    color: var(--bbt-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--bbt-transition);
}

.footer-links a:hover {
    color: var(--bbt-white);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 0.625rem;
    color: var(--bbt-red);
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--bbt-red);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 0.9375rem;
    color: var(--bbt-gray);
}

.footer-bottom {
    border-top: 1px solid var(--bbt-border);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    font-family: var(--bbt-font-body);
    font-size: 0.8125rem;
    color: var(--bbt-gray);
    margin-bottom: 0;
}

.webhouse-spark {
    display: inline-block;
    margin-left: 0.4rem;
    color: var(--bbt-red);
    vertical-align: middle;
    animation: webhouseSpark 1.4s ease-in-out infinite;
}

@keyframes webhouseSpark {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.75; filter: drop-shadow(0 0 0 rgba(226, 0, 26, 0)); }
    50% { transform: scale(1.3) rotate(-8deg); opacity: 1; filter: drop-shadow(0 0 7px rgba(226, 0, 26, 0.85)); }
}

@media (max-width: 1199.98px) {
    .promo-block-content {
        max-width: 75%;
        padding: 2rem;
    }
}

@media (max-width: 991.98px) {
    .bbt-navbar .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem;
        margin-top: 1rem;
        border: 1px solid var(--bbt-border);
    }

    .hero-section {
        min-height: 80svh;
    }

    .feature-split {
        grid-template-columns: 1fr;
    }

    .feature-split-media {
        min-height: 40vh;
    }

    .feature-split-content {
        padding: 3rem 1.5rem;
    }

    .promo-duo {
        grid-template-columns: 1fr;
    }

    .promo-block-content {
        max-width: 80%;
    }

    .scroll-gallery-item {
        width: 320px;
        height: 420px;
    }

    .lineup-swiper .swiper-slide,
    .lineup-card {
        width: 210px;
    }

    .lineup-card {
        height: 310px;
    }

    .bbt-cursor,
    .bbt-cursor-ring {
        display: none;
    }

    body.has-custom-cursor,
    body.has-custom-cursor a,
    body.has-custom-cursor button {
        cursor: auto;
    }

    .page-header {
        padding: 8rem 0 3rem;
    }
}

@media (max-width: 767.98px) {
    .bbt-section {
        padding: 3.5rem 0;
    }

    .countdown-wrap {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
    }

    .about-image-wrap img {
        height: 340px;
    }

    .calendar-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .calendar-badge {
        margin-left: 0;
    }

    .drive-in {
        display: none;
    }

    .power-section {
        padding: 4rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons .bbt-btn,
    .hero-buttons .engine-btn {
        width: 100%;
        justify-content: center;
    }

    .schedule-grid {
        min-width: 560px;
    }

    .schedule-row {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .schedule-day-name {
        font-size: 1.2rem;
    }

    .promo-block-content {
        max-width: 92%;
        padding: 1.75rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: -2rem;
        width: 16px;
        height: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-subtitle,
    .hero-tagline,
    .hero-buttons,
    .hero-scroll,
    .hero-title-logo img {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .marquee-track,
    .sponsor-logo-track,
    .sponsor-track,
    .hero-glow,
    .webhouse-spark,
    .drive-in::before,
    .spec-hotspot-dot::before,
    .scroll-gallery-hint i {
        animation: none;
    }

    .bbt-anim .scroll-reveal,
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }

    .bbt-anim .img-reveal,
    .img-reveal {
        clip-path: none;
        transition: none;
    }

    .img-reveal::before {
        display: none;
    }
}

.bbt-accordion .accordion-item {
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    margin-bottom: 0.75rem;
}

.bbt-accordion .accordion-button {
    background: var(--bbt-card);
    color: var(--bbt-white);
    font-family: var(--bbt-font-heading);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 1.1rem 1.35rem;
    box-shadow: none;
}

.bbt-accordion .accordion-button:not(.collapsed) {
    background: var(--bbt-red);
    color: var(--bbt-white);
}

.bbt-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--bbt-red);
}

.bbt-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.bbt-accordion .accordion-body {
    color: var(--bbt-gray);
    font-size: 0.9375rem;
    padding: 1.25rem 1.35rem;
    background: var(--bbt-card);
}

.engine-btn-anthem {
    border-color: var(--bbt-white);
}

.engine-btn-anthem:hover {
    background: var(--bbt-white);
    color: var(--bbt-black);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.35);
}

.engine-btn.revving {
    background: var(--bbt-red);
    box-shadow: 0 0 40px var(--bbt-red-glow);
}

.specs-emblem {
    display: block;
    width: clamp(150px, 20vw, 230px);
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.6));
}

.calendar-subheading {
    font-size: 1.35rem;
    color: var(--bbt-white);
    margin: 2.5rem 0 1.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--bbt-border);
}

.calendar-subheading::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 3px;
    background: var(--bbt-red);
    vertical-align: middle;
    margin-right: 0.65rem;
}

.news-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--bbt-red);
    color: var(--bbt-white);
    font-family: var(--bbt-font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.6rem;
}

.standings-block {
    margin-bottom: 4.5rem;
}

.standings-block:last-child {
    margin-bottom: 0;
}

.standings-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.9rem;
    border-bottom: 3px solid var(--bbt-red);
}

.standings-head h3 {
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    color: var(--bbt-white);
    margin: 0;
    line-height: 1;
}

.standings-head span {
    font-family: var(--bbt-font-accent);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bbt-red);
}

.standings-pos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--bbt-border);
    color: var(--bbt-white);
    font-family: var(--bbt-font-heading);
    font-size: 1rem;
}

.standings-points {
    font-family: var(--bbt-font-heading);
    font-size: 1.15rem;
    color: var(--bbt-white);
}

.results-table tr.standings-own td {
    background: rgba(226, 0, 26, 0.14);
    color: var(--bbt-white);
    font-weight: 600;
}

.results-table tr.standings-own .standings-pos {
    background: var(--bbt-red);
}

.results-table tr.standings-own .standings-points {
    color: var(--bbt-red);
}

.gallery-grid-item {
    background: var(--bbt-card);
}

.scroll-gallery-item {
    background: var(--bbt-card);
}

a.lineup-card {
    display: block;
    text-decoration: none;
}

.lineup-card-go {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 3;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bbt-red);
    color: var(--bbt-white);
    transform: skewX(8deg);
    opacity: 0;
    transition: var(--bbt-transition);
}

.lineup-card:hover .lineup-card-go {
    opacity: 1;
}

.gallery-grid-item {
    aspect-ratio: 4 / 3;
    display: block;
}

.gallery-grid-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-more {
    display: none;
}

.news-more.shown {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.gallery-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.gallery-grid .gallery-grid-item {
    margin: 0;
    width: 100%;
}

@media (max-width: 991.98px) {
    .gallery-grid,
    .gallery-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .gallery-grid,
    .gallery-grid-3,
    .gallery-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.bbt-navbar .navbar-nav {
    flex-wrap: nowrap;
}

.bbt-navbar .nav-link {
    white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1399.98px) {
    .bbt-navbar .nav-link {
        font-size: 0.9rem;
        letter-spacing: 0.06em;
        padding: 0.5rem 0.55rem !important;
    }

    .bbt-navbar .navbar-brand img {
        height: 38px;
    }

    .bbt-navbar.scrolled .navbar-brand img {
        height: 32px;
    }
}

@media (min-width: 1400px) {
    .bbt-navbar .nav-link {
        padding: 0.5rem 0.8rem !important;
    }
}

@media (max-width: 991.98px) {
    .bbt-navbar .navbar-nav {
        flex-wrap: wrap;
    }

    .bbt-navbar .nav-link {
        white-space: normal;
    }
}

.specs-card-icon i,
.info-card-icon i {
    line-height: 1;
}

.specs-card-icon i::before,
.info-card-icon i::before {
    display: inline-block;
}

.calendar-date-year {
    font-family: var(--bbt-font-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--bbt-gray);
    display: block;
    margin-top: 0.1rem;
}

.gallery-captioned {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem 1.5rem;
}

.gallery-captioned-item {
    margin: 0;
}

.gallery-captioned-media {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
}

.gallery-captioned-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-captioned-item:hover .gallery-captioned-media img {
    transform: scale(1.04);
}

.gallery-captioned-item figcaption {
    margin-top: 0.9rem;
    text-align: center;
    font-family: var(--bbt-font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bbt-white);
}

@media (max-width: 767.98px) {
    .gallery-captioned {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

.bbt-readmore-btn {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.modal-backdrop {
    z-index: 10040;
}

.bbt-modal {
    z-index: 10050;
}

.bbt-modal .modal-content {
    background: var(--bbt-card);
    border: 1px solid var(--bbt-border);
    border-top: 3px solid var(--bbt-red);
    border-radius: 0;
    color: var(--bbt-light);
}

.bbt-modal .modal-header {
    border-bottom: 1px solid var(--bbt-border);
    padding: 1.25rem 1.5rem;
}

.bbt-modal .modal-title {
    font-size: 1.5rem;
    color: var(--bbt-white);
    margin: 0;
}

.bbt-modal .modal-body {
    padding: 1.5rem;
}

.bbt-modal-person {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.bbt-modal-person img {
    width: 100%;
    aspect-ratio: 5 / 7;
    object-fit: cover;
    border: 1px solid var(--bbt-border);
}

.bbt-modal-role {
    display: block;
    font-family: var(--bbt-font-accent);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bbt-red);
    margin-bottom: 0.75rem;
}

.bbt-modal-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.bbt-modal-quote p {
    font-style: italic;
}

.bbt-modal-logo {
    display: inline-flex;
    background: #ececec;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.bbt-modal-logo img {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .bbt-modal-person {
        grid-template-columns: 1fr;
    }

    .bbt-modal-person img {
        max-width: 240px;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .schedule-grid {
        min-width: 640px;
    }

    .schedule-row {
        grid-template-columns: 220px minmax(0, 1fr);
    }
}

.bbt-map {
    border: 1px solid var(--bbt-border);
    overflow: hidden;
}

.bbt-map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 420px;
    border: 0;
}

@media (max-width: 575.98px) {
    .bbt-map iframe {
        height: 320px;
    }
}

.bbt-anchor {
    display: block;
    position: relative;
    height: 0;
    scroll-margin-top: 120px;
}

.standings-block {
    scroll-margin-top: 120px;
}

@media (min-width: 992px) {
    .bbt-navbar .nav-item.dropdown > .dropdown-menu {
        top: 100%;
        left: 0;
        margin-top: 0;
        padding-top: 0.75rem;
    }

    .bbt-navbar .nav-item.dropdown:hover > .dropdown-menu,
    .bbt-navbar .nav-item.dropdown:focus-within > .dropdown-menu {
        display: block;
    }
}

@media (max-width: 991.98px) {
    .bbt-navbar .dropdown-menu {
        display: block;
        position: static;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 0;
        margin: 0;
        padding: 0 0 0.5rem 1rem;
    }

    .bbt-navbar .dropdown-toggle::after {
        display: none;
    }
}
