/* ============================================
   BK8Th Landing Page - Style Sheet
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --red: #C41E24;
    --red-dark: #9B1B20;
    --red-light: #E63946;
    --navy: #0B2545;
    --navy-light: #13315C;
    --blue: #134074;
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-500: #ADB5BD;
    --gray-700: #495057;
    --gray-900: #212529;
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-th: 'Noto Sans Thai', sans-serif;
    --font-en: 'Inter', sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-th);
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 37, 69, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(11, 37, 69, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 28px;
    text-decoration: none;
    position: relative;
}

.logo-crown {
    color: var(--gold);
    margin-right: 4px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

.logo-bk {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-8 {
    color: var(--red);
    font-size: 34px;
    text-shadow: 0 0 15px rgba(196, 30, 36, 0.5);
}

.logo-t {
    background: linear-gradient(135deg, var(--gold), #FFA500, var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 34px;
    font-weight: 900;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    position: relative;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-th);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-register {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 30, 36, 0.4);
}

.btn-register:hover {
    background: linear-gradient(135deg, var(--red-light), var(--red));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 36, 0.5);
}

.btn-login {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ---- Mobile Toggle ---- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-bar {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--gold);
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.ticker-content span {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 0 60px;
}

/* ============================================
   PROMO CARDS
   ============================================ */
.promo-cards {
    padding: 40px 0;
    background: var(--gray-50);
}

/* ============================================
   CATEGORY SHOWCASE
   ============================================ */
.category-showcase {
    padding: 70px 0;
    background: linear-gradient(180deg, #060F1F 0%, #0B2545 50%, #0D1B2A 100%);
    position: relative;
    overflow: hidden;
}

.category-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 36, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.category-showcase .section-title {
    color: var(--white);
}

.category-showcase .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}

.category-showcase .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.1);
}

.category-visual {
    height: 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cat-slots {
    background: linear-gradient(135deg, #1a1a2e, #2d1b69, #4a1a8a);
}

.cat-lottery {
    background: linear-gradient(135deg, #1a1a00, #4a3800, #6b5100);
}

.cat-lottery-img {
    padding: 0;
    overflow: hidden;
}

.cat-lottery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
    display: block;
}

.category-card:hover .cat-lottery-img img {
    transform: scale(1.05);
}

.cat-sports {
    background: linear-gradient(135deg, #002a1a, #004d40, #00695c);
}

.cat-casino {
    background: linear-gradient(135deg, #2a0a0a, #6b1010, #8b1a1a);
}

.cat-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.cat-deco-1 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    top: -30px;
    right: -30px;
    animation: float 5s ease-in-out infinite;
}

.cat-deco-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--white), transparent 70%);
    bottom: -20px;
    left: -20px;
    animation: float 4s ease-in-out infinite reverse;
}

.cat-icon {
    font-size: 72px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.cat-label {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 8px;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.category-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 12px;
}

.cat-promo-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.category-info .btn {
    width: 80%;
    margin-bottom: 4px;
}

/* ============================================
   LOTTERY FULL-WIDTH BANNER
   ============================================ */
.lottery-banner-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #0D1B2A, #0B2545);
}

.lottery-banner-link {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lottery-banner-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.15);
}

.lottery-banner-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
}

.lottery-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lottery-banner-link:hover .lottery-banner-overlay {
    opacity: 1;
}

