:root {
    --bg-color: #0a0a0a;
    --surface-color: rgba(22, 22, 22, 0.95);
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-primary: #ff4500;
    --accent-hover: #ff5722;
    --border-color: #2a2a2a;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    height: 100%;
}

/* --- NAVIGATION BAR --- */
.site-nav {
    background-color: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
}

.nav-brand {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.nav-brand span {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--accent-primary);
}

.nav-cta {
    background-color: var(--accent-primary);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--accent-hover);
}

.page-background-wrapper {
    min-height: 100vh;
    width: 100%;
    background-image:
        linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.75)),
        url('/img/bg.webp');
    background-repeat: repeat;
    background-attachment: scroll;
    padding-top: 1px;
    padding-bottom: 40px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* --- HERO BANNER --- */
.hero-banner {
    width: 100%;
    height: 280px;
    background-image: url('/img/hero.webp');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* --- BRAND HEADER --- */
.brand-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 20px;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.brand-title {
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #ffffff;
    border-bottom: 3px solid var(--accent-primary);
    display: inline-block;
    padding-bottom: 8px;
}

.brand-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 12px;
    margin-bottom: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- GENERAL SECTIONS --- */
.section {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.section-header {
    border-left: 4px solid var(--accent-primary);
    padding-left: 20px;
    margin-bottom: 25px;
}

.section h2, .section h3 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section p {
    color: var(--text-secondary);
    margin-top: 0;
    margin-bottom: 15px;
}

/* --- TOPICS GRID (SEO SECTION) --- */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.topic-card {
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.topic-card h4 {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 8px;
    display: inline-block;
}

.topic-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* --- VIDEO GRID --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.video-link {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.video-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.video-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-link:hover img {
    opacity: 1;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.video-link:hover .play-icon {
    background-color: var(--accent-primary);
}

.play-icon::before {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

/* --- CTA BUTTONS --- */
.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.btn-youtube {
    background-color: var(--accent-primary);
    color: #fff;
}

.btn-youtube:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
}

.btn-tiktok {
    background-image: linear-gradient(45deg, #25f4ee 0%, #fe2c55 100%);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-tiktok:hover {
    transform: translateY(-3px);
}

.btn-twitter, .btn-x {
    background-color: #1da1f2;
    color: #fff;
}

.btn-twitter:hover, .btn-x:hover {
    background-color: #0c85d0;
    transform: translateY(-3px);
}

.btn-rumble {
    background-color: #85c441;
    color: #fff;
}

.btn-rumble:hover {
    background-color: #72a835;
    transform: translateY(-3px);
}

.btn-instagram {
    background-image: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.btn-instagram:hover {
    transform: translateY(-3px);
}

.btn-patreon {
    background-color: #ff424d;
    color: #fff;
}

.btn-patreon:hover {
    background-color: #e0303a;
    transform: translateY(-3px);
}

.btn-discord {
    background-color: #5865f2;
    color: #fff;
}

.btn-discord:hover {
    background-color: #4752c4;
    transform: translateY(-3px);
}

/* --- STREAMS GRID --- */
.streams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.stream-card {
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.stream-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.stream-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.stream-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stream-title:hover {
    color: var(--accent-hover);
}

.stream-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    color: #fff;
    margin-top: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    border-left: 3px solid var(--accent-primary);
    padding-left: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-keywords h4 {
    color: #fff;
    margin-top: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
}

.tag:hover {
    border-color: var(--accent-primary);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-bottom {
    max-width: 1240px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
    .topics-grid, .streams-grid, .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-banner { height: 350px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .section { padding: 25px; }
    .video-grid { grid-template-columns: 1fr; }
    .cta-container { flex-direction: column; margin-bottom: 40px; }
    .btn { justify-content: center; width: 100%; box-sizing: border-box; }
}

/* --- LIVE SCHEDULE ANNOUNCEMENT BAR & BADGE --- */
.schedule-announcement-bar {
    background: linear-gradient(90deg, var(--accent-primary) 0%, #000 100%);
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 99;
}

.schedule-announcement-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.schedule-link {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.35);
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.schedule-link:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.live-schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-primary);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    margin-top: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

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

/* --- PREMIUM SOCIAL SHARE COMPONENT STYLES --- */
.share-section-card {
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95), rgba(14, 14, 14, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 32px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.share-buttons-container {
    display: flex !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    margin-top: 20px !important;
    align-items: center !important;
}

a.share-btn, button.share-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.92rem !important;
    color: #ffffff !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    letter-spacing: 0.3px !important;
    line-height: 1 !important;
}

a.share-btn svg, button.share-btn svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
}

a.share-btn.share-twitter { background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%) !important; box-shadow: 0 4px 14px rgba(29, 161, 242, 0.35) !important; }
a.share-btn.share-twitter:hover { transform: translateY(-3px) !important; box-shadow: 0 8px 22px rgba(29, 161, 242, 0.55) !important; color: #ffffff !important; }

a.share-btn.share-facebook { background: linear-gradient(135deg, #1877f2 0%, #0d5bb5 100%) !important; box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35) !important; }
a.share-btn.share-facebook:hover { transform: translateY(-3px) !important; box-shadow: 0 8px 22px rgba(24, 119, 242, 0.55) !important; color: #ffffff !important; }

a.share-btn.share-whatsapp { background: linear-gradient(135deg, #25d366 0%, #179b48 100%) !important; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35) !important; }
a.share-btn.share-whatsapp:hover { transform: translateY(-3px) !important; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55) !important; color: #ffffff !important; }

button.share-btn.share-copy { background: linear-gradient(135deg, #444 0%, #222 100%) !important; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35) !important; border: 1px solid #555 !important; }
button.share-btn.share-copy:hover { transform: translateY(-3px) !important; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55) !important; border-color: #777 !important; color: #ffffff !important; }