/* ========================================
   BETFLARE ESPAÑA - CSS STYLES
   Dark theme with orange/blue accents
   Mobile-first design
   ======================================== */

:root {
    /* Colors */
    --bf-black: #0A0E1A;
    --bf-dark-blue: #0F1420;
    --bf-dark-card: #151922;
    --bf-orange: #FF9500;
    --bf-orange-hover: #FF8000;
    --bf-blue: #2E7BFF;
    --bf-blue-hover: #1E6BEF;
    --bf-green: #00C853;
    --bf-purple: #9C27B0;
    --bf-pink: #E91E63;
    --bf-red: #F44336;
    
    /* Text Colors */
    --bf-text-primary: #FFFFFF;
    --bf-text-secondary: #B0B8C8;
    --bf-text-muted: #6B7280;
    
    /* Gradients */
    --bf-gradient-hero: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    --bf-gradient-purple: linear-gradient(135deg, #6B21A8 0%, #9333EA 100%);
    --bf-gradient-green: linear-gradient(135deg, #059669 0%, #10B981 100%);
    --bf-gradient-blue: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --bf-gradient-red: linear-gradient(135deg, #B91C1C 0%, #EF4444 100%);
    --bf-gradient-pink: linear-gradient(135deg, #BE185D 0%, #EC4899 100%);
    --bf-gradient-orange: linear-gradient(135deg, #C2410C 0%, #F97316 100%);
    
    /* Shadows */
    --bf-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --bf-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --bf-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --bf-shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.6);
    
    /* Spacing */
    --bf-spacing-xs: 4px;
    --bf-spacing-sm: 8px;
    --bf-spacing-md: 16px;
    --bf-spacing-lg: 24px;
    --bf-spacing-xl: 32px;
    
    /* Border Radius */
    --bf-radius-sm: 8px;
    --bf-radius-md: 12px;
    --bf-radius-lg: 16px;
    --bf-radius-xl: 24px;
    --bf-radius-full: 9999px;
    
    /* Transitions */
    --bf-transition-fast: 0.15s ease;
    --bf-transition-base: 0.3s ease;
    --bf-transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bf-black);
    color: var(--bf-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 80px; /* Space for bottom nav */
}

/* ========================================
   HEADER
   ======================================== */

.bf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--bf-dark-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.bf-header-content {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--bf-spacing-lg);
}

.bf-logo svg {
    display: block;
}

.bf-nav {
    display: none; /* Hidden on mobile */
    gap: var(--bf-spacing-lg);
}

.bf-nav a {
    color: var(--bf-text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color var(--bf-transition-base);
}

.bf-nav a:hover {
    color: var(--bf-orange);
}

.bf-header-actions {
    display: flex;
    align-items: center;
    gap: var(--bf-spacing-sm);
}

.bf-btn-secondary,
.bf-btn-primary {
    padding: 10px 20px;
    border-radius: var(--bf-radius-full);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all var(--bf-transition-base);
    white-space: nowrap;
}

.bf-btn-secondary {
    background: transparent;
    color: var(--bf-text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.bf-btn-secondary:hover {
    border-color: var(--bf-orange);
    color: var(--bf-orange);
}

.bf-btn-primary {
    background: var(--bf-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 123, 255, 0.3);
}

.bf-btn-primary:hover {
    background: var(--bf-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 123, 255, 0.4);
}

.bf-lang {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--bf-transition-base);
}

.bf-lang:hover {
    transform: scale(1.1);
}

.bf-lang img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   MOBILE PROMO BANNER
   ======================================== */

.bf-mobile-promo {
    position: fixed;
    bottom: 80px;
    left: var(--bf-spacing-md);
    background: var(--bf-gradient-purple);
    border-radius: var(--bf-radius-xl);
    padding: 12px 20px;
    box-shadow: var(--bf-shadow-lg);
    z-index: 999;
    max-width: calc(100% - 32px);
    animation: bf-slide-in 0.5s ease;
}

@keyframes bf-slide-in {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.bf-mobile-promo-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bf-mobile-promo-icon {
    font-size: 24px;
    animation: bf-bounce 2s infinite;
}

@keyframes bf-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bf-mobile-promo-content span {
    font-weight: 700;
    font-size: 14px;
    color: white;
}

/* ========================================
   HERO CAROUSEL
   ======================================== */

.bf-hero {
    margin-top: 64px;
    position: relative;
    height: 480px;
    overflow: hidden;
}

.bf-hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.bf-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    padding: var(--bf-spacing-xl);
    background: var(--bf-gradient-hero);
}

.bf-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.bf-hero-slide:nth-child(1) {
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
}

.bf-hero-slide:nth-child(2) {
    background: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
}

.bf-hero-slide:nth-child(3) {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
}

.bf-hero-content {
    flex: 1;
    z-index: 2;
}

.bf-hero-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--bf-orange);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.bf-hero-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bf-hero-cta {
    background: var(--bf-green);
    color: white;
    padding: 16px 40px;
    border-radius: var(--bf-radius-xl);
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
    transition: all var(--bf-transition-base);
}

.bf-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

.bf-hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-hero-character {
    position: relative;
    font-size: 120px;
    animation: bf-float 3s ease-in-out infinite;
}

@keyframes bf-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.bf-coins-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bf-coin {
    position: absolute;
    font-size: 40px;
    animation: bf-coin-spin 2s linear infinite;
}

.bf-coin:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.bf-coin:nth-child(2) {
    top: 40%;
    right: -10%;
    animation-delay: 0.3s;
}

.bf-coin:nth-child(3) {
    top: 70%;
    right: 20%;
    animation-delay: 0.6s;
}

@keyframes bf-coin-spin {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(1.2);
    }
}

.bf-hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.bf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--bf-transition-base);
}

.bf-dot.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

/* ========================================
   FEATURE CARDS
   ======================================== */

.bf-features {
    padding: var(--bf-spacing-xl) var(--bf-spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--bf-spacing-md);
}

.bf-feature-card {
    background: var(--bf-dark-card);
    border-radius: var(--bf-radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform var(--bf-transition-base);
    cursor: pointer;
}

.bf-feature-card:hover {
    transform: translateX(4px);
}

.bf-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--bf-shadow-md);
}

