/*
Theme Name: Stream World Pro
Author: You & Gemini
Description: Custom streaming theme v2.0.
Version: 2.0
*/

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --twitch: #9146ff;
    --youtube: #ff0000;
    --kick: #53fc18;
    --discord: #5865F2;
}

body { background-color: var(--bg-dark); color: var(--text-main); font-family: 'Helvetica Neue', Arial, sans-serif; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }

/* --- HEADER & NAV --- */
#site-header {
    position: absolute;
    width: 100%;
    z-index: 100; /* Above everything */
    padding: 20px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Ensures the logo image fits nicely */
.custom-logo-link img { max-height: 60px; width: auto; }
.site-title-text { font-weight: bold; font-size: 1.5rem; color: #fff; }
.nav-menu { display: flex; gap: 25px; list-style: none; margin: 0; }
.nav-menu li a { font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.nav-menu li a:hover { color: var(--twitch); }


/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 90vh;
    background-color: #000;
    background-position: center; background-size: cover; background-repeat: no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center;
    overflow: hidden;
}
/* Dark overlay */
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 1; }

/* Foreground Character - OPACITY REMOVED HERE */
.hero-layer-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 2;
    /* opacity: 0.8;  <-- REMOVED THIS LINE SO IT'S FULLY OPAQUE */
}

/* Content */
.hero-content { position: relative; z-index: 10; padding: 20px; max-width: 900px; }
.hero-title { font-size: 4rem; text-transform: uppercase; font-weight: 800; margin: 0; text-shadow: 0 4px 10px rgba(0,0,0,0.8); }
.hero-subtitle { font-size: 1.2rem; color: #ddd; margin: 10px 0 30px 0; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

/* Buttons */
.hero-btn-container { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
    padding: 12px 30px; border-radius: 50px; font-weight: bold; text-transform: uppercase; font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.btn-hero:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(90deg, var(--twitch), var(--youtube)); color: #fff; }
.btn-secondary { background: #fff; color: #000; }
.btn-tertiary { background: transparent; border: 2px solid #fff; color: #fff; } /* New 3rd button style */


/* --- REST OF THEME --- */
.status-bar { background: #000; border-bottom: 1px solid #222; padding: 15px 0; text-align: center; }
.status-bar span { margin: 0 15px; font-size: 0.9rem; color: #ccc; } .status-bar strong { color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.content-area { padding: 60px 20px; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 40px; text-transform: uppercase; }
.stream-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: var(--bg-card); padding: 30px; border-radius: 10px; text-align: center; border-top: 4px solid #333; }
.card-twitch { border-color: var(--twitch); } .card-youtube { border-color: var(--youtube); } .card-kick { border-color: var(--kick); } .card-discord { border-color: var(--discord); }
.card h3 { margin-top: 0; }
.btn-card { display: block; margin-top: 20px; padding: 10px; background: #222; border-radius: 5px; font-size: 0.8rem; }
.btn-card:hover { background: #333; }
.site-footer { background: #000; border-top: 1px solid #222; padding-top: 60px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 40px; }
.widget h3 { color: #fff; border-bottom: 2px solid #333; padding-bottom: 10px; display: inline-block; }
.widget ul { list-style: none; padding: 0; } .widget li { margin-bottom: 8px; color: #888; }
.center-widget { text-align: center; } .right-widget { text-align: right; }
.copyright { text-align: center; padding: 20px; background: #080808; color: #444; font-size: 0.8rem; }