.hero {
    width: 100%;
    min-height: 85vh;
    background: linear-gradient(135deg, #2e0854 0%, #000000 100%);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 60px 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.hero-content { flex: 1 1 500px; text-align: left; }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 25px; line-height: 1.1; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); margin-bottom: 40px; line-height: 1.6; opacity: 0.9; }
.hero-cta { display: inline-block; background: #bb86fc; color: #000; padding: 16px 35px; border-radius: 12px; text-decoration: none; font-weight: 700; transition: 0.3s; }

.hero-predictions {
    flex: 1 1 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.predictions-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    color: #bb86fc;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.predictions-scroll { max-height: 400px; overflow-y: auto; }
.hero-table { width: 100%; border-collapse: collapse; }
.hero-table td { padding: 15px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); vertical-align: middle; }

.hero-time-col { width: 70px; }
.hero-time-col .local-time { display: block; font-weight: 700; font-size: 14px; }
.hero-time-col small { color: #888; font-size: 10px; }

.hero-match-col .team { font-size: 13px; font-weight: 600; color: #eee; margin: 2px 0; }

.hero-status-col { text-align: right; }

.hero-btn-vip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffcc00;
    color: #ffcc00;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    line-height: 1;
    transition: 0.3s;
}

.lock-dot {
    font-size: 18px;
    margin-right: 5px;
    line-height: 0;
    margin-bottom: 2px;
}

.hero-badge-tip {
    background: #bb86fc;
    color: #000;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
}

.predictions-scroll::-webkit-scrollbar { width: 4px; }
.predictions-scroll::-webkit-scrollbar-thumb { background: #bb86fc; border-radius: 10px; }

@media (max-width: 992px) {
    .hero-container { text-align: center; justify-content: center; }
    .hero-content { flex: 1 1 100%; }
    .hero-predictions { flex: 1 1 100%; max-width: 500px; }
}