/**
 * Theme Name: BolaCentral Pro Theme
 * Theme URI: https://bolacentral.com
 * Author: BolaCentral Team
 * Author URI: https://bolacentral.com
 * Description: Tema profesional untuk BolaCentral SEO Pro - Prediksi Bola, Mix Parlay, Togel & Highlight Video
 * Version: 1.0.0
 * License: GPL2
 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
 * Text Domain: bolacentral-pro
 * Tags: sports, prediction, soccer, betting, responsive, seo, schema, mobile-first
 * Requires at least: 5.8
 * Tested up to: 6.4
 * Requires PHP: 7.4
 */

/* ========================================
   BOLACENTRAL PRO THEME - MAIN STYLES
   Professional Sports Prediction Theme
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors */
    --wb-primary: #1a56db;
    --wb-primary-dark: #1e429f;
    --wb-primary-light: #3f83f8;
    --wb-primary-gradient: linear-gradient(135deg, #1a56db 0%, #3f83f8 100%);

    /* Accent Colors */
    --wb-accent: #00d4aa;
    --wb-accent-gradient: linear-gradient(135deg, #00d4aa 0%, #10b981 100%);

    /* Background Colors */
    --wb-dark: #0f172a;
    --wb-dark-light: #1e293b;
    --wb-dark-lighter: #334155;

    /* Text Colors */
    --wb-text-primary: #111827;
    --wb-text-secondary: #4b5563;
    --wb-text-muted: #9ca3af;
    --wb-text-light: #d1d5db;

    /* Surface Colors */
    --wb-surface: #ffffff;
    --wb-surface-alt: #f9fafb;
    --wb-surface-dark: #1f2937;

    /* Border Colors */
    --wb-border: #e5e7eb;
    --wb-border-light: #f3f4f6;

    /* Status Colors */
    --wb-success: #10b981;
    --wb-warning: #f59e0b;
    --wb-danger: #ef4444;
    --wb-info: #3b82f6;

    /* Shadows */
    --wb-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --wb-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --wb-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --wb-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --wb-shadow-glow: 0 0 20px rgba(26, 86, 219, 0.15);

    /* Border Radius */
    --wb-radius-sm: 6px;
    --wb-radius: 12px;
    --wb-radius-lg: 16px;
    --wb-radius-xl: 24px;
    --wb-radius-full: 9999px;

    /* Transitions */
    --wb-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --wb-transition-fast: all 0.15s ease;

    /* Typography */
    --wb-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --wb-font-display: 'Inter', var(--wb-font-sans);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--wb-font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--wb-text-primary);
    background-color: var(--wb-surface-alt);
    overflow-x: hidden;
}

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

a {
    color: var(--wb-primary);
    text-decoration: none;
    transition: var(--wb-transition-fast);
}

a:hover {
    color: var(--wb-primary-dark);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--wb-font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--wb-text-primary);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1rem;
    color: var(--wb-text-secondary);
}

/* ===== LAYOUT ===== */
.wb-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wb-container-narrow {
    max-width: 960px;
}

.wb-section {
    padding: 3rem 0;
}

.wb-grid {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    align-items: stretch;
}

.wb-grid > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

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

@media (max-width: 1024px) {
    .wb-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .wb-grid-2,
    .wb-grid-3,
    .wb-grid-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ===== HEADER ===== */
.wb-header {
    background: var(--wb-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--wb-shadow-lg);
}

.wb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.wb-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 2rem;
}

.wb-logo:hover {
    color: var(--wb-primary-light);
}

.wb-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--wb-primary-gradient);
    border-radius: var(--wb-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Navigation */
.wb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: flex-end;
    margin-left: 1rem;
}

.wb-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--wb-radius);
    transition: var(--wb-transition);
    white-space: nowrap;
    line-height: 1.4;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.06);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 0.01em;
}

.wb-nav a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-1px);
}

