.hero {
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(245, 200, 66, 0.08) 0%,
        rgba(255, 71, 87, 0.06) 50%,
        rgba(46, 213, 115, 0.05) 100%
    );
    pointer-events: none;
}

.hero-inner {
    max-width: var(--w);
    margin: 0 auto;
    padding: 50px 24px 44px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.kicker-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.kicker-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 16px;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero p {
    font-size: 15px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 12px 28px;
    background: var(--gold);
    border-radius: 6px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold2);
    transform: translateY(-1px);
}

.btn-outline {
    padding: 12px 28px;
    border: 2px solid rgba(245, 200, 66, 0.4);
    border-radius: 6px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(245, 200, 66, 0.08);
}

.hero-featured-card {
    background: var(--bg3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(245, 200, 66, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.hf-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #222;
    position: relative;
}

.hf-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hero-featured-card:hover .hf-thumb img {
    transform: scale(1.04);
}

.hf-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #111;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.hf-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.2s;
}

.hero-featured-card:hover .hf-play {
    opacity: 1;
}

.hf-play svg {
    width: 52px;
    height: 52px;
    fill: #fff;
    filter: drop-shadow(0 0 12px rgba(245, 200, 66, 0.8));
}

.hf-info {
    padding: 14px 16px;
}

.hf-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hf-cat {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

.hero-stats {
    max-width: var(--w);
    margin: 0 auto;
    display: flex;
    border-top: 1px solid var(--border);
    padding: 0 24px;
}

.hero-stat {
    flex: 1;
    padding: 18px 0;
    text-align: center;
    border-right: 1px solid var(--border);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
}

.hero-stat span {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }
}

@media screen and (max-width: 769px) {
    .hero-inner {
        padding: 36px 16px 32px;
    }

    .hero-stats {
        padding: 0 16px;
    }

    .hero-stat strong {
        font-size: 18px;
    }
}