.lottery-cta-btn {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #1a1a00;
    font-family: var(--font-th);
    font-size: 16px;
    font-weight: 800;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   PROMOTIONS CAROUSEL
   ============================================ */
.promo-carousel-section {
    padding: 70px 0 50px;
    background: linear-gradient(180deg, #0B2545 0%, #0A1628 50%, #060F1F 100%);
    position: relative;
    overflow: hidden;
}

.promo-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.promo-carousel-title {
    font-size: 32px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700, #FFFFFF, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s linear infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    letter-spacing: 1px;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.title-highlight {
    background: linear-gradient(135deg, #FF4444, #FF6B6B, #FF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(0 0 12px rgba(255, 68, 68, 0.5));
}

.promo-carousel-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 17px !important;
    letter-spacing: 0.5px;
}

.promo-carousel-desc strong {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.promo-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.promo-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.promo-slide {
    min-width: 100%;
    position: relative;
    flex-shrink: 0;
}

.promo-slide a {
    display: block;
    text-decoration: none;
    position: relative;
}

.promo-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.promo-slide:hover img {
    transform: scale(1.03);
}

.promo-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.promo-slide:hover .promo-slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.promo-slide-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-slide-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    line-height: 1.5;
}

.promo-slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: #1a1a00;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.promo-slide-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), #ff4444);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-slide-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.6);
}

/* Slider Navigation */
.promo-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-slider-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.promo-slider-prev {
    left: 16px;
}

.promo-slider-next {
    right: 16px;
}

/* Slider Dots */
.promo-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.promo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.promo-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.promo-dot:hover {
    border-color: var(--gold);
    background: rgba(255, 215, 0, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.trust-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Main CTA */
.promo-main-cta {
    text-align: center;
}

.promo-register-btn {
    font-size: 18px !important;
    padding: 18px 48px !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4), 0 0 40px rgba(220, 38, 38, 0.15);
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
    text-decoration: none;
}

.promo-register-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5), 0 0 60px rgba(220, 38, 38, 0.2);
}