.wb-nav a.active {
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Mobile Menu */
.wb-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 1024px) {
    .wb-header-inner {
        height: 68px;
    }

    .wb-logo {
        font-size: 1.2rem;
        padding-right: 0.5rem;
    }

    .wb-logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
    }

    .wb-nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--wb-dark);
        flex-direction: column;
        padding: 0.75rem;
        gap: 0.35rem;
        box-shadow: var(--wb-shadow-xl);
        justify-content: flex-start;
        margin-left: 0;
    }

    .wb-nav.active {
        display: flex;
    }

    .wb-nav a {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        font-weight: 700;
    }

    .wb-mobile-toggle {
        display: block;
    }
}

/* ===== HERO SECTION ===== */
.wb-hero {
    background: linear-gradient(135deg, var(--wb-dark) 0%, var(--wb-dark-light) 50%, var(--wb-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.wb-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wb-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wb-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.wb-hero h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.wb-hero p {
    color: var(--wb-text-muted);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
}

.wb-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.wb-hero-stat {
    text-align: center;
}

.wb-hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--wb-accent);
}

.wb-hero-stat-label {
    font-size: 0.875rem;
    color: var(--wb-text-muted);
}

@media (max-width: 768px) {
    .wb-hero-stats {
        gap: 1.5rem;
    }
    .wb-hero-stat-number {
        font-size: 1.5rem;
    }
}

/* ===== CARDS ===== */
.wb-card {
    background: var(--wb-surface);
    border-radius: var(--wb-radius);
    overflow: hidden;
    box-shadow: var(--wb-shadow-sm);
    border: 1px solid var(--wb-border);
    transition: var(--wb-transition);
}

.wb-card:hover {
    box-shadow: var(--wb-shadow-lg);
    transform: translateY(-2px);
}

.wb-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.wb-card:hover .wb-card-image img {
    transform: scale(1.05);
}

.wb-card-body {
    padding: 1.25rem;
}

.wb-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.wb-card-title a {
    color: var(--wb-text-primary);
}

.wb-card-title a:hover {
    color: var(--wb-primary);
}

.wb-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--wb-text-muted);
    margin-bottom: 0.75rem;
}

.wb-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.wb-card-excerpt {
    font-size: 0.9rem;
    color: var(--wb-text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.wb-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--wb-border-light);
}

/* ===== BADGES ===== */
.wb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--wb-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.wb-badge-primary {
    background: rgba(26, 86, 219, 0.1);
    color: var(--wb-primary);
}

.wb-badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--wb-success);
}

.wb-badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--wb-warning);
}

.wb-badge-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--wb-danger);
}

.wb-badge-dark {
    background: var(--wb-dark);
    color: #ffffff;
}

/* ===== BUTTONS ===== */
.wb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--wb-radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--wb-transition);
    text-decoration: none;
    font-family: inherit;
}

.wb-btn-primary {
    background: var(--wb-primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

.wb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
    color: #ffffff;
}

.wb-btn-success {
    background: var(--wb-accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 212, 170, 0.3);
}

.wb-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    color: #ffffff;
}

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

.wb-btn-outline:hover {
    background: var(--wb-primary);
    color: #ffffff;
}

.wb-btn-ghost {
    background: transparent;
    color: var(--wb-text-secondary);
}

.wb-btn-ghost:hover {
    background: var(--wb-surface-alt);
    color: var(--wb-text-primary);
}

