/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    color: white;
    transition: background 0.3s, color 0.3s;
    padding-top: 80px;
    /* Espaço para o header fixo */
}

.light-mode {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #333;
}

/* Define um scroll-margin-top para os elementos âncora */
#hero,
#lives,
#sobre,
#contato {
    scroll-margin-top: 63px;
}

/* Header e Menu */
header {
    width: 100%;
    height: 63px;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(10, 1, 22, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    z-index: 1000;
}

.no-scroll header {
    padding-right: 45px;
}

header .logo {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Menu Desktop */
nav.desktop-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav.desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav.desktop-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

nav.desktop-menu ul li a:hover {
    color: #6b9aff;
}

/* Botão para alternar tema no desktop */
.toggle-btn.desktop {
    padding: 8px 15px;
    border: none;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.toggle-btn.desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(145, 71, 255, 0.4);
}

/* Botão hamburger para mobile */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Menu Mobile: configurado para animação */
.mobile-menu {
    position: fixed;
    top: 63px;
    right: 0;
    width: 250px;
    background: rgba(10, 1, 22, 0.85);
    padding: 20px;
    border-bottom-left-radius: 10px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #6b9aff;
}

.toggle-btn.mobile {
    padding: 8px 15px;
    border: none;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 15px;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.toggle-btn.mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(145, 71, 255, 0.4);
}



/* Seção Hero */
.hero {
    margin: 20px auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
}

.multitwitch-btn {
    padding: 8px 15px;
    border: none;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Área de Conteúdo (Lives) */
.content {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#online-title {
    margin-top: 0;
}

.streamers-slider {
    position: relative;
    width: 100%;
    padding: 0 50px;
}

/* Setas de navegação */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2a2a40;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #6b9aff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.left {
    left: 0;
}

.slider-arrow.right {
    right: 0;
}

/* Container dos cards de vídeo */
.streamers-slider-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
}

.streamers-slider-container:has(.video-card:only-child) {
    justify-content: center !important;
}

.streamers-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.streamers-slider-container.no-live {
    justify-content: center !important;
    padding: 20px 0;
}

.video-card.offline-placeholder {
    background: #2a2a40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.offline-content {
    text-align: center;
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offline-content i {
    color: #6b9aff;
    margin-bottom: 20px;
    opacity: 0.5;
}

.offline-content p {
    color: #888;
    font-size: 1.1rem;
    max-width: 400px;
}

/* Tema claro */
.light-mode .video-card.offline-placeholder {
    background: #f8f8f8;
}

.light-mode .offline-content i {
    color: #9147ff;
}

.light-mode .offline-content p {
    color: #666;
}

/* Cards de vídeo aumentados */
.twitch-embed {
    width: 100%;
    height: auto;
    border: none;
    aspect-ratio: 16/9;
}

.video-card {
    border: 2px solid #4B0082;
    position: relative;
    width: 750px;
    flex-shrink: 0;
    background: #2a2a40;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;

    /* Usando Flexbox para organizar o conteúdo verticalmente */
    display: flex;
    flex-direction: column;
}

.aura-label {
    position: absolute;
    top: -1px;
    left: -1px;
    background: linear-gradient(45deg, #4B0082, #6A5ACD);
    color: white;
    padding: 1px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.aura-label i {
    margin-right: 5px;
}

.light-mode .aura-label {
    background: linear-gradient(45deg, #6A5ACD, #9370DB);
}

.light-mode .video-card {
    border-color: #9370DB;
}

.light-mode .video-header h3,
.light-mode .game-viewers {
    color: #4B0082;
}

.light-mode .member-social a {
    color: #333;
}

/* Setas do slider */
.light-mode .slider-arrow {
    background: rgba(189, 189, 189, 0.8);
    color: #333;
}

.light-mode .slider-arrow:hover {
    background: #4299e1;
    color: white;
}

.video-header {
    background: linear-gradient(90deg, #1e0331, #320255);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    box-sizing: border-box;
    z-index: 1;
}

.light-mode .video-header {
    background: linear-gradient(90deg, #e6e6fa, #d8bfd8);
}

.video-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.video-card:hover {
    transform: translateY(-5px);
}

/* Grid para membros offline */
.offline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

/* Cards offline */
.member-card {
    background: #1a1a2a;
    border: 2px solid #4B0082;
    position: relative;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.member-card.streamer {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


.member-card:hover {
    background: #252530;
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.member-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
}

.member-info h3 {
    margin: 10px 0;
}

.character-name {
    color: #6b9aff;
    font-size: 0.9rem;
    margin-top: -5px;
    margin-bottom: 10px;
}

.light-mode .character-name {
    color: #9147ff;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.member-social a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.member-social a:hover {
    color: #6A5ACD;
}

/* Member card - Tema claro */
.light-mode .member-card {
    background: #f0e6ff;
    border-color: #9370DB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.light-mode .member-card:hover {
    background-color: #f0f0f0;
}

.light-mode .member-card h3 {
    color: #333;
}

.light-mode .status.online::before {
    color: white;
}

.light-mode .status.offline::before {
    color: white;
}

.light-mode .member-social a {
    color: #666;
}

.light-mode .member-social a:hover {
    color: #4B0082;
}

/* Adicione também estas regras para elementos específicos */
.light-mode .game::before {
    filter: brightness(0.5);
}

.light-mode .viewers::before {
    filter: brightness(0.5);
}

.status {
    min-width: 93.1px;
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    align-items: center;
    justify-content: start;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status.online {
    background: #2dfc6bd5;
    box-shadow: 0 2px 10px rgba(71, 255, 117, 0.3);

}

.status.offline {
    background: #ff2537d5;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);

}

.status.online::before {
    display: flex;
    align-items: center;
    justify-items: center;
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    margin-right: 5px;
    font-size: 1.2rem;
}

.status.offline::before {
    display: flex;
    align-items: center;
    justify-items: center;
    content: "\f057";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    margin-right: 5px;
    font-size: 1.2rem;
}

.game {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin: 10px 0;
}

.viewers::before {
    font-family: "Font Awesome 5 Free";
    content: "\f06e";
    margin-right: 8px;
    font-weight: 900;
    color: currentColor;
}

.game::before {
    font-family: "Font Awesome 5 Free";
    content: "\f11b";
    margin-right: 8px;
    font-weight: 900;
    color: currentColor;
}

/* Opcional: Ajustar tamanho e alinhamento */
.game-viewers {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.95rem;
}

.game-viewers span {
    display: flex;
    align-items: center;
}

hr {
    border: 0;
    height: 1px;
    background-color: #979797;
    margin: 10px 0;
}

/* Seção Sobre – Fundo mais sutil, próximo ao tom do body */
.about {
    width: 100%;
    padding: 40px 20px;
    background: rgba(30, 30, 50, 0.8);
    text-align: center;
    border-top: 1px solid #33334d;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Seção Contato – Fundo mais sutil, próximo ao tom do body */
.contact {
    width: 100%;
    padding: 40px 20px;
    background: rgba(30, 30, 50, 0.8);
    text-align: center;
    border-top: 1px solid #33334d;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Estilos para a versão clara */
.light-mode .about,
.light-mode .contact {
    background: rgba(240, 240, 240, 0.9);
    border-top: 1px solid #e0e0e0;
}

.light-mode .about p,
.light-mode .contact p {
    color: #333;
}

/* Footer */
.footer {
    padding: 25px 20px;
    text-align: start;
    font-size: 0.9rem;
    color: #ffffff;
    background-color: #1a1a2a;
    width: 100%;
    border-top: 1px solid #33334d;
}

.light-mode .footer {
    background-color: #f8f8f8;
    color: #333;
    border-top: 1px solid #e0e0e0;
}


.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2000;
    transition: opacity 0.5s ease;
}

.splash.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    font-size: 4rem;
    font-weight: 600;
    display: inline-block;
    /* Importante para conter o gradiente */
    position: relative;
    background: linear-gradient(90deg,
            #9147ff,
            #6b9aff,
            #ff6b6b,
            #9147ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    animation: gradientFlow 4s linear infinite;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg,
            #9147ff,
            #6b9aff,
            #ff6b6b,
            #9147ff);
    background-size: 300% 100%;
    animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* Adicione esta regra para esconder o conteúdo inicialmente */
body:not(.loaded)> :not(.splash) {
    visibility: hidden;
}

.no-scroll {
    overflow: hidden;
    width: 100%;
    padding-right: 15px;
}

.events {
    padding: 40px 20px;
    text-align: center;
    background: rgba(25, 25, 43, 0.8);
    border-top: 1px solid #33334d;
}

.events h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calendar-btn {
    background: linear-gradient(90deg, #9147ff, #6b9aff);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    -webkit-tap-highlight-color: transparent;
}

.calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(145, 71, 255, 0.4);
}

/* Estilos do Modal */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
}

.modal-content {
    background: #1a1a2a;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #33334d;
}

.modal-header h3 {
    color: #6b9aff;
    font-size: 1.5rem;
}

.close {
    display: flex;
    justify-content: end;
    color: #aaa;
    font-size: 28px;
    cursor: pointer;
}

.close:hover {
    color: white;
}

/* Lista de Eventos */
.events-list {
    display: grid;
    gap: 15px;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.event-item {
    gap: 20px;
    background: #252542;
    padding: 15px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    text-align: left;
}

.event-date {
    background: #6b9aff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.event-date span {
    display: block;
    font-size: 0.9rem;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: bold;
}

.event-info h4 {
    color: #6b9aff;
    margin-bottom: 5px;
}

.event-info p {
    font-size: 0.9rem;
    color: #ddd;
}

.no-events {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-events i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #6b9aff;
}

.no-events p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.no-events small {
    font-size: 0.9rem;
}

/* Para tema claro */
.light-mode .no-events {
    color: #888;
}

.light-mode .no-events i {
    color: #9147ff;
}

/* Light Mode Styles */
.light-mode .events {
    background: rgba(240, 240, 240, 0.9);
    border-top: 1px solid #e0e0e0;
}

.light-mode .calendar-btn {
    background: linear-gradient(90deg, #6b9aff, #9147ff);
}

.light-mode .modal-content {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.light-mode .modal-header {
    border-bottom: 1px solid #e0e0e0;
}

.light-mode .modal-header h3 {
    color: #9147ff;
}

.light-mode .close {
    color: #666;
}

.light-mode .close:hover {
    color: #333;
}

.light-mode .event-item {
    background: #f8f8f8;
    border: 1px solid #eee;
}

.light-mode .event-date {
    background: #9147ff;
    color: white;
}

.light-mode .event-info h4 {
    color: #6b9aff;
}

.light-mode .event-info p {
    color: #666;
}

.light-mode .event-status.planejado {
    background: #6b9aff;
    color: white;
}

.light-mode .event-status.confirmado {
    background: #2dfc6b;
    color: #111;
}

.light-mode .event-status.adiado {
    background: #ff2537;
    color: white;
}

.light-mode .no-events {
    color: #888;
}

.light-mode .no-events i {
    color: #6b9aff;
}

.character-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;

}


.character-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.character-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6b9aff;
}

.character-header h2 {
    color: #6b9aff;
    margin-bottom: 5px;
}

.character-header p {
    color: #ddd;
    font-style: italic;
}

.character-infos {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.character-history {
    margin: 20px 0;
    padding: 20px;
    background: #252542;
    border-radius: 8px;
}

.character-history h3 {
    color: #6b9aff;
    margin-bottom: 10px;
}

.character-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    background: #252542;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-item i {
    font-size: 1.2rem;
    color: #6b9aff;
}

/* Light Mode */
.light-mode .modal-content {
    background: #ffffff;
}

.light-mode .character-header h2 {
    color: #9147ff;
}

.light-mode .character-header img {
    border-color: #9147ff;
}

.light-mode .character-history,
.light-mode .stat-item {
    background: #f8f8f8;
}

.light-mode .stat-item i {
    color: #9147ff;
}

.character-btn {
    background: linear-gradient(90deg, #4B0082, #6A5ACD);

    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin: 10px 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.character-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(145, 71, 255, 0.3);
}

.character-btn i {
    font-size: 0.9rem;
}


/* ----------------UMBRA---------------- */

.member-card.umbra {
    background: #2a2a40;
    border: none;
}

.member-card.umbra:hover {
    background: #33334d;

}

.member-card.umbra .character-name {
    color: #6b9aff;
}

.member-card.umbra .character-btn {
    background: linear-gradient(90deg, #9147ff, #6b9aff);
}

/* Light Mode */
body.light-mode .member-card.umbra {
    background-color: #ffffff;
    color: #333;
}

body.light-mode .member-card.umbra .character-name {
    color: #9147ff;
}

/* Estilos para streams da UMBRA */
.video-card.umbra-stream {
    border: 2px solid #1f1f31;
}

.umbra-label {
    position: absolute;
    top: -1px;
    left: -1px;
    background: linear-gradient(90deg, #222238, #2e2e58);
    color: white;
    padding: 1px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.umbra-label i {
    margin-right: 5px;
}

.video-card.umbra-stream .video-header {
    background: linear-gradient(90deg, #15151e, #2b2b39);
}

/* Light Mode */
.light-mode .video-card.umbra-stream {
    border-color: #cfbcf7;
}

.light-mode .umbra-label {
    background: linear-gradient(45deg, #423b70, #836daf);
}

.light-mode .video-card.umbra-stream .video-header {
    background: linear-gradient(90deg, #e6e6fa, #cac4ca);
}

.light-mode .video-card.umbra-stream .video-header h3 .light-mode .video-card.umbra-stream .game-viewers {
    color: #333;
}

.member-card.umbra .member-social a:hover {
    color: #4299e1;
}

@media (max-width: 480px) {
    .character-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .character-btn i {
        font-size: 0.8rem;
    }
}


@media (max-width: 980px) {
    .video-card {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 680px) {

    #online-title {
        display: none !important;
        /* Esconde o título "Ao vivo" em mobile */
    }
}

@media (max-width: 768px) {
    nav.desktop-menu {
        display: none;
    }

    .toggle-btn.desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .member-card.streamer {
        order: -1;
        /* Coloca os streamers no topo */
        position: relative;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .event-date {
        max-width: 80px;
    }

    .character-header {
        flex-direction: column;
        text-align: center;
    }

    .character-header img {
        width: 100px;
        height: 100px;
    }
}