.bf-icon-rake {
    background: var(--bf-gradient-purple);
}

.bf-icon-auto {
    background: var(--bf-gradient-green);
}

.bf-icon-vpn {
    background: var(--bf-gradient-blue);
}

.bf-feature-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
}

.bf-feature-text {
    font-size: 13px;
    color: var(--bf-text-secondary);
    line-height: 1.5;
}

/* ========================================
   PROMO CARDS
   ======================================== */

.bf-promos {
    padding: 0 var(--bf-spacing-md) var(--bf-spacing-xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-md);
}

.bf-promo-card {
    height: 200px;
    border-radius: var(--bf-radius-xl);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--bf-transition-base);
}

.bf-promo-card:hover {
    transform: translateY(-4px);
}

.bf-promo-target {
    background: var(--bf-gradient-red);
}

.bf-promo-tournament {
    background: var(--bf-gradient-pink);
}

.bf-promo-vip {
    background: var(--bf-gradient-orange);
}

.bf-promo-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    opacity: 0.2;
    pointer-events: none;
}

.bf-promo-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bf-promo-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: var(--bf-radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    width: fit-content;
}

.bf-promo-title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
}

.bf-promo-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   GAMES SECTION
   ======================================== */

.bf-games {
    padding: var(--bf-spacing-xl) var(--bf-spacing-md);
}

.bf-section-title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: var(--bf-spacing-lg);
}

.bf-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bf-spacing-md);
}

.bf-game-card {
    aspect-ratio: 3/4;
    border-radius: var(--bf-radius-md);
    background: var(--bf-dark-card);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--bf-transition-base);
}

.bf-game-card:hover {
    transform: scale(1.05);
}

.bf-game-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bf-game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity var(--bf-transition-base);
}

.bf-game-card:hover .bf-game-overlay {
    opacity: 1;
}

.bf-game-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.bf-game-provider {
    font-size: 12px;
    color: var(--bf-text-secondary);
}

/* ========================================
   BOTTOM NAVIGATION
   ======================================== */

.bf-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--bf-dark-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.bf-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--bf-text-secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: color var(--bf-transition-fast);
    padding: 8px 12px;
}