.wb-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.wb-btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ===== SECTION HEADERS ===== */
.wb-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.wb-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.wb-section-title-icon {
    width: 40px;
    height: 40px;
    background: var(--wb-primary-gradient);
    border-radius: var(--wb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
}

/* ===== MATCH CARD (Special) ===== */
.wb-match-card {
    background: var(--wb-surface);
    border-radius: var(--wb-radius-lg);
    overflow: hidden;
    box-shadow: var(--wb-shadow);
    border: 1px solid var(--wb-border);
    transition: var(--wb-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wb-match-card .wb-match-body {
    flex: 1;
}

.wb-match-card:hover {
    box-shadow: var(--wb-shadow-xl);
    transform: translateY(-4px);
}

/* Featured Image on Card */
.wb-match-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.wb-match-card:hover .wb-match-card-image img {
    transform: scale(1.05);
}

.wb-match-card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.wb-match-card-league-overlay {
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wb-match-header {
    background: linear-gradient(135deg, var(--wb-dark) 0%, var(--wb-dark-light) 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wb-match-league {
    color: var(--wb-text-light);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wb-match-date {
    color: var(--wb-text-muted);
    font-size: 0.8rem;
}

.wb-match-body {
    padding: 1.5rem;
}

.wb-match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.wb-match-team {
    text-align: center;
    flex: 1;
}

.wb-match-team-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.5rem;
    background: var(--wb-surface-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--wb-border);
}

.wb-match-team-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--wb-text-primary);
}

.wb-match-vs {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--wb-primary);
    background: rgba(26, 86, 219, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.wb-match-prediction {
    background: var(--wb-surface-alt);
    border-radius: var(--wb-radius);
    padding: 1rem;
    text-align: center;
}

.wb-match-prediction-label {
    font-size: 0.75rem;
    color: var(--wb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.wb-match-prediction-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--wb-primary);
}

.wb-match-prediction-recommendation {
    font-size: 0.875rem;
    color: var(--wb-success);
    font-weight: 600;
}

.wb-match-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--wb-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.wb-match-footer .wb-btn-sm {
    flex-shrink: 0;
    white-space: nowrap;
}

.wb-match-confidence {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--wb-text-muted);
    white-space: nowrap;
}

.wb-confidence-bar {
    width: 60px;
    height: 6px;
    background: var(--wb-border);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.wb-confidence-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
    background: var(--wb-accent-gradient);
}

/* ===== TOGEL CARD ===== */
.wb-togel-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--wb-radius-lg);
    padding: 2rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wb-togel-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.wb-togel-market {
    font-size: 0.875rem;
    color: var(--wb-text-muted);
    margin-bottom: 0.5rem;
}

.wb-togel-number {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.5rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin: 1rem 0;
}

.wb-togel-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--wb-text-muted);
}

/* ===== SLOT CARD ===== */
.wb-slot-card {
    background: var(--wb-surface);
    border-radius: var(--wb-radius-lg);
    overflow: hidden;
    box-shadow: var(--wb-shadow);
    border: 1px solid var(--wb-border);
    transition: var(--wb-transition);
    display: flex;
    flex-direction: column;
}

.wb-slot-card:hover {
    box-shadow: var(--wb-shadow-xl);
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.3);
}

.wb-slot-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 1.25rem 1.5rem;
    color: #ffffff;
}

.wb-slot-provider-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--wb-radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.wb-slot-game-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.wb-slot-game-title a {
    color: #ffffff;
}

.wb-slot-game-title a:hover {
    color: rgba(255,255,255,0.9);
}

.wb-slot-rtp-section {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--wb-border);
}

