* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #8b5cf6;
    --secondary-purple: #7c3aed;
    --dark-purple: #6d28d9;
    --deep-purple: #5b21b6;
    --accent-blue: #3b82f6;
    
    /* Backgrounds escuros */
    --dark-bg: #0f0f14;
    --darker-bg: #0a0a0f;
    --card-bg: #1a1a24;
    --panel-bg: #16171d;
    
    --light-text: #e8e8ea;
    --gray-text: #a8a8ad;
    --border-color: #27272a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: 
        radial-gradient(circle at 20% 80%, rgba(107, 40, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #16171d 50%, #0f0f14 100%);
    color: var(--light-text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================= */
/*              NAVBAR                       */
/* ========================================= */

.navbar {
    background: linear-gradient(135deg, 
        rgba(20, 30, 40, 0.96) 0%, 
        rgba(25, 35, 50, 0.94) 30%,
        rgba(30, 40, 60, 0.92) 60%,
        rgba(35, 45, 65, 0.90) 100%);
    backdrop-filter: blur(25px) saturate(120%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.04) 50%,
        transparent 100%);
    pointer-events: none;
}

/* Logo do Navbar - MAIOR */
.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 65px; /* AUMENTADO */
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.5));
    transition: all 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 25px rgba(139, 92, 246, 0.7));
}

/* Remove o antigo .logo de texto */
.logo {
    display: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.6rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 25, 35, 0.85);
    padding: 0.7rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(139, 92, 246, 0.05);
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #a8a8ad;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    display: block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 1;
}

/* ========================================= */
/*    LIVE STREAM COM GAMER DOS 2 LADOS     */
/* ========================================= */

.live-stream {
    padding: 8rem 0 5rem;
    margin-top: 80px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(107, 40, 217, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0f0f14 0%, #16171d 50%, #0f0f14 100%);
    position: relative;
    overflow: hidden;
}

.live-stream h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    font-weight: 800;
    position: relative;
    z-index: 10;
}

.stream-container {
    max-width: 1600px; /* AUMENTADO PARA ACOMODAR TUDO */
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 0 2rem;
}

/* GAMER ESQUERDA - USA esquerda.png (SEM ESPELHAR) */
.gamer-left {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    z-index: 5;
    opacity: 1;
}

.gamer-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 50px rgba(139, 92, 246, 0.5));
    animation: float-left 6s ease-in-out infinite;
    /* SEM TRANSFORM - USA A IMAGEM COMO ESTÁ */
}

@keyframes float-left {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(-4deg);
    }
}

/* GAMER DIREITA - USA direita.png (SEM ESPELHAR) */
.gamer-right {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    z-index: 5;
    opacity: 1;
}

.gamer-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 50px rgba(139, 92, 246, 0.5));
    animation: float-right 6s ease-in-out infinite;
    /* SEM TRANSFORM SCALEX - USA A IMAGEM COMO ESTÁ */
}

@keyframes float-right {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-20px) rotate(4deg);
    }
}

/* Moldura TV - TAMANHO ORIGINAL */
.tv-frame {
    background: linear-gradient(145deg, 
        rgba(30, 40, 60, 0.6) 0%, 
        rgba(20, 30, 45, 0.8) 100%);
    border-radius: 25px;
    padding: 28px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(139, 92, 246, 0.2),
        inset 0 0 40px rgba(139, 92, 246, 0.05);
    position: relative;
    z-index: 10;
    width: 1100px; /* LARGURA FIXA ORIGINAL */
    flex-shrink: 0; /* NÃO ENCOLHE */
}

.tv-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.3));
    border-radius: 25px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(12px);
}

.tv-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: #0a0a0f;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.twitch-embed {
    width: 100%;
    height: 100%;
}

#twitch-embed {
    width: 100%;
    height: 100%;
}

.offline-screen {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    text-align: center;
    gap: 0.5rem;
    background: 
        radial-gradient(circle at center, 
            rgba(30, 40, 60, 0.95) 0%, 
            rgba(15, 15, 20, 0.98) 100%);
    color: var(--light-text);
}