.promo-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 14px;
    letter-spacing: 0.3px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.promo-card-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.promo-img-1 {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.promo-img-2 {
    background: linear-gradient(135deg, #0d47a1, #1565c0, #1976d2);
}

.promo-img-3 {
    background: linear-gradient(135deg, #b71c1c, #c62828, #d32f2f);
}

.promo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.promo-tag {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.promo-overlay h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.promo-card-body {
    padding: 16px 20px;
}

.promo-card-body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
}

.promo-card-body p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ============================================
   HERO HEADING
   ============================================ */
.hero-heading {
    padding: 50px 0;
    background: var(--white);
    text-align: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   MOTOGP BANNER
   ============================================ */
.motogp-banner {
    background: linear-gradient(135deg, #0B2545 0%, #134074 40%, #1B4965 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.motogp-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 40px);
}

.motogp-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.motogp-badge {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 24px 30px;
    text-align: center;
    min-width: 200px;
}

.gresini-text {
    display: block;
    color: var(--gold);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.motogp-brand {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 48px;
    margin: 4px 0;
}

.motogp-brand .logo-bk {
    color: var(--white);
}

.motogp-brand .logo-8 {
    color: var(--red);
    font-size: 56px;
}

.motogp-brand .logo-t {
    background: linear-gradient(135deg, var(--gold), #FFA500, var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 56px;
    font-weight: 900;
}

.motogp-news {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.motogp-label {
    display: block;
    color: var(--white);
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 8px;
}

.motogp-text h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.motogp-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}

/* ============================================
   SEO CONTENT
   ============================================ */
.seo-content {
    padding: 50px 0;
    background: var(--gray-50);
    border-top: 3px solid var(--red);
}

.seo-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-700);
    text-align: justify;
}

.seo-text strong {
    color: var(--navy);
}

/* ============================================
   WHY BK8
   ============================================ */
.why-bk8 {
    padding: 60px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-img-placeholder {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.device-mockup {
    width: 200px;
    height: 260px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 900;
}

.why-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    border-left: 4px solid var(--red);
    padding-left: 16px;
}

.why-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.why-text strong {
    color: var(--navy);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 3px;
}

.section-desc {
    text-align: center;
    font-size: 15px;
    color: var(--gray-700);
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.section-desc strong {
    color: var(--red);
}

/* ============================================
   GAME SERVICES
   ============================================ */
.game-services {
    padding: 60px 0;
    background: var(--gray-50);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: center;
    padding-bottom: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.game-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-slot {
    background: linear-gradient(135deg, #1a1a2e, #2d1b69);
}

.game-sports {
    background: linear-gradient(135deg, #004d40, #00695c);
}

.game-casino {
    background: linear-gradient(135deg, #b71c1c, #880e4f);
}

.game-icon {
    font-size: 64px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

.game-card .btn {
    margin: 16px auto;
}

.game-card h3 {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.game-card p {
    font-size: 13px;
    color: var(--gray-700);
    padding: 0 20px;
    line-height: 1.8;
    text-align: left;
}

.game-card p strong {
    color: var(--red);
}

/* ============================================
   REGISTRATION GUIDE
   ============================================ */
.register-guide {
    padding: 60px 0;
    background: var(--white);
    border-top: 3px solid var(--red);
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.phone-mockup {
    width: 240px;
    height: 420px;
    background: var(--gray-900);
    border-radius: 32px;
    padding: 16px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    animation: float 4s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--navy), var(--blue));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.phone-header {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

.phone-btn {
    background: var(--red);
    color: var(--white);
    padding: 12px 40px;
    border-radius: var(--radius-sm);
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 20px;
}

.register-steps h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    padding: 12px 20px;
    border: 2px solid var(--red);
    border-bottom: none;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.steps-box {
    border: 2px solid var(--gray-200);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 24px;
}

.steps-box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 12px 0;
}

.steps-box ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--gray-700);
    line-height: 1.6;
}

.steps-note {
    font-size: 14px;
    color: var(--navy);
    margin: 16px 0;
    font-weight: 500;
}

.steps-box .btn {
    margin-top: 8px;
}

/* ============================================
   DOWNLOAD APP
   ============================================ */
.download-app {
    padding: 60px 0;
    background: var(--gray-50);
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.app-mockup {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.app-screens {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 64px;
}

.download-info h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    border-left: 4px solid var(--red);
    padding-left: 16px;
}

.download-info p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 24px;
}

.download-info strong {
    color: var(--navy);
}

.download-steps {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.download-steps h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.download-steps ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 20px;
}

.download-steps ul li {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--gray-700);
}

/* ============================================
   OFFICIAL SPORTS PARTNERSHIP
   ============================================ */
.sports-partner-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #060F1F 0%, #0B2545 50%, #0D1B2A 100%);
    position: relative;
    overflow: hidden;
}

.sports-partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.sports-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 50px;
}

.sports-partner-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sports-partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sports-partner-image:hover img {
    transform: scale(1.03);
}

.sports-partner-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
}

.sports-partner-badge span {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
    color: #0D1B2A;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.sports-partner-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sports-partner-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #000;
}

.sports-partner-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sports-partner-info {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(10px);
}

.sports-partner-info h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
}

.sports-partner-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sports-partner-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.partner-stat {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-md);
}

.stat-number {
    display: block;
    color: var(--gold);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sports-partner-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 14px 24px !important;
    animation: pulse 2s infinite;
}

/* Divider between partnerships */
.sports-partner-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    margin: 50px 0;
}

/* ============================================
   TRUST & CREDIBILITY
   ============================================ */
.trust-credibility-section {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.sponsors-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 2fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 40px;
}

.sponsor-group-title {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsor-items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sponsor-items-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.sponsor-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.sponsor-item:hover .sponsor-logo {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.sponsor-name {
    font-size: 10px;
    color: var(--gray-600);
    line-height: 1.4;
    font-weight: 500;
}

.sponsor-item-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    min-width: 65px;
}

.sponsor-logo-mini {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--gray-100);
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.sponsor-item-mini:hover .sponsor-logo-mini {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.sponsor-item-mini span {
    font-size: 9px;
    color: var(--gray-500);
    line-height: 1.3;
}

/* Awards */
.awards-showcase {
    text-align: center;
}

.awards-title {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.awards-items {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.award-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.award-item-highlight {
    border-color: rgba(255, 165, 0, 0.3);
    background: linear-gradient(135deg, #FFFBF0, #FFF8E7);
}

.award-icon {
    font-size: 28px;
}

.award-text {
    font-size: 11px;
    color: var(--gray-700);
    line-height: 1.4;
    text-align: left;
    font-weight: 500;
}

.award-text strong {
    color: var(--navy-deep);
    font-size: 13px;
}

.award-sub {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   PROMOTIONS HIGHLIGHT
   ============================================ */
.promotions-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.promo-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-highlight-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.promo-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.promo-hl-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-hl-1 {
    background: linear-gradient(135deg, #1a237e, #283593, #3949ab);
}

.promo-hl-2 {
    background: linear-gradient(135deg, #0d47a1, #1565c0, #1e88e5);
}

.promo-hl-3 {
    background: linear-gradient(135deg, #b71c1c, #c62828, #e53935);
}

.promo-hl-badge {
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.promo-highlight-card .btn {
    margin: 16px auto;
}

.promo-highlight-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 10px;
    padding: 0 16px;
}

.promo-highlight-card ul {
    list-style: disc;
    padding: 0 16px 20px 36px;
    text-align: left;
}

.promo-highlight-card ul li {
    font-size: 13px;
    color: var(--gray-700);
    margin-bottom: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-th);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 700;
    color: var(--red);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--red);
    background: var(--gray-50);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 18px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--navy), #060F1F);
    color: var(--white);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 36px;
    margin-bottom: 16px;
}

.footer-logo .logo-t {
    background: linear-gradient(135deg, var(--gold), #FFA500, var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 40px;
    font-weight: 900;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.contact-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 199, 85, 0.15);
    border: 1px solid rgba(6, 199, 85, 0.3);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    color: #06C755;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: var(--transition);
}

.contact-line:hover {
    background: rgba(6, 199, 85, 0.25);
    transform: translateY(-2px);
}

.line-icon {
    font-size: 20px;
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Footer Info Bar */
.footer-info-bar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 30px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.footer-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.footer-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    cursor: default;
}

.footer-icon-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-icon-badge.footer-icon-text {
    width: auto;
    border-radius: 18px;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.admin-link {
    font-size: 16px;
    opacity: 0.2;
    transition: var(--transition);
}

.admin-link:hover {
    opacity: 0.8;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--red);
    transform: translateY(-3px);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}

.floating-line {
    width: 50px;
    height: 50px;
    background: #06C755;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.floating-line:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.floating-register {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.floating-register:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1A2A44 0%, #0F1D33 100%);
}

.testimonials-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.testimonials-carousel {
    position: relative;
}

.testimonials-track {
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-slide.active {
    display: grid;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial-card h3 {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.3;
}

.testimonial-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-stars {
    font-size: 16px;
    letter-spacing: 2px;
}

/* Nav Arrows */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.testimonial-prev {
    left: -50px;
}

.testimonial-next {
    right: -50px;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    position: relative;
    margin-left: 12px;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    white-space: nowrap;
}

.lang-switcher-btn:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow-sm);
}

.lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-label {
    font-size: 13px;
}

.lang-arrow {
    font-size: 10px;
    color: var(--gray-500);
    transition: var(--transition);
}

.lang-dropdown.show~.lang-switcher-btn .lang-arrow,
.lang-switcher-btn:focus .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 150px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    color: var(--gray-700);
    transition: var(--transition);
}

.lang-option:hover {
    background: var(--gray-100);
}

.lang-option.active {
    background: var(--gray-100);
    color: var(--navy-deep);
    font-weight: 600;
}

.lang-option.active::after {
    content: '✓';
    margin-left: auto;
    color: var(--success);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {

    .promo-grid,
    .games-grid,
    .promo-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .motogp-text h2 {
        font-size: 28px;
    }

    .sports-partner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sports-partner-stats {
        gap: 12px;
    }

    .stat-number {
        font-size: 15px;
    }

    .sponsors-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .awards-items {
        gap: 16px;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;
    }

    .testimonial-prev {
        left: 0;
    }

    .testimonial-next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(11, 37, 69, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        gap: 4px;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .lang-label {
        display: none;
    }

    .lang-switcher-btn {
        padding: 6px 10px;
    }

    .nav-buttons {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu.active~.nav-buttons-mobile {
        display: flex;
    }

    .promo-grid,
    .games-grid,
    .promo-highlight-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .why-grid,
    .register-grid,
    .download-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .motogp-content {
        flex-direction: column;
        text-align: center;
    }

    .motogp-text h2 {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sponsors-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .award-item {
        padding: 12px 14px;
    }

    .footer-info-bar {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .ticker-bar {
        margin-top: 60px;
    }

    .hero-title {
        font-size: 20px;
    }

    .motogp-brand {
        font-size: 36px;
    }

    .motogp-brand .logo-8 {
        font-size: 42px;
    }

    .phone-mockup {
        width: 200px;
        height: 350px;
    }

    .promo-slide img {
        height: 200px;
    }

    .promo-slide-overlay {
        padding: 16px 20px;
    }

    .promo-slide-info h3 {
        font-size: 16px;
    }

    .promo-slide-info p {
        font-size: 12px;
        display: none;
    }

    .promo-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .trust-badge {
        padding: 12px 10px;
    }

    .trust-icon {
        font-size: 24px;
    }

    .trust-text strong {
        font-size: 12px;
    }

    .promo-register-btn {
        font-size: 15px !important;
        padding: 14px 28px !important;
    }

    .promo-carousel-section {
        padding: 40px 0 30px;
    }

    .footer-info-bar {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}