/* ===== HOMEPAGE HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    background: var(--bg-primary);
}

/* ===== DECORAÇÕES GEOMÉTRICAS DOURADAS ===== */

/* Linhas horizontais — canto superior esquerdo */
.hero-deco--lines-tl {
    position: absolute;
    top: 8%;
    left: -2%;
    width: 320px;
    height: 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    background:
        linear-gradient(90deg, transparent 0%, var(--accent) 10%, var(--accent) 70%, transparent 100%) no-repeat 0 0 / 100% 1.5px,
        linear-gradient(90deg, transparent 5%, var(--accent) 15%, var(--accent) 50%, transparent 80%) no-repeat 0 14px / 85% 1.5px,
        linear-gradient(90deg, transparent 0%, var(--accent) 8%, var(--accent) 40%, transparent 65%) no-repeat 0 28px / 70% 1.5px,
        linear-gradient(90deg, transparent 10%, var(--accent) 20%, var(--accent) 55%, transparent 75%) no-repeat 0 42px / 60% 1.5px;
}

/* Linhas horizontais — canto inferior direito */
.hero-deco--lines-br {
    position: absolute;
    bottom: 10%;
    right: -2%;
    width: 300px;
    height: 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
    background:
        linear-gradient(270deg, transparent 0%, var(--accent) 10%, var(--accent) 70%, transparent 100%) no-repeat 100% 0 / 100% 1.5px,
        linear-gradient(270deg, transparent 5%, var(--accent) 15%, var(--accent) 50%, transparent 80%) no-repeat 100% 14px / 80% 1.5px,
        linear-gradient(270deg, transparent 0%, var(--accent) 8%, var(--accent) 40%, transparent 65%) no-repeat 100% 28px / 65% 1.5px,
        linear-gradient(270deg, transparent 10%, var(--accent) 20%, var(--accent) 55%, transparent 75%) no-repeat 100% 42px / 55% 1.5px;
}

/* Triângulos geométricos — canto superior direito */
.hero-deco--tri {
    position: absolute;
    top: 2%;
    right: 2%;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

.hero-deco--tri::before,
.hero-deco--tri::after {
    content: '';
    position: absolute;
    border: 1.5px solid var(--accent);
    border-radius: 2px;
}

.hero-deco--tri::before {
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    transform: rotate(15deg);
    clip-path: polygon(100% 0%, 100% 100%, 30% 100%);
}

.hero-deco--tri::after {
    top: 20px;
    right: 15px;
    width: 130px;
    height: 130px;
    transform: rotate(15deg);
    clip-path: polygon(100% 0%, 100% 100%, 25% 100%);
}

/* ===== CONTEÚDO ===== */

/* Logo principal acima da stream */
.hero-logo {
    position: relative;
    z-index: 2;
    height: 80px;
    width: auto;
    margin-bottom: 0;
    filter: drop-shadow(0 4px 20px rgba(216, 168, 59, 0.25));
    animation: hero-float 5s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Ícone nova-esquerda ao lado do texto */
.stream-label-icon {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(216, 168, 59, 0.15));
}

/* Bottom section: buttons */
.hero-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1.25rem;
}

/* CTA buttons */
.hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-muted) 100%);
    color: #fff;
    border: 1px solid rgba(216, 168, 59, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(216, 168, 59, 0.25);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

/* ===== STREAM SECTION ===== */
.stream-section {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.stream-section .stream-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    justify-content: center;
}

.stream-section .stream-label::before,
.stream-section .stream-label::after {
    content: '';
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-muted));
}

.stream-section .stream-label::after {
    background: linear-gradient(90deg, var(--accent-muted), transparent);
}

.stream-frame {
    background: var(--bg-elevated);
    border-radius: var(--radius-xl);
    padding: 12px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px var(--border-default),
        0 0 60px rgba(216, 168, 59, 0.02);
    position: relative;
}

.stream-frame .tv-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--bg-primary);
}

.stream-frame .twitch-embed,
.stream-frame #twitch-embed {
    width: 100%;
    height: 100%;
}

.stream-frame .offline-screen {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    text-align: center;
    gap: 0.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.stream-frame .offline-icon {
    font-size: 3.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.stream-frame .offline-screen p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-logo {
        height: 55px;
        margin-bottom: 0;
    }

    .stream-label-icon {
        height: 60px;
    }

    .stream-section .stream-label {
        font-size: 0.85rem;
    }

    .hero-btn {
        font-size: 0.7rem;
        padding: 0.6rem 1.3rem;
    }

    .stream-frame {
        padding: 8px;
    }

    .hero-bottom {
        margin-top: 1.5rem;
    }

    .hero-deco--lines-tl,
    .hero-deco--lines-br {
        width: 150px;
        opacity: 0.2;
    }

    .hero-deco--tri {
        width: 120px;
        height: 120px;
        opacity: 0.15;
    }
}