.bf-bottom-nav-item:hover {
    color: var(--bf-orange);
}

.bf-bottom-nav-item svg {
    width: 24px;
    height: 24px;
}

.bf-bottom-nav-cta {
    position: relative;
    color: white;
}

.bf-bottom-cta-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bf-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.5);
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform var(--bf-transition-base);
}

.bf-bottom-nav-cta:hover .bf-bottom-cta-circle {
    transform: translateX(-50%) scale(1.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 768px) {
    .bf-nav {
        display: flex;
    }
    
    .bf-hero {
        height: 560px;
    }
    
    .bf-hero-title {
        font-size: 42px;
    }
    
    .bf-hero-subtitle {
        font-size: 24px;
    }
    
    .bf-features {
        flex-direction: row;
    }
    
    .bf-feature-card {
        flex: 1;
    }
    
    .bf-promos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bf-games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .bf-hero {
        height: 640px;
    }
    
    .bf-hero-title {
        font-size: 52px;
    }
    
    .bf-games-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ========================================
   AUTHENTICATION PAGES
   ======================================== */

.bf-auth-section {
    min-height: 100vh;
    padding: calc(64px + var(--bf-spacing-xl)) var(--bf-spacing-md) var(--bf-spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bf-auth-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-xl);
}

@media (min-width: 1024px) {
    .bf-auth-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.bf-auth-card {
    background: var(--bf-dark-card);
    border-radius: var(--bf-radius-xl);
    padding: var(--bf-spacing-xl);
    box-shadow: var(--bf-shadow-xl);
}

.bf-auth-header {
    text-align: center;
    margin-bottom: var(--bf-spacing-xl);
}

.bf-auth-title {
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin-bottom: var(--bf-spacing-sm);
}

.bf-auth-subtitle {
    font-size: 16px;
    color: var(--bf-text-secondary);
}

.bf-auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--bf-spacing-lg);
}

.bf-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-md);
}

@media (min-width: 768px) {
    .bf-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.bf-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--bf-spacing-sm);
}

.bf-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bf-text-primary);
}

.bf-form-label svg {
    color: var(--bf-orange);
}

.bf-form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bf-dark-blue);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--bf-radius-md);
    color: white;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all var(--bf-transition-base);
}

.bf-form-input:focus {
    outline: none;
    border-color: var(--bf-orange);
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

.bf-form-input::placeholder {
    color: var(--bf-text-muted);
}

.bf-form-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--bf-spacing-sm);
}

.bf-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--bf-text-secondary);
    cursor: pointer;
}

.bf-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--bf-orange);
}

.bf-forgot-link {
    color: var(--bf-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color var(--bf-transition-fast);
}

.bf-forgot-link:hover {
    color: var(--bf-orange-hover);
    text-decoration: underline;
}

.bf-auth-submit {
    width: 100%;
    padding: 16px;
    background: var(--bf-green);
    color: white;
    border: none;
    border-radius: var(--bf-radius-xl);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--bf-transition-base);
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
}

.bf-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

.bf-auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.bf-auth-divider {
    text-align: center;
    position: relative;
    margin: var(--bf-spacing-lg) 0;
}

.bf-auth-divider::before,
.bf-auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 60px);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.bf-auth-divider::before {
    left: 0;
}

.bf-auth-divider::after {
    right: 0;
}

.bf-auth-divider span {
    font-size: 14px;
    color: var(--bf-text-muted);
    background: var(--bf-dark-card);
    padding: 0 var(--bf-spacing-md);
}

.bf-social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--bf-spacing-md);
}

.bf-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--bf-dark-blue);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--bf-radius-md);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--bf-transition-base);
}

.bf-social-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.bf-auth-footer {
    text-align: center;
    margin-top: var(--bf-spacing-lg);
    padding-top: var(--bf-spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bf-auth-footer p {
    font-size: 14px;
    color: var(--bf-text-secondary);
}

.bf-auth-link {
    color: var(--bf-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--bf-transition-fast);
}

.bf-auth-link:hover {
    color: var(--bf-orange-hover);
    text-decoration: underline;
}

/* Benefits Sidebar */
.bf-auth-benefits {
    background: var(--bf-dark-card);
    border-radius: var(--bf-radius-xl);
    padding: var(--bf-spacing-xl);
    box-shadow: var(--bf-shadow-lg);
    display: none;
}

@media (min-width: 1024px) {
    .bf-auth-benefits {
        display: block;
    }
}

.bf-benefits-title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: var(--bf-spacing-lg);
}

.bf-benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--bf-spacing-lg);
}

