/* ============================================
   BCF HERO SLIDER — Fully Responsive
   ============================================ */

/* Hide old hero if any remnants exist */
.hero, .hero-content, .hero-left, .hero-right,
.hero-buttons, .hero-stats, .ranking-card { display: none !important; }

/* Kill any overlay on hero slider */
.bcf-hero-slider .tournament-card-overlay,
.bcf-hero-slider .bcf-hero-slide-overlay,
.bcf-hero-slider [class*="overlay"],
.bcf-hero-slider::before,
.bcf-hero-slider::after,
.bcf-hero-slides::before,
.bcf-hero-slides::after,
.bcf-hero-slide::before,
.bcf-hero-slide::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    opacity: 0 !important;
    z-index: -1 !important;
}

/* Slider wrapper */
.bcf-hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: transparent !important;
}

/* Slides container */
.bcf-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.bcf-hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
    visibility: hidden;
}

.bcf-hero-slide.active {
    opacity: 1 !important;
    z-index: 1;
    visibility: visible !important;
}

/* Slide image */
.bcf-hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 1 !important;
    filter: none !important;
}

/* Hero Content Overlay — centered bottom */
.bcf-hero-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    max-width: 700px;
    width: 90%;
    text-align: center;
}

.bcf-hero-badge {
    background: rgba(199, 28, 35, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.bcf-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: white;
}

.bcf-hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.bcf-hero-btn {
    display: inline-block;
    background: var(--color-primary, #C71C23);
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary, #C71C23);
}

.bcf-hero-btn:hover {
    background: transparent;
    color: white;
    text-decoration: none;
}

/* Navigation arrows */
.bcf-hero-controls {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
    pointer-events: none;
}

.bcf-hero-arrow {
    width: 48px; height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.bcf-hero-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Dots */
.bcf-hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.bcf-hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.bcf-hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ============================================
   RESPONSIVE — Tablets (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .bcf-hero-slider { height: 460px; }
    .bcf-hero-content h1 { font-size: 44px; }
    .bcf-hero-content { bottom: 70px; }
}

/* ============================================
   RESPONSIVE — Tablets portrait / large phones (768px)
   ============================================ */
@media (max-width: 768px) {
    .bcf-hero-slider { height: 400px; }
    .bcf-hero-content {
        bottom: 60px;
        max-width: 500px;
        width: 90%;
    }
    .bcf-hero-content h1 { font-size: 34px; }
    .bcf-hero-content p { font-size: 14px; margin-bottom: 20px; }
    .bcf-hero-badge { font-size: 10px; padding: 6px 12px; margin-bottom: 15px; }
    .bcf-hero-btn { padding: 12px 28px; font-size: 13px; }
    .bcf-hero-arrow { width: 40px; height: 40px; font-size: 16px; }
    .bcf-hero-controls { padding: 0 16px; }
    .bcf-hero-dots { bottom: 20px; }
    .bcf-hero-dot { width: 9px; height: 9px; }
}

/* ============================================
   RESPONSIVE — Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
    .bcf-hero-slider { height: 320px; }
    .bcf-hero-content {
        bottom: 50px;
        max-width: 100%;
        width: 92%;
    }
    .bcf-hero-content h1 { font-size: 26px; line-height: 1.15; }
    .bcf-hero-content p { font-size: 12px; margin-bottom: 16px; line-height: 1.4; }
    .bcf-hero-badge { font-size: 9px; padding: 5px 10px; margin-bottom: 12px; letter-spacing: 1px; }
    .bcf-hero-btn { padding: 10px 22px; font-size: 12px; }
    .bcf-hero-arrow { width: 34px; height: 34px; font-size: 14px; }
    .bcf-hero-controls { padding: 0 12px; }
    .bcf-hero-dots { bottom: 14px; gap: 6px; }
    .bcf-hero-dot { width: 8px; height: 8px; }
}

/* ============================================
   RESPONSIVE — Small mobile (360px)
   ============================================ */
@media (max-width: 360px) {
    .bcf-hero-slider { height: 280px; }
    .bcf-hero-content { bottom: 40px; }
    .bcf-hero-content h1 { font-size: 22px; }
    .bcf-hero-content p { font-size: 11px; margin-bottom: 12px; }
    .bcf-hero-badge { font-size: 8px; padding: 4px 8px; margin-bottom: 10px; }
    .bcf-hero-btn { padding: 8px 18px; font-size: 11px; }
    .bcf-hero-arrow { width: 30px; height: 30px; font-size: 12px; }
    .bcf-hero-dots { bottom: 10px; gap: 5px; }
    .bcf-hero-dot { width: 7px; height: 7px; }
}