.wb-slot-rtp-label {
    font-size: 0.75rem;
    color: var(--wb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.wb-slot-rtp-bar {
    width: 100%;
    height: 10px;
    background: var(--wb-border);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.wb-slot-rtp-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.wb-slot-rtp-value {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: right;
}

.wb-slot-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0 1.5rem;
}

.wb-slot-stat {
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid var(--wb-border);
}

.wb-slot-stat:first-child {
    border-right: 1px solid var(--wb-border);
}

.wb-slot-stat-label {
    font-size: 0.7rem;
    color: var(--wb-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.wb-slot-stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--wb-text-primary);
}

.wb-slot-footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.wb-slot-date {
    font-size: 0.8rem;
    color: var(--wb-text-muted);
}

/* ===== HIGHLIGHT CARD ===== */
.wb-hl-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.wb-hl-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.wb-hl-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.wb-hl-link:hover {
    color: inherit;
}

/* Top area */
.wb-hl-top {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

/* YouTube/Featured image */
.wb-hl-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

.wb-hl-card:hover .wb-hl-img {
    transform: scale(1.05);
}

/* Dark shade overlay */
.wb-hl-shade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2;
    transition: background 0.3s ease;
}

.wb-hl-card:hover .wb-hl-shade {
    background: rgba(0,0,0,0.5);
}

/* Match overlay */
.wb-hl-match {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 3;
    padding: 0 0.75rem;
}

.wb-hl-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
    max-width: 130px;
}

.wb-hl-tm {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.wb-hl-sc {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.wb-hl-vs {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Play button */
.wb-hl-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 4;
    pointer-events: none;
    transition: all 0.3s ease;
}

.wb-hl-card:hover .wb-hl-btn {
    background: #dc2626;
    transform: translateX(-50%) scale(1.1);
    border-color: rgba(255,255,255,0.5);
}

/* Body */
.wb-hl-body {
    padding: 1rem;
}

.wb-hl-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.4rem 0;
    color: #111827;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wb-hl-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.wb-hl-liga {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 600;
}

.wb-hl-scr {
    font-size: 1rem;
    font-weight: 800;
    color: #ef4444;
}

/* ===== MIX PARLAY CARD ===== */
.wb-parlay-card {
    background: var(--wb-surface);
    border-radius: var(--wb-radius-lg);
    overflow: hidden;
    border: 1px solid var(--wb-border);
    box-shadow: var(--wb-shadow);
}

.wb-parlay-header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    padding: 1.25rem;
    color: #ffffff;
}

.wb-parlay-header h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.wb-parlay-odds {
    font-size: 1.5rem;
    font-weight: 800;
}

.wb-parlay-body {
    padding: 1.25rem;
}

.wb-parlay-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--wb-border-light);
}

.wb-parlay-match:last-child {
    border-bottom: none;
}

.wb-parlay-match-teams {
    font-size: 0.875rem;
    font-weight: 600;
}

.wb-parlay-match-prediction {
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    background: rgba(26, 86, 219, 0.1);
    color: var(--wb-primary);
    border-radius: var(--wb-radius-full);
    font-weight: 600;
}

/* ===== SINGLE POST ===== */
.wb-single {
    background: var(--wb-surface);
    border-radius: var(--wb-radius-lg);
    overflow: hidden;
    box-shadow: var(--wb-shadow);
}

.wb-single-header {
    padding: 2rem;
    border-bottom: 1px solid var(--wb-border);
}

.wb-single-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.wb-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--wb-text-muted);
}

.wb-single-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.wb-single-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.wb-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wb-single-content {
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.wb-single-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--wb-border-light);
}

.wb-single-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.wb-single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border-radius: var(--wb-radius-sm);
    overflow: hidden;
}

.wb-single-content th {
    background: var(--wb-dark);
    color: #ffffff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.wb-single-content td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--wb-border);
}

.wb-single-content tr:nth-child(even) {
    background: var(--wb-surface-alt);
}

.wb-single-content ul,
.wb-single-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.wb-single-content blockquote {
    background: var(--wb-surface-alt);
    border-left: 4px solid var(--wb-primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--wb-text-secondary);
}

.wb-single-content iframe {
    max-width: 100%;
    border-radius: var(--wb-radius);
}

/* Video wrapper */
.wb-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: var(--wb-dark);
    border-radius: var(--wb-radius);
    margin: 1.5rem 0;
}

.wb-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== SIDEBAR ===== */
.wb-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wb-widget {
    background: var(--wb-surface);
    border-radius: var(--wb-radius);
    padding: 1.5rem;
    box-shadow: var(--wb-shadow-sm);
    border: 1px solid var(--wb-border);
}

.wb-widget-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--wb-border-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wb-widget-list {
    list-style: none;
}

.wb-widget-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--wb-border-light);
}

.wb-widget-list li:last-child {
    border-bottom: none;
}

.wb-widget-list a {
    color: var(--wb-text-secondary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wb-widget-list a:hover {
    color: var(--wb-primary);
}

/* ===== PAGINATION ===== */
.wb-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.wb-pagination a,
.wb-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--wb-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--wb-transition-fast);
}