.bf-benefit-item {
    display: flex;
    gap: var(--bf-spacing-md);
    padding: var(--bf-spacing-md);
    background: var(--bf-dark-blue);
    border-radius: var(--bf-radius-md);
}

.bf-benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.bf-benefit-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.bf-benefit-item p {
    font-size: 14px;
    color: var(--bf-text-secondary);
}

/* Register Page Specific */
.bf-register-bonus {
    text-align: center;
    padding: var(--bf-spacing-lg);
    background: var(--bf-gradient-orange);
    border-radius: var(--bf-radius-lg);
    margin-bottom: var(--bf-spacing-lg);
}

.bf-bonus-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: var(--bf-radius-full);
    font-size: 12px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.bf-bonus-amount {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 4px;
}

.bf-bonus-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.bf-password-strength {
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.bf-form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: var(--bf-spacing-sm);
}

.bf-trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--bf-spacing-md);
    flex-wrap: wrap;
    margin-top: var(--bf-spacing-lg);
    padding-top: var(--bf-spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bf-trust-item {
    font-size: 13px;
    color: var(--bf-text-secondary);
    white-space: nowrap;
}

.bf-bonus-breakdown {
    display: flex;
    flex-direction: column;
    gap: var(--bf-spacing-md);
    margin-bottom: var(--bf-spacing-lg);
}

.bf-bonus-step {
    display: flex;
    gap: var(--bf-spacing-md);
    padding: var(--bf-spacing-md);
    background: var(--bf-dark-blue);
    border-radius: var(--bf-radius-md);
}

.bf-step-number {
    width: 40px;
    height: 40px;
    background: var(--bf-gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.bf-bonus-step h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--bf-text-secondary);
    margin-bottom: 4px;
}

.bf-bonus-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--bf-orange);
    margin-bottom: 2px;
}

.bf-bonus-detail {
    font-size: 13px;
    color: var(--bf-text-secondary);
}

.bf-benefits-extra {
    padding: var(--bf-spacing-md);
    background: var(--bf-dark-blue);
    border-radius: var(--bf-radius-md);
}

.bf-benefits-extra h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--bf-spacing-sm);
}

.bf-benefits-extra ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bf-benefits-extra li {
    font-size: 14px;
    color: var(--bf-text-secondary);
}

/* ========================================
   LIVE TICKER
   ======================================== */

.bf-live-ticker {
    background: var(--bf-gradient-orange);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    margin-top: 64px;
}

.bf-ticker-content {
    display: flex;
    animation: bf-ticker-scroll 30s linear infinite;
    white-space: nowrap;
}

.bf-ticker-item {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-right: 48px;
    display: inline-block;
}

@keyframes bf-ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   HERO MAIN
   ======================================== */

.bf-hero-main {
    position: relative;
    padding: calc(var(--bf-spacing-xl) * 2) var(--bf-spacing-md);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.bf-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--bf-gradient-hero);
    z-index: 0;
}

.bf-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="60" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.bf-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-xl);
}

@media (min-width: 1024px) {
    .bf-hero-wrapper {
        grid-template-columns: 1.3fr 1fr;
    }
}

.bf-hero-content-main {
    color: white;
}

.bf-h1 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--bf-spacing-md);
    color: white;
}

@media (min-width: 768px) {
    .bf-h1 {
        font-size: 48px;
    }
}

.bf-hero-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: var(--bf-spacing-xl);
    color: rgba(255, 255, 255, 0.95);
}

.bf-hero-ctas {
    display: flex;
    gap: var(--bf-spacing-md);
    flex-wrap: wrap;
}

.bf-btn-hero-primary,
.bf-btn-hero-secondary {
    padding: 16px 32px;
    border-radius: var(--bf-radius-xl);
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all var(--bf-transition-base);
    display: inline-block;
}

.bf-btn-hero-primary {
    background: var(--bf-green);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
}

