/* ==========================================================================
   ESTRUTURA BASE (ESTILO CONSOLE DE VIDEOGAME / TELA FIXA)
   ========================================================================== */
html, body { 
    height: 100%; 
    margin: 0;
    padding: 0;
    background-color: #050508; 
    color: #f4f4f4; 
    font-family: 'Impact', 'Arial Black', sans-serif;
    letter-spacing: 1px;
}

/* Container principal que gerencia o tamanho da tela */
.game-interface {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(13, 13, 17, 0.93), rgba(13, 13, 17, 0.98)), url('hero-bg.jpg') center/cover;
    position: relative;
}

/* ==========================================================================
   CABEÇALHO E BRANDING (LOGOTIPO E INSTAGRAM LADO A LADO)
   ========================================================================== */
.game-header {
    background-color: #000000;
    padding: 12px 0;
    flex-shrink: 0;
}

/* Força o alinhamento em linha mesmo em telas pequenas */
.logo-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
}

.game-header img {
    max-height: 75px; 
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 87, 34, 0.5));
}

/* Link do @ do Instagram no Topo */
.insta-top-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: lowercase;
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-weight: bold;
    white-space: nowrap; 
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.insta-top-link:hover {
    color: #ff5722;
    text-shadow: 0 0 10px #ff5722;
}

/* ==========================================================================
   BARRA DE MENU HORIZONTAL (5 BOTÕES)
   ========================================================================== */
.game-nav-bar {
    background-color: #000000;
    border-top: 2px solid #222;
    border-bottom: 3px solid #ff5722;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
    flex-shrink: 0;
}

.game-menu-container {
    display: flex;
    width: 100%;
}

/* Estilo individual de cada aba */
.game-tab-btn {
    flex: 1;
    background: #111116;
    color: #555;
    font-size: 0.95rem;
    text-transform: uppercase;
    border: none;
    border-right: 1px solid #222;
    border-left: 1px solid #222;
    padding: 10px 0;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease-in-out;
    position: relative;
}

/* ABA ATIVA / SELECIONADA EM EVIDÊNCIA */
.game-tab-btn.active {
    background: #1a1a24;
    color: #00d2ff;
    text-shadow: 0 0 8px #00d2ff, 0 0 15px #00d2ff;
    font-weight: bold;
}

/* Linha neon abaixo da aba selecionada */
.game-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #00d2ff;
    box-shadow: 0 0 12px #00d2ff;
}

.game-tab-btn:hover:not(.active) {
    background: #161622;
    color: #fff;
}

/* ==========================================================================
   ÁREA CENTRAL DE VISUALIZAÇÃO DOS FRAMES
   ========================================================================== */
.game-screen-view {
    flex-grow: 1;
    padding: 25px 15px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    position: relative;
    height: calc(100vh - 200px); 
}

.game-title {
    font-family: 'Impact'; 
    letter-spacing: 2px;
}

/* Oculta ou exibe o conteúdo das abas via JavaScript */
.game-frame-content {
    display: none;
    height: 100%;
    overflow-y: auto; /* Rolagem interna isolada se faltar espaço */
}

.game-frame-content.active {
    display: block;
}

/* Moldura preta semitransparente interna */
.game-frame-box {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 20px;
}

/* ==========================================================================
   ESTILIZAÇÃO DOS COMPONENTES INTERNOS
   ========================================================================== */

/* Cards da Seção 'A Banda' */
.musico-card {
    background: #111116;
    border: 2px solid #333;
    border-radius: 6px;
}

/* Cards da Seção 'Agenda' */
.agenda-card {
    background: #111116;
    border-left: 5px solid #ff5722;
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 0 6px 6px 0;
}

/* Imagens do Álbum */
.album-photo img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border: 2px solid #222;
    border-radius: 4px;
}

/* Card da Loja de Camisetas */
.shop-card {
    background: #111116;
    border: 2px solid #ff5722;
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.btn-buy {
    background-color: #ff5722;
    color: #fff;
    font-weight: bold;
    border: none;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
}

.btn-buy:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 15px #ff5722;
}

/* Botões da Aba Contato */
.max-button-width {
    max-width: 300px;
}

/* ==========================================================================
   RODAPÉ FIXO
   ========================================================================== */
.game-footer {
    background-color: #000000;
    border-top: 2px solid #333;
    padding: 12px 0;
    text-align: center;
    flex-shrink: 0;
}