.wb-pagination a {
    background: var(--wb-surface);
    color: var(--wb-text-secondary);
    border: 1px solid var(--wb-border);
}

.wb-pagination a:hover {
    background: var(--wb-primary);
    color: #ffffff;
    border-color: var(--wb-primary);
}

.wb-pagination span.current {
    background: var(--wb-primary-gradient);
    color: #ffffff;
}

/* ===== BREADCRUMB ===== */
.wb-breadcrumb {
    background: var(--wb-surface);
    padding: 1rem 0;
    border-bottom: 1px solid var(--wb-border);
}

.wb-breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--wb-text-muted);
}

.wb-breadcrumb a {
    color: var(--wb-text-secondary);
}

.wb-breadcrumb a:hover {
    color: var(--wb-primary);
}

.wb-breadcrumb-separator {
    color: var(--wb-text-muted);
}

.wb-breadcrumb-current {
    color: var(--wb-text-primary);
    font-weight: 600;
}

/* ===== FOOTER ===== */
.wb-footer {
    background: var(--wb-dark);
    color: var(--wb-text-light);
    padding: 3rem 0 0;
    margin-top: 4rem;
}

.wb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.wb-footer-brand {
    max-width: 300px;
}

.wb-footer-brand .wb-logo {
    margin-bottom: 1rem;
}

.wb-footer-brand p {
    color: var(--wb-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

.wb-footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

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

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

.wb-footer-links a {
    color: var(--wb-text-muted);
    font-size: 0.875rem;
    transition: var(--wb-transition-fast);
}

.wb-footer-links a:hover {
    color: var(--wb-primary-light);
}

.wb-footer-bottom {
    border-top: 1px solid var(--wb-dark-light);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--wb-text-muted);
}

@media (max-width: 1024px) {
    .wb-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .wb-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .wb-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== SPORT TAGS ===== */
.wb-sport-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wb-sport-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    background: var(--wb-surface);
    border: 1px solid var(--wb-border);
    border-radius: var(--wb-radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--wb-text-secondary);
    transition: var(--wb-transition-fast);
    cursor: pointer;
}

.wb-sport-tag:hover,
.wb-sport-tag.active {
    background: var(--wb-primary);
    color: #ffffff;
    border-color: var(--wb-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.wb-animate-fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
    .wb-section {
        padding: 2rem 0;
    }

    .wb-container {
        padding: 0 1rem;
    }

    .wb-single-header,
    .wb-single-content {
        padding: 1.5rem;
    }

    .wb-match-teams {
        gap: 1rem;
    }

    .wb-match-team-logo {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .wb-hero {
        padding: 2.5rem 0;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .wb-header,
    .wb-footer,
    .wb-sidebar,
    .wb-pagination {
        display: none !important;
    }

    .wb-single {
        box-shadow: none;
    }

    body {
        background: #ffffff;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--wb-surface-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--wb-text-muted);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--wb-text-secondary);
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--wb-primary);
    outline-offset: 2px;
}

/* ===== UTILITY CLASSES ===== */
.wb-text-center { text-align: center; }
.wb-text-right { text-align: right; }
.wb-text-left { text-align: left; }

.wb-mt-1 { margin-top: 0.5rem; }
.wb-mt-2 { margin-top: 1rem; }
.wb-mt-3 { margin-top: 1.5rem; }
.wb-mt-4 { margin-top: 2rem; }

.wb-mb-1 { margin-bottom: 0.5rem; }
.wb-mb-2 { margin-bottom: 1rem; }
.wb-mb-3 { margin-bottom: 1.5rem; }
.wb-mb-4 { margin-bottom: 2rem; }

.wb-flex { display: flex; }
.wb-items-center { align-items: center; }
.wb-justify-between { justify-content: space-between; }
.wb-gap-2 { gap: 1rem; }
.wb-gap-3 { gap: 1.5rem; }