.bf-btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

.bf-btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.bf-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.bf-hero-card {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--bf-spacing-xl);
    border-radius: var(--bf-radius-xl);
    box-shadow: var(--bf-shadow-xl);
}

.bf-card-badge {
    display: inline-block;
    background: var(--bf-gradient-orange);
    color: white;
    padding: 6px 16px;
    border-radius: var(--bf-radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: var(--bf-spacing-md);
}

.bf-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bf-black);
    margin-bottom: var(--bf-spacing-sm);
}

.bf-card-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--bf-orange);
    margin-bottom: var(--bf-spacing-md);
}

.bf-card-amount span {
    font-size: 24px;
    font-weight: 700;
}

.bf-card-features {
    list-style: none;
    margin-bottom: var(--bf-spacing-lg);
}

.bf-card-features li {
    font-size: 14px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.bf-card-features li:last-child {
    border-bottom: none;
}

.bf-card-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--bf-green);
    color: white;
    text-align: center;
    border-radius: var(--bf-radius-md);
    font-weight: 800;
    text-decoration: none;
    transition: all var(--bf-transition-base);
}

.bf-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 200, 83, 0.4);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */

.bf-section {
    padding: calc(var(--bf-spacing-xl) * 2) 0;
}

.bf-section:nth-child(even) {
    background: var(--bf-dark-blue);
}

.bf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--bf-spacing-md);
}

.bf-section-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--bf-spacing-md);
    color: white;
}

.bf-section-intro {
    font-size: 16px;
    text-align: center;
    color: var(--bf-text-secondary);
    margin-bottom: var(--bf-spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bf-section-cta {
    text-align: center;
    margin-top: var(--bf-spacing-xl);
}

.bf-btn-large {
    display: inline-block;
    padding: 18px 48px;
    background: var(--bf-green);
    color: white;
    font-size: 18px;
    font-weight: 800;
    border-radius: var(--bf-radius-xl);
    text-decoration: none;
    transition: all var(--bf-transition-base);
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
}

.bf-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

.bf-btn-mega {
    display: inline-block;
    padding: 20px 64px;
    background: var(--bf-orange);
    color: white;
    font-size: 20px;
    font-weight: 900;
    border-radius: var(--bf-radius-xl);
    text-decoration: none;
    transition: all var(--bf-transition-base);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.5);
}

.bf-btn-mega:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 149, 0, 0.7);
}

/* ========================================
   TABLES
   ======================================== */

.bf-table-wrapper {
    overflow-x: auto;
    border-radius: var(--bf-radius-md);
    box-shadow: var(--bf-shadow-md);
}

.bf-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bf-dark-card);
}

.bf-table thead tr {
    background: var(--bf-dark-blue);
}

.bf-table th,
.bf-table td {
    padding: 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bf-table th {
    font-weight: 700;
    color: var(--bf-orange);
}

.bf-table td {
    color: var(--bf-text-primary);
}

.bf-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bf-table tbody tr:last-child td {
    border-bottom: none;
}

.bf-rtp-high {
    color: var(--bf-green);
    font-weight: 700;
}

.bf-rtp-good {
    color: #10B981;
    font-weight: 700;
}

.bf-payment-recommended {
    background: rgba(255, 149, 0, 0.1);
}

.bf-table-note {
    font-size: 13px;
    color: var(--bf-text-muted);
    margin-top: var(--bf-spacing-md);
    font-style: italic;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.bf-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-lg);
    margin-bottom: var(--bf-spacing-xl);
}

@media (min-width: 768px) {
    .bf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bf-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bf-feature-box {
    background: var(--bf-dark-card);
    padding: var(--bf-spacing-lg);
    border-radius: var(--bf-radius-lg);
    transition: transform var(--bf-transition-base);
    border: 2px solid transparent;
}

.bf-feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--bf-orange);
}

.bf-feature-icon {
    font-size: 48px;
    margin-bottom: var(--bf-spacing-md);
}

.bf-feature-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--bf-spacing-sm);
}

.bf-feature-text {
    font-size: 14px;
    color: var(--bf-text-secondary);
    line-height: 1.6;
}

/* ========================================
   GAMES SECTION
   ======================================== */

