/* GLOBAL */
body {
    margin: 0;
    background: #000;
    font-family: Segoe UI, Tahoma, sans-serif;
    color: #f0c847;
    text-align: center;
}

/* MAIN LOGO */
.hero-logo-large {
    width: 380px;
    max-width: 90%;
    margin-top: 30px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 20px #b7922c);
}

.site-title {
    font-size: 32px;
    margin: 10px 0 4px;
    font-weight: bold;
}

.site-subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
}

/* SOCIAL BUTTONS */
.social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-gold {
    background: linear-gradient(#f6d878, #b38b1e);
    padding: 10px 22px;
    border-radius: 12px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 12px #b38b1e;
    transition: 0.2s;
}

.btn-gold:hover {
    filter: brightness(1.25);
}

/* FEATURED VIDEO */
.video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.video-box iframe {
    width: 320px;
    height: 560px;
    border-radius: 20px;
    box-shadow: 0 0 20px #b38b1e;
}

/* SERIES GRID */
.series-wrapper {
    margin-bottom: 60px;
}

.series-title {
    font-size: 26px;
    margin-bottom: 20px;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.panel img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 0 18px #b38b1e;
    transition: 0.25s;
}

.panel img:hover {
    transform: scale(1.06);
    filter: brightness(1.25);
}

/* FOOTER */
.footer {
    margin-top: 50px;
    padding-bottom: 30px;
    font-size: 14px;
    opacity: 0.7;
}
