.hero {
    background: var(--bg-nav);
    padding: 48px 24px 0;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: end;
}

.hero-left {
    padding-bottom: 48px;
}

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

.hero-breadcrumb span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.hero-breadcrumb .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.hero-breadcrumb .active {
    color: var(--accent);
}

.hero-h1 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-h1 .accent {
    color: var(--accent);
}

.hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

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

.btn-blue {
    padding: 12px 24px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-outline {
    padding: 12px 24px;
    border-radius: var(--radius);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-spotlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    text-decoration: none;
    display: block;
}

.hero-spotlight:hover {
    border-color: var(--primary-light);
}

.spotlight-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

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

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.spotlight-play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.5);
    transition: transform 0.2s;
}

.hero-spotlight:hover .spotlight-play {
    transform: scale(1.1);
}

.spotlight-info {
    padding: 16px 20px 20px;
}

.spotlight-tags {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.tag {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-light);
}

.tag.accent {
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent);
}

.spotlight-name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.spotlight-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

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

    .hero-spotlight {
        display: none;
    }

    .hero-h1 {
        font-size: 30px;
    }
}