.bf-game-cats {
    display: flex;
    gap: var(--bf-spacing-sm);
    margin-bottom: var(--bf-spacing-xl);
    overflow-x: auto;
    padding-bottom: var(--bf-spacing-sm);
}

.bf-cat-btn {
    padding: 12px 24px;
    background: var(--bf-dark-card);
    color: var(--bf-text-secondary);
    border: 2px solid transparent;
    border-radius: var(--bf-radius-full);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--bf-transition-base);
    white-space: nowrap;
}

.bf-cat-btn:hover,
.bf-cat-btn.active {
    background: var(--bf-orange);
    color: white;
    border-color: var(--bf-orange);
}

/* ========================================
   BONUSES SECTION
   ======================================== */

.bf-bonus-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-lg);
}

@media (min-width: 768px) {
    .bf-bonus-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bf-bonus-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bf-bonus-card {
    background: var(--bf-dark-card);
    padding: var(--bf-spacing-lg);
    border-radius: var(--bf-radius-lg);
    transition: transform var(--bf-transition-base);
    border: 2px solid transparent;
}

.bf-bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--bf-orange);
}

.bf-bonus-badge {
    display: inline-block;
    background: rgba(255, 149, 0, 0.2);
    color: var(--bf-orange);
    padding: 6px 12px;
    border-radius: var(--bf-radius-full);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: var(--bf-spacing-sm);
}

.bf-bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--bf-spacing-md);
    min-height: 48px;
}

.bf-bonus-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--bf-orange);
    margin-bottom: var(--bf-spacing-md);
}

.bf-bonus-list {
    list-style: none;
    margin-bottom: var(--bf-spacing-lg);
}

.bf-bonus-list li {
    font-size: 13px;
    color: var(--bf-text-secondary);
    padding: 6px 0;
}

.bf-bonus-cta {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--bf-orange);
    color: white;
    text-align: center;
    border-radius: var(--bf-radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--bf-transition-base);
}

.bf-bonus-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.4);
}

/* ========================================
   PAYMENT LOGOS
   ======================================== */

.bf-payment-logos {
    display: flex;
    justify-content: center;
    gap: var(--bf-spacing-md);
    flex-wrap: wrap;
    margin: var(--bf-spacing-xl) 0;
}

.bf-payment-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--bf-transition-base);
}

.bf-payment-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ========================================
   MOBILE APP SECTION
   ======================================== */

.bf-app-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .bf-app-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.bf-app-intro {
    font-size: 16px;
    color: var(--bf-text-secondary);
    margin-bottom: var(--bf-spacing-lg);
}

.bf-app-features {
    list-style: none;
    margin-bottom: var(--bf-spacing-lg);
}

.bf-app-features li {
    font-size: 15px;
    color: var(--bf-text-secondary);
    padding: 8px 0;
}

.bf-app-downloads {
    display: flex;
    gap: var(--bf-spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--bf-spacing-lg);
}

.bf-app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bf-dark-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--bf-radius-md);
    color: white;
    text-decoration: none;
    transition: all var(--bf-transition-base);
}

.bf-app-btn:hover {
    border-color: var(--bf-orange);
    transform: translateY(-2px);
}

.bf-app-label {
    font-size: 11px;
    color: var(--bf-text-muted);
}

.bf-app-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.bf-app-web {
    font-size: 13px;
    color: var(--bf-text-muted);
    font-style: italic;
}

.bf-phone-mockup {
    width: 240px;
    height: 480px;
    background: var(--bf-dark-card);
    border-radius: 32px;
    margin: 0 auto;
    padding: 16px;
    box-shadow: var(--bf-shadow-xl);
    border: 8px solid var(--bf-black);
}

.bf-phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bf-gradient-hero);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

/* ========================================
   HOW TO START
   ======================================== */

.bf-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-xl);
    margin-bottom: var(--bf-spacing-xl);
}

@media (min-width: 768px) {
    .bf-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bf-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bf-step {
    text-align: center;
}

.bf-step-num {
    width: 72px;
    height: 72px;
    background: var(--bf-gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 auto var(--bf-spacing-md);
    box-shadow: 0 4px 16px rgba(255, 149, 0, 0.4);
}

.bf-step-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--bf-spacing-sm);
}