.offline-icon {
    font-size: 6rem;
    margin-bottom: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.offline-screen p {
    font-size: 1.3rem;
    color: #a8a8ad;
}

/* Separador */
.separator-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: linear-gradient(180deg, #0f0f14 0%, #16171d 50%, #0f0f14 100%);
    position: relative;
    overflow: hidden;
}

.separator-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 40, 217, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.separator-line {
    height: 2px;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
    position: relative;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.separator-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    filter: blur(4px);
}

.separator-icon {
    font-size: 3rem;
    margin: 0 2rem;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rotate-icon 3s linear infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    z-index: 1;
}

@keyframes rotate-icon {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f0f14 0%, #16171d 100%);
}

.partners h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

.partners h2::after {
    content: '';
    display: block;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent);
    margin: 1.5rem auto 3rem;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.partners-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.4), transparent);
    z-index: 0;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.partner-card {
    background: linear-gradient(145deg, 
        rgba(30, 40, 60, 0.5) 0%, 
        rgba(20, 30, 45, 0.7) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.5);
}

.partner-logo {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.partner-card img.partner-logo{
  display:block;
  margin: 0 auto 1.2rem;
  height:auto;
  object-fit:contain;
}

.partner-logo.logo--xl { width: 300px; max-height: 180px; }

.partner-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.partner-card p {
    color: #a8a8ad;
    font-size: 1.1rem;
    margin-bottom: auto;
    line-height: 1.7;
    flex-grow: 1;
}

.partner-bonus {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 1.1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bonus-item {
    flex: 1;
    min-width: 120px;
}

.partner-bonus-label {
    font-size: 0.85rem;
    color: #a8a8ad;
    margin-bottom: 0.3rem;
}

.partner-bonus-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #e8e8ea;
}

.partner-btn {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.partner-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

/* ========================================= */
/*                FOOTER                     */
/* ========================================= */

.footer {
    background: linear-gradient(135deg, 
        rgba(20, 30, 40, 0.96) 0%, 
        rgba(25, 35, 50, 0.94) 30%,
        rgba(30, 40, 60, 0.92) 60%,
        rgba(35, 45, 65, 0.90) 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.25);
    padding: 4rem 0 2rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    margin-top: 5rem;
    position: relative;
    backdrop-filter: blur(20px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.4) 50%,
        transparent 100%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.03) 50%,
        transparent 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.5));
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1);
}

/* Remove o texto h3 do footer */
.footer-logo h3 {
    display: none;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: #a8a8ad;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(20, 25, 35, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social svg {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-social a:hover svg {
    transform: scale(1.15);
}

.footer-credits {
    color: #a8a8ad;
    font-size: 0.95rem;
}

.footer-credits p {
    margin: 0.4rem 0;
    line-height: 1.6;
}

.dev-credit {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.dev-credit a {
    color: #a78bfa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.dev-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #a78bfa, #818cf8);
    transition: width 0.3s ease;
}

.dev-credit a:hover {
    color: #c4b5fd;
}

.dev-credit a:hover::after {
    width: 100%;
}

/* ========================================= */
/*              RESPONSIVE                   */
/* ========================================= */

@media (max-width: 1200px) {
    .gamer-left,
    .gamer-right {
        width: 250px;
        height: 250px;
    }
    
    .stream-container {
        gap: 2rem;
        max-width: 1400px;
    }
    
    .tv-frame {
        width: 900px; /* MENOR EM TELAS MÉDIAS */
    }
    
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 968px) {
    .gamer-left,
    .gamer-right {
        display: none; /* OCULTA AS CARAS NO MOBILE */
    }
    
    .stream-container {
        padding: 0 1rem;
        display: block; /* VOLTA PARA BLOCK */
        max-width: 1100px;
    }
    
    .tv-frame {
        width: 100%; /* LARGURA TOTAL NO MOBILE */
        max-width: 1100px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        position: static;
        transform: none;
        gap: 0.4rem;
        padding: 0.6rem 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }

    .live-stream {
        padding: 6rem 0 4rem;
    }

    .live-stream h2 {
        font-size: 2.5rem;
    }

    .partners h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-logo img {
        max-width: 120px;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-social a {
        width: 48px;
        height: 48px;
    }

    .partners-grid::before {
        display: none;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .separator-line {
        width: 30%;
    }

    .separator-icon {
        font-size: 2.5rem;
        margin: 0 1.5rem;
    }

    .partner-logo.logo--xl { width: 220px; max-height: 140px; }
}