.bf-step-text {
    font-size: 14px;
    color: var(--bf-text-secondary);
    margin-bottom: var(--bf-spacing-md);
}

.bf-step-link {
    color: var(--bf-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--bf-transition-fast);
}

.bf-step-link:hover {
    color: var(--bf-orange-hover);
    text-decoration: underline;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.bf-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-lg);
}

@media (min-width: 768px) {
    .bf-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bf-testimonial {
    background: var(--bf-dark-card);
    padding: var(--bf-spacing-lg);
    border-radius: var(--bf-radius-lg);
    border-left: 4px solid var(--bf-orange);
}

.bf-testimonial-rating {
    font-size: 20px;
    margin-bottom: var(--bf-spacing-sm);
}

.bf-testimonial-text {
    font-size: 15px;
    color: var(--bf-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--bf-spacing-md);
    font-style: italic;
}

.bf-testimonial-author {
    font-size: 14px;
    color: var(--bf-text-muted);
}

.bf-testimonial-author strong {
    color: white;
    font-weight: 700;
}

.bf-testimonial-win {
    display: block;
    color: var(--bf-green);
    font-weight: 600;
    margin-top: 4px;
}

/* ========================================
   PROVIDERS
   ======================================== */

.bf-providers-table {
    text-align: center;
}

.bf-providers-table th:first-child,
.bf-providers-table td:first-child {
    text-align: left;
}

.bf-providers-note {
    text-align: center;
    font-size: 13px;
    color: var(--bf-text-muted);
    margin-top: var(--bf-spacing-lg);
}

/* ========================================
   FAQ
   ======================================== */

.bf-faq {
    max-width: 900px;
    margin: 0 auto;
}

.bf-faq-item {
    background: var(--bf-dark-card);
    border-radius: var(--bf-radius-md);
    margin-bottom: var(--bf-spacing-md);
    overflow: hidden;
}

.bf-faq-question {
    width: 100%;
    padding: var(--bf-spacing-lg);
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--bf-transition-base);
}

.bf-faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.bf-faq-question svg {
    flex-shrink: 0;
    transition: transform var(--bf-transition-base);
}

.bf-faq-item.active .bf-faq-question svg {
    transform: rotate(180deg);
}

.bf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.bf-faq-item.active .bf-faq-answer {
    max-height: 800px;
}

.bf-faq-answer p {
    padding: 0 var(--bf-spacing-lg) var(--bf-spacing-lg);
    font-size: 14px;
    color: var(--bf-text-secondary);
    line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */

.bf-footer {
    background: var(--bf-black);
    padding: calc(var(--bf-spacing-xl) * 2) 0 var(--bf-spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bf-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-xl);
    margin-bottom: var(--bf-spacing-xl);
}

@media (min-width: 768px) {
    .bf-footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bf-footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.bf-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--bf-spacing-md);
}

.bf-footer-text {
    font-size: 14px;
    color: var(--bf-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--bf-spacing-md);
}

.bf-footer-social {
    display: flex;
    gap: var(--bf-spacing-md);
}

.bf-social-link {
    font-size: 13px;
    color: var(--bf-text-secondary);
    text-decoration: none;
    transition: color var(--bf-transition-fast);
}

.bf-social-link:hover {
    color: var(--bf-orange);
}

.bf-footer-links {
    list-style: none;
}

.bf-footer-links li {
    margin-bottom: 8px;
}

.bf-footer-links a {
    font-size: 14px;
    color: var(--bf-text-secondary);
    text-decoration: none;
    transition: color var(--bf-transition-fast);
}

.bf-footer-links a:hover {
    color: var(--bf-orange);
}

.bf-footer-providers {
    padding: var(--bf-spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--bf-spacing-lg);
}

.bf-footer-provider-text {
    font-size: 13px;
    color: var(--bf-text-muted);
    text-align: center;
}

.bf-footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--bf-spacing-lg);
    padding: var(--bf-spacing-lg) 0;
}

@media (min-width: 768px) {
    .bf-footer-bottom {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.bf-footer-license p,
.bf-footer-responsible p {
    font-size: 12px;
    color: var(--bf-text-muted);
    margin-bottom: 8px;
}

.bf-18plus {
    font-size: 16px;
    font-weight: 700;
    color: var(--bf-orange);
    margin-bottom: var(--bf-spacing-sm);
}

.bf-responsible-text {
    font-size: 13px;
    color: var(--bf-text-secondary);
}

.bf-responsible-text a {
    color: var(--bf-orange);
}

.bf-footer-seals {
    display: flex;
    gap: var(--bf-spacing-sm);
    flex-wrap: wrap;
}

.bf-seal {
    font-size: 11px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--bf-radius-sm);
    color: var(--bf-text-secondary);
}

.bf-footer-copy {
    text-align: center;
    padding-top: var(--bf-spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bf-footer-copy p {
    font-size: 12px;
    color: var(--bf-text-muted);
    margin-bottom: 4px;
}

.bf-footer-disclaimer {
    font-style: italic;
}

.bf-subsection-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--bf-spacing-lg);
    text-align: center;
}

/* ========================================
   ADDITIONAL STYLES (ADDED FOR CONSISTENCY)
   ======================================== */

/* Navigation Links */
.bf-nav-link {
    color: var(--bf-text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color var(--bf-transition-base);
    padding: 8px 0;
}

.bf-nav-link:hover {
    color: var(--bf-orange);
}

.bf-nav-link-active {
    color: var(--bf-orange);
}

/* 404 Page Styles */
.bf-404-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(64px + var(--bf-spacing-xl)) var(--bf-spacing-md) var(--bf-spacing-xl);
    text-align: center;
}

.bf-404-bg {
    position: fixed;
    inset: 0;
    background: var(--bf-gradient-hero);
    z-index: -1;
}

.bf-404-content {
    max-width: 600px;
    margin: 0 auto;
}

.bf-404-emoji {
    font-size: 80px;
    margin-bottom: var(--bf-spacing-lg);
    animation: bf-float 3s ease-in-out infinite;
}

.bf-404-number {
    font-size: 120px;
    font-weight: 900;
    color: var(--bf-orange);
    line-height: 1;
    margin-bottom: var(--bf-spacing-md);
    text-shadow: 0 4px 16px rgba(255, 149, 0, 0.4);
}

.bf-404-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: var(--bf-spacing-md);
}

.bf-404-text {
    font-size: 16px;
    color: var(--bf-text-secondary);
    margin-bottom: var(--bf-spacing-xl);
    line-height: 1.7;
}

.bf-404-buttons {
    display: flex;
    gap: var(--bf-spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--bf-spacing-xl);
}

.bf-404-btn-home {
    padding: 16px 32px;
    background: var(--bf-green);
    color: white;
    border-radius: var(--bf-radius-xl);
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--bf-transition-base);
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
}

.bf-404-btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.6);
}

.bf-404-btn-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--bf-radius-xl);
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all var(--bf-transition-base);
    backdrop-filter: blur(10px);
}

.bf-404-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.bf-404-suggestions {
    background: var(--bf-dark-card);
    padding: var(--bf-spacing-xl);
    border-radius: var(--bf-radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.bf-404-suggestions-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--bf-spacing-md);
}

.bf-404-links {
    display: flex;
    flex-direction: column;
    gap: var(--bf-spacing-sm);
}

.bf-404-link {
    color: var(--bf-text-secondary);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color var(--bf-transition-fast);
}

.bf-404-link:hover {
    color: var(--bf-orange);
}

/* Responsible Gaming Content */
.bf-responsible-content {
    flex: 1;
}

.bf-responsible-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: var(--bf-spacing-sm);
}

.bf-responsible-content p {
    font-size: 13px;
    color: var(--bf-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--bf-spacing-sm);
}

/* Step Content */
.bf-step-content {
    flex: 1;
}

/* Auth Hero Subtitle */
.bf-auth-hero-subtitle {
    font-size: 16px;
    color: var(--bf-text-secondary);
    margin-bottom: var(--bf-spacing-lg);
}

/* Comparison Summary */
.bf-comparison-summary {
    background: var(--bf-dark-card);
    padding: var(--bf-spacing-lg);
    border-radius: var(--bf-radius-md);
    margin-top: var(--bf-spacing-lg);
    font-size: 14px;
    color: var(--bf-text-secondary);
}
