@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Black+Ops+One&family=Teko:wght@700&display=swap");
/*
Theme Name: VORTEX OS COMPLETE
Theme URI: https://vortexgame.online
Author: Vortex Engine Team
Description: Versão unificada definitiva. Estética Game_OLD, Village Settlement e Character Profile integrados em um tema WordPress purista e estável.
Version: 7.0.0
License: GNU General Public License v2 or later
Text Domain: vortex-armoured
*/

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&family=Cinzel:wght@700&family=MedievalSharp&display=swap');

/* Unified Design System */
:root {
  --color-bg: #0a0a0a;
  --color-bg-panel: #1a1a2e; /* Deep blue from Village/Profile */
  --color-gold: #f7d44a; /* Classic Gold */
  --color-gold-light: #f1c40f;
  --color-text: #e0c097; /* Antique Text */
  --color-border: #4a3728; /* Medieval Brown */
  --pixel-border: 4px solid #000;
  --pixel-shadow: 6px 6px 0px #000;
  --font-primary: 'MedievalSharp', cursive;
  --font-secondary: 'Cinzel', serif;
  --font-pixel: 'Press Start 2P', monospace;
  --bg-texture: url('assets/old_theme/stone_texture.png');
}

/* Global Reset & Body */
* {
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  box-sizing: border-box;
}

body {
  padding-top: 65px !important;
  background: var(--bg-texture) no-repeat center center fixed;
  background-size: cover;
  color: var(--color-text);
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  font-size: 18px;
}

/* 50% Dark Overlay Layer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

/* UI Layer Base */
.ui-layer {
  margin-top: 10px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

/* Components: Panels & Containers */
.ox-panel, .v-panel, .vx-card, .vx-ledger {
  background: var(--color-bg-panel) !important;
  border: var(--pixel-border) !important;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: var(--pixel-shadow) !important;
  position: relative;
  z-index: 2;
}

.panel-title, .v-title, .vx-ledger h2 {
  font-family: var(--font-pixel);
  font-size: 14px;
  color: var(--color-gold) !important;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #000;
}

/* Glassmorphism Utility */
.ox-glass {
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

/* Header & Navigation */
.ox-header, .vx-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000 !important;
  border-bottom: var(--pixel-border) !important;
  padding: 0;
  z-index: 10000;
  box-shadow: 0 5px 15px #000;
  height: auto;
  min-height: 75px;
  padding: 48px 0 12px 0 !important;
  display: flex;
  align-items: center;
}

.vx-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.vx-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.vx-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.vx-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.vx-container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
.vx-top-row { display: flex; justify-content: space-between; align-items: center; }

.vx-nav { display: flex; gap: 8px; align-items: center; }
.vx-btn, .ox-button, .v-btn-up, .vx-nav li a {
  background: #2c3e66 !important; /* Button color from village */
  color: #fff !important;
  border: 2px solid #000 !important;
  padding: 8px 15px !important;
  font-family: var(--font-pixel);
  font-weight: bold;
  font-size: 10px !important;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 3px 3px 0 #000 !important;
}

.vx-btn:active, .ox-button:active, .v-btn-up:active, .vx-nav li a:active {
  transform: translate(3px, 3px);
  box-shadow: none !important;
}

/* Shine Animation */
@keyframes vx-shine { 
  0% { filter: brightness(1); } 
  100% { filter: brightness(1.3); } 
}
.vx-btn:hover, .ox-button:hover, .v-btn-up:hover, .vx-nav li a:hover {
  animation: vx-shine 0.6s infinite alternate;
}

/* Menu Icons */
.vx-nav li a::before { 
  content: '◈ '; 
  font-size: 8px; 
  color: var(--color-gold); 
  margin-right: 5px; 
  vertical-align: middle; 
}

/* Dropdown */
.vx-dropdown { position: relative; display: inline-block; }
.vx-dropdown-content {
    display: none; position: absolute; background-color: var(--color-bg-panel);
    min-width: 180px; box-shadow: var(--pixel-shadow); border: var(--pixel-border);
    top: 100%; right: 0; z-index: 10001;
}
.vx-dropdown-content a {
    color: #ddd !important; padding: 12px !important; text-decoration: none !important; display: block !important;
    font-family: var(--font-pixel); font-size: 9px !important; border-bottom: 2px solid #000 !important;
    background: transparent !important; box-shadow: none !important;
}
.vx-dropdown-content a:hover { background: #2c3e66 !important; }
.vx-dropdown:hover .vx-dropdown-content { display: block; }

/* Attribute Cards & Ledger styles */
.vx-attr-card { background: #000; border: 2px solid #333; padding: 12px; margin-bottom: 12px; }
.vx-attr-name { font-family: var(--font-pixel); font-size: 10px; color: var(--color-gold); display: inline-block; }
.vx-attr-val { font-family: var(--font-pixel); font-size: 14px; color: #fff; float: right; }
.vx-attr-bar-bg { background: #222; border: 2px solid #fff; height: 8px; margin-top: 8px; clear: both; }
.vx-attr-fill { height: 100%; background: var(--color-gold); width: 0%; transition: width 0.3s; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 25px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--color-gold); border: 3px solid #000; }

/* Footer */
.vx-footer {
  box-shadow: 0 -5px 15px #000;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #000;
  border-top: var(--pixel-border);
  z-index: 10000;
  text-align: center;
  color: #888;
  font-family: "VT323";
  line-height: 20px;
}

/* ============================================
   VINHETA NAS BOXES - Bordas escuras, centro claro
   ============================================ */
.single .entry-content,
.page .entry-content,
article.post,
article.page,
.type-post,
.type-page,
.v-panel,
.vx-card {
    position: relative !important;
    background-image: var(--bg-texture);
    background-repeat: repeat;
    background-size: auto;
}

}

.single .entry-content > *,
.page .entry-content > *,
article.post > *,
article.page > *,
.type-post > *,
.type-page > *,
.v-panel > *,
.vx-card > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   SUBMENUS - Escondidos, aparecem no hover
   ============================================ */
.vx-dropdown-content,
.sub-menu,
.children {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.2s ease, visibility 0.2s ease !important;
}

.vx-dropdown:hover > .vx-dropdown-content,
.menu-item-has-children:hover > .sub-menu,
.page_item_has_children:hover > .children,
li:hover > .sub-menu,
li:hover > .children {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ============================================
   RESPONSIVO - Centralizado e Flexível
   ============================================ */
@media (max-width: 1024px) {
    .vx-container {
        max-width: 95% !important;
        padding: 0 10px !important;
    }
    
    .vx-top-row {
        flex-wrap: wrap !important;
        gap: 10px !important;
        justify-content: center !important;
    }
    
    .vx-nav {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 5px !important;
    }
    
    .vx-btn, .vx-nav li a {
        font-size: 9px !important;
        padding: 6px 12px !important;
    }
}

@media (max-width: 768px) {
    body {
  padding-top: 65px !important;
        font-size: 16px !important;
    }
    
    .vx-header {
        padding: 8px 0 !important;
    }
    
    .vx-top-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .vx-nav {
        flex-direction: column !important;
        width: 100% !important;
        gap: 4px !important;
    }
    
    .vx-nav a, .vx-btn {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 8px !important;
        padding: 8px !important;
    }
    
    .vx-dropdown {
        width: 100% !important;
    }
    
    .vx-dropdown-content {
        position: relative !important;
        width: 100% !important;
        right: auto !important;
        left: 0 !important;
        min-width: 100% !important;
    }
    
    .vx-dropdown-content a {
        font-size: 8px !important;
        padding: 10px !important;
        text-align: center !important;
    }
    
    article.post, article.page, .v-panel, .vx-card {
        max-width: 100% !important;
        margin: 8px auto !important;
        padding: 15px !important;
    }
    
    .panel-title, .v-title {
        font-size: 11px !important;
    }
    
    .vx-footer {
  box-shadow: 0 -5px 15px #000;
        height: 30px !important;
        line-height: 30px !important;
        font-size: 10px !important;
    }
    
    .ui-layer {
  margin-top: 10px;
        padding-bottom: 50px !important;
    }
}

@media (max-width: 480px) {
    .vx-btn, .vx-nav li a {
        font-size: 7px !important;
        padding: 6px 8px !important;
        border-radius: 4px !important;
    }
    
    .panel-title, .v-title {
        font-size: 10px !important;
    }
    
    body {
  padding-top: 65px !important;
        font-size: 14px !important;
    }
}

/* ============================================
   LAYOUT FLEXÍVEL GERAL
   ============================================ */
#content, .site-content, main, .ui-layer {
  margin-top: 25px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 0 15px !important; /* Adding padding for responsiveness */
    box-sizing: border-box !important;
}

.entry-content, .post, .page {
    width: 100% !important;
    max-width: 850px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 20px !important; /* Padding inner box */
    box-sizing: border-box !important;
}

/* ============================================
   TÍTULO DO SITE - Brilho Verde
   ============================================ */
.site-title {
    font-family: 'Press Start 2P', cursive !important;
    font-weight: normal !important;
    color: #f7d44a !important;
    font-size: 18px !important; 
    -webkit-text-stroke: 1px #000 !important; /* Thinner stroke as requested */
    filter: drop-shadow(0 0 5px #00ff41) drop-shadow(0 0 10px #00ff41) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    display: inline-block;
}

/* ============================================
   MENU LIST - Sem bolinhas, glass buttons
   ============================================ */
.vx-menu-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.vx-menu-list li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

.vx-menu-list a {
    font-family: 'Press Start 2P', monospace !important;
    font-size: 10px !important;
    color: #f7d44a !important;
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 10px 16px !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: 1px solid rgba(247, 212, 74, 0.4) !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4) !important;
    transition: all 0.2s ease !important;
}

.vx-menu-list a:hover {
    background: rgba(247, 212, 74, 0.2) !important;
    border-color: #f7d44a !important;
    color: #ffeb8a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(247, 212, 74, 0.2) !important;
}

/* Submenus escondidos */
.vx-menu-list .sub-menu,
.vx-menu-list .children {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 200px !important;
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(247, 212, 74, 0.3) !important;
    border-radius: 10px !important;
    padding: 8px 0 !important;
    margin-top: 8px !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.25s ease !important;
    z-index: 10001 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
    list-style: none !important;
}

.vx-menu-list li:hover > .sub-menu,
.vx-menu-list li:hover > .children {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.vx-menu-list .sub-menu a,
.vx-menu-list .children a {
    font-family: 'VT323', monospace !important;
    font-size: 13px !important;
    color: #ccc !important;
    background: transparent !important;
    padding: 8px 20px !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.vx-menu-list .sub-menu a:hover,
.vx-menu-list .children a:hover {
    background: rgba(247, 212, 74, 0.15) !important;
    color: #f7d44a !important;
    border-left: 3px solid #f7d44a !important;
}

/* Seta para itens com submenu */
.vx-menu-list .menu-item-has-children > a::after {
    content: " ▼" !important;
    font-size: 7px !important;
    margin-left: 6px !important;
    opacity: 0.7 !important;
}

/* ============================================
   SUBMENU DROPDOWN - Mesmo estilo, cor diferente
   ============================================ */
.vx-menu-list .sub-menu,
.vx-menu-list .children {
    background: rgba(10, 10, 20, 0.95) !important;
    border: 1px solid rgba(0, 255, 65, 0.3) !important;
    border-radius: 8px !important;
    padding: 6px !important;
    gap: 4px !important;
    display: none !important;
    flex-direction: column !important;
    min-width: 200px !important;
}

.vx-menu-list .sub-menu a,
.vx-menu-list .children a {
    font-family: 'Press Start 2P', monospace !important;
    font-size: 9px !important;
    color: #00ff41 !important;
    background: rgba(0, 0, 0, 0.85) !important;
    border: 1px solid rgba(0, 255, 65, 0.25) !important;
    border-radius: 6px !important;
    padding: 8px 14px !important;
    display: block !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
    transition: all 0.2s ease !important;
}

.vx-menu-list .sub-menu a:hover,
.vx-menu-list .children a:hover {
    background: rgba(0, 255, 65, 0.15) !important;
    border-color: #00ff41 !important;
    color: #00ff41 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 255, 65, 0.2) !important;
}

.vx-menu-list li:hover > .sub-menu,
.vx-menu-list li:hover > .children {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ============================================
   CORREÇÃO SUBMENU - Sem gap, texto à esquerda
   ============================================ */
.vx-menu-list .sub-menu,
.vx-menu-list .children {
    margin-top: 0 !important;
    top: 100% !important;
}

.vx-menu-list .sub-menu a,
.vx-menu-list .children a {
    text-align: left !important;
    padding: 8px 16px !important;
}

/* Garantir que submenu não fecha ao mover mouse */
.vx-menu-list li {
    padding-bottom: 0 !important;
}

.vx-menu-list .sub-menu,
.vx-menu-list .children {
    pointer-events: auto !important;
}

.vx-menu-list li:hover > .sub-menu,
.vx-menu-list li:hover > .children {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* ============================================
   COMMENTS - Glass Dark Box
   ============================================ */
.vtx-comments-wrap {
    max-width: 700px;
    margin: 30px auto;
}

.vtx-comments-glass {
    background: rgba(5, 5, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.vtx-comments-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #f7d44a;
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vtx-reply-head {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vtx-comments-count {
    font-family: 'Orbitron', monospace;
    font-size: 9px;
    color: #00ff41;
    background: #000;
    padding: 4px 10px;
    border-radius: 4px;
    text-shadow: 0 0 4px #000, 0 0 10px #000;
    box-shadow: 0 0 6px rgba(0, 255, 65, 0.2);
    letter-spacing: 1px;
}

.vtx-comments-body {
    max-height: 500px;
    overflow-y: auto;
    padding: 0;
}

.vtx-comments-body::-webkit-scrollbar { width: 4px; }
.vtx-comments-body::-webkit-scrollbar-track { background: transparent; }
.vtx-comments-body::-webkit-scrollbar-thumb { background: rgba(247, 212, 74, 0.15); border-radius: 2px; }

.vtx-comments-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vtx-comment-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.2s;
    list-style: none !important;
}

.vtx-comment-row:last-child { border-bottom: none; }
.vtx-comment-row:hover { background: rgba(255, 255, 255, 0.02); }

.vtx-comment-avatar img {
    border-radius: 50%;
    border: 2px solid rgba(247, 212, 74, 0.25);
    width: 36px;
    height: 36px;
}

.vtx-comment-author {
    font-family: 'Press Start 2P', monospace;
    font-size: 8px;
    color: #f7d44a;
    margin-right: 8px;
}

.vtx-comment-date {
    font-family: 'Orbitron', monospace;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #00ff41;
    background: #000;
    padding: 3px 8px;
    border-radius: 4px;
    text-shadow: 0 0 2px #000, 0 0 6px #000, 0 0 10px #000;
    box-shadow: 0 0 4px rgba(0, 255, 65, 0.3), 0 0 10px rgba(0, 255, 65, 0.1);
    display: inline-block;
    margin-top: 2px;
}

.vtx-comment-text {
    color: #ccbbaa;
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.5;
}

/* Links rádio-relógio */
#comments a,
.vtx-comments-glass a,
.vtx-comment-text a,
.logged-in-as a,
.comment-reply-link {
    font-family: 'Orbitron', monospace !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    color: #00ff41 !important;
    background: #000 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    text-shadow: 0 0 2px #000, 0 0 6px #000, 0 0 10px #000 !important;
    box-shadow: 0 0 4px rgba(0, 255, 65, 0.3), 0 0 10px rgba(0, 255, 65, 0.1) !important;
    transition: all 0.2s !important;
    display: inline-block !important;
}

#comments a:hover,
.vtx-comments-glass a:hover {
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.5), 0 0 16px rgba(0, 255, 65, 0.2) !important;
}

/* Form */
.vtx-comment-form {
    padding: 20px;
}

.vtx-comment-input,
.vtx-comment-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    color: #ccc;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.vtx-comment-input:focus,
.vtx-comment-textarea:focus {
    border-color: rgba(0, 255, 65, 0.4);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
}

.vtx-comment-textarea {
    min-height: 100px;
    resize: vertical;
}

.vtx-comment-submit {
    font-family: 'Press Start 2P', monospace;
    font-size: 9px;
    color: #f7d44a;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(247, 212, 74, 0.4);
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.vtx-comment-submit:hover {
    background: rgba(247, 212, 74, 0.2);
    border-color: #f7d44a;
    color: #ffeb8a;
    box-shadow: 0 4px 12px rgba(247, 212, 74, 0.2);
}

@media (max-width: 600px) {
    .vtx-comment-row {
        flex-wrap: wrap;
        padding: 10px 14px;
    }
}

/* ============================================
   COMMENTS EXTRAS - Required, Edit, Reply
   ============================================ */
.vtx-comment-notes {
    font-family: 'Press Start 2P', monospace !important;
    font-size: 7px !important;
    color: #887766 !important;
    margin-bottom: 12px !important;
    letter-spacing: 1px !important;
}

.vtx-required {
    font-family: 'Press Start 2P', monospace !important;
    font-size: 7px !important;
    color: #f7d44a !important;
}

/* Links de ação: Reply, Edit, Delete */
.comment-reply-link,
.comment-edit-link,
.comment-reply-login {
    font-family: 'Orbitron', monospace !important;
    font-size: 8px !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    color: #00ff41 !important;
    background: #000 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    text-shadow: 0 0 2px #000, 0 0 6px #000, 0 0 10px #000 !important;
    box-shadow: 0 0 4px rgba(0, 255, 65, 0.3), 0 0 10px rgba(0, 255, 65, 0.1) !important;
    transition: all 0.2s !important;
    display: inline-block !important;
    margin-right: 6px !important;
    margin-top: 6px !important;
}

.comment-edit-link {
    color: #f7d44a !important;
    box-shadow: 0 0 4px rgba(247, 212, 74, 0.3), 0 0 10px rgba(247, 212, 74, 0.1) !important;
}

.comment-reply-link:hover,
.comment-edit-link:hover,
.comment-reply-login:hover {
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.5), 0 0 16px rgba(0, 255, 65, 0.2) !important;
}

.comment-edit-link:hover {
    box-shadow: 0 0 8px rgba(247, 212, 74, 0.5), 0 0 16px rgba(247, 212, 74, 0.2) !important;
}

/* Cancel reply link */
#cancel-comment-reply-link {
    font-family: 'Orbitron', monospace !important;
    font-size: 8px !important;
    color: #ff4444 !important;
    background: #000 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    margin-left: 10px !important;
}

/* Logged in as - Forçar Press Start 2P no texto, links mantêm Orbitron */
.logged-in-as {
    font-family: 'Press Start 2P', monospace !important;
    font-size: 8px !important;
    color: #887766 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.logged-in-as a {
    font-family: 'Orbitron', monospace !important;
    font-size: 9px !important;
    color: #00ff41 !important;
    background: #000 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    text-shadow: 0 0 4px #000, 0 0 10px #000 !important;
    box-shadow: 0 0 4px rgba(0, 255, 65, 0.3), 0 0 10px rgba(0, 255, 65, 0.1) !important;
}

/* Forçar Press Start 2P em todo texto dentro do comment form */
.vtx-comment-form,
.vtx-comment-form-inner,
#commentform,
#commentform p,
.comment-form-comment,
.comment-notes,
.logged-in-as {
    font-family: 'Press Start 2P', monospace !important;
    font-size: 8px !important;
    color: #887766 !important;
    letter-spacing: 1px !important;
}

/* Links mantêm Orbitron */
#commentform a,
.comment-form-comment a,
.comment-notes a,
.logged-in-as a {
    font-family: 'Orbitron', monospace !important;
    font-size: 9px !important;
    color: #00ff41 !important;
}

/* ============================================
   COMMENTS - Badges, Reply indent, Edit/Delete
   ============================================ */
.vtx-comment-badge {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: #f7d44a;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(247,212,74,0.3);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 6px;
}

.vtx-comment-reply {
    background: rgba(0, 255, 65, 0.02);
}

.vtx-comment-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.vtx-comment-actions {
    margin-top: 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.comment-delete-link {
    font-family: 'Orbitron', monospace !important;
    font-size: 8px !important;
    color: #ff4444 !important;
    background: #000 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    text-shadow: 0 0 2px #000, 0 0 6px #000 !important;
    box-shadow: 0 0 4px rgba(255, 68, 68, 0.3), 0 0 10px rgba(255, 68, 68, 0.1) !important;
    transition: all 0.2s !important;
}

.comment-delete-link:hover {
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.5), 0 0 16px rgba(255, 68, 68, 0.2) !important;
}

.comment-edit-link {
    font-family: 'Orbitron', monospace !important;
    font-size: 8px !important;
    color: #f7d44a !important;
    background: #000 !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    text-shadow: 0 0 2px #000, 0 0 6px #000 !important;
    box-shadow: 0 0 4px rgba(247, 212, 74, 0.3), 0 0 10px rgba(247, 212, 74, 0.1) !important;
}

.comment-edit-link:hover {
    box-shadow: 0 0 8px rgba(247, 212, 74, 0.5), 0 0 16px rgba(247, 212, 74, 0.2) !important;
}

/* Contador de replies */
.vtx-comment-reply-count {
    font-family: 'Orbitron', monospace;
    font-size: 7px;
    color: #00ff41;
    background: #000;
    padding: 2px 6px;
    border-radius: 4px;
    text-shadow: 0 0 2px #000, 0 0 6px #000;
    box-shadow: 0 0 4px rgba(0, 255, 65, 0.2);
    letter-spacing: 1px;
}

/* Esconder Cancel Reply quando não está respondendo */
#cancel-comment-reply-link {
    display: none;
}

/* Reduzir espaço entre Logged in as e o formulário */
.vtx-comment-form-inner {
    padding: 10px 20px !important;
}

.vtx-comment-form {
    padding: 10px 20px !important;
}

.comment-form-comment {
    margin-bottom: 8px !important;
}

.vtx-comment-notes {
    margin-bottom: 6px !important;
}

/* Forçar redução de 30px entre Logged in as e o form */
.logged-in-as {
    margin-bottom: 5px !important;
    padding-bottom: 0 !important;
}

#commentform {
    margin-top: 0 !important;
    padding-top: 5px !important;
}

#commentform > p:first-child {
    margin-top: 0 !important;
}

/* Reduzir mais 30px */
#reply-title {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.comment-form {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.vtx-comments-head {
    padding: 10px 20px !important;
    margin-bottom: 0 !important;
}

.vtx-comment-form {
    padding: 5px 20px 15px 20px !important;
}

/* Leave a Reply to - sem bold, cor vermelha */
#reply-title,
#reply-title span,
.comment-reply-title,
.comment-reply-title span {
    font-weight: normal !important;
    color: #ff4444 !important;
}

/* ============================================
   VINHETA REDONDA - Sobre imagem de fundo
   ============================================ */

/* Vinheta redonda - apenas sobre a imagem de fundo */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 20%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.9) 100%);
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   HAMBURGUER MENU - Mobile
   ============================================ */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.menu-toggle-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: #f7d44a;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(247, 212, 74, 0.3);
}

/* Animação hamburguer -> X */
.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile: mostrar hamburguer, esconder menu */
@media (max-width: 850px) {
    .menu-toggle {
        display: flex !important;
    }

    .vx-nav {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 10, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(247, 212, 74, 0.15);
        padding: 15px;
        z-index: 10000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    }

    .vx-nav.active {
        display: block !important;
    }

    .vx-menu-list {
        flex-direction: column !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .vx-menu-list li {
        width: 100% !important;
    }

    .vx-menu-list a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 10px !important;
        padding: 12px !important;
    }

    /* Submenus no mobile */
    .vx-menu-list .sub-menu,
    .vx-menu-list .children {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        margin-top: 4px !important;
        box-shadow: none !important;
        border: 1px solid rgba(247, 212, 74, 0.1) !important;
    }

    .vx-menu-list .sub-menu a,
    .vx-menu-list .children a {
        font-size: 9px !important;
        text-align: center !important;
    }

    .vx-header {
        position: relative !important;
    }

    .vx-top-row {
        flex-wrap: wrap !important;
    }
}

/* --- FIX SUBMENU VORTEX --- */
.vx-nav ul li {
    position: relative;
}

/* Esconde as páginas filhas por padrão */
.vx-nav ul li ul.children {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e; /* Cor do seu painel */
    border: 2px solid #f7d44a;
    min-width: 180px;
    padding: 10px 0;
    z-index: 9999;
    list-style: none;
}

/* Mostra ao passar o mouse no item pai */
.vx-nav ul li:hover > ul.children {
    display: block !important;
}

/* Ajuste dos links internos do submenu */
.vx-nav ul li ul.children li {
    width: 100%;
    padding: 5px 15px;
}

.vx-nav ul li ul.children li a {
    display: block;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    font-size: 9px !important;
}

/* FORÇAR EXIBIÇÃO DO SUBMENU */
.vx-header, .vx-container, .vx-top-row, .vx-nav {
    overflow: visible !important;
}

.vx-nav ul li ul.children {
    display: none;
    position: absolute;
    top: 30px; /* Ajuste conforme a altura do seu menu */
    left: 0;
    background: #000 !important;
    border: 2px solid #f7d44a !important;
    z-index: 999999 !important;
    min-width: 150px;
    padding: 5px !important;
}

.vx-nav ul li:hover > ul.children {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* --- REPARO DOS SUBMENUS --- */
.vx-nav ul li {
    position: relative !important;
    display: inline-block;
    padding-bottom: 10px; /* Margem de segurança para o mouse não sair */
}

/* Esconde classes padrão do WP: .children ou .sub-menu */
.vx-nav ul li ul.children, 
.vx-nav ul li ul.sub-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e !important;
    border: 3px solid #f7d44a !important;
    min-width: 200px;
    z-index: 99999 !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
}

/* Mostra no Hover */
.vx-nav ul li:hover > ul.children, 
.vx-nav ul li:hover > ul.sub-menu {
    display: block !important;
}

/* Estilo dos links dentro do submenu */
.vx-nav ul li ul li {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
}

.vx-nav ul li ul li a {
    display: block !important;
    padding: 10px 20px !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 10px !important;
}

.vx-nav ul li ul li a:hover {
    background: #2c3e66 !important;
    color: #f7d44a !important;
}

/* --- PADRONIZAÇÃO VISUAL DO SUBMENU --- */
.vx-nav ul li ul.children {
    background: #000 !important; /* Fundo preto para destacar os botões */
    border: 4px solid #000 !important;
    padding: 10px !important;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.5) !important;
}

.vx-nav ul li ul.children li {
    margin-bottom: 8px !important;
}

.vx-nav ul li ul.children li:last-child {
    margin-bottom: 0 !important;
}

.vx-nav ul li ul.children li a {
    font-family: 'Press Start 2P', cursive !important;
    font-size: 9px !important;
    color: #f7d44a !important;
    text-decoration: none !important;
    padding: 8px 12px !important;
    background: #2c3e66 !important; /* Azul dos seus botões */
    border: 2px solid #000 !important;
    box-shadow: 3px 3px 0 #000 !important;
    display: block !important;
    text-align: center !important;
}

/* Efeito de Hover no Submenu */
.vx-nav ul li ul.children li a:hover {
    background: #3e568a !important;
    color: #fff !important;
    transform: translate(-1px, -1px);
}

/* --- AJUSTE DE COR: LARANJA NO HOVER --- */
.vx-nav ul li ul.children li a:hover {
    background: #3e568a !important;
    color: #ff8c00 !important; /* Laranja DarkOrange */
    transform: translate(-1px, -1px);
    text-shadow: 2px 2px 0 #000;
}

/* --- AJUSTE DE LEGIBILIDADE --- */
.vx-nav ul li ul.children li a {
    font-size: 11px !important; /* Aumentado de 9px para 11px */
    letter-spacing: 1px !important; /* Espaço entre letras para não embolar */
    line-height: 1.5 !important;
    text-transform: uppercase;
    -webkit-font-smoothing: none; /* Mantém o aspecto de pixel nítido */
    font-smooth: never;
}

.vx-nav ul li ul.children li a:hover {
    color: #ffae42 !important; /* Um laranja um pouco mais claro para ler melhor */
    text-shadow: none !important; /* Remove sombra que pode borrar a fonte pequena */
}

/* --- OUTLINE SÓLIDO NOS MENUS --- */
.vx-nav a, 
.vx-nav ul li ul.children li a {
    text-shadow: 
        2px 2px 0 #000,
       -1px -1px 0 #000,  
        1px -1px 0 #000,
       -1px  1px 0 #000,
        1px  1px 0 #000 !important;
}

/* --- AJUSTE DE PADDING NAS BOXES (POSTS/PÁGINAS) --- */
.v-panel, .vx-card, .post, .page, article, .entry-content {
    padding-bottom: 10px !important;
}

/* --- AUMENTO DE PADDING INFERIOR NAS BOXES --- */
.v-panel, .vx-card, .post, .page, article, .entry-content {
    padding-bottom: 20px !important; /* Aumentado para 20px (10 original + 10 novos) */
}


/* --- SOMBRA PROJETADA: 50% TRANSPARENTE --- */
.v-panel, .vx-card, .post, .page, article, .development-status-box {
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5) !important;
}

/* --- CORREÇÃO DE OVERFLOW (LISTRA DIREITA) --- */
.v-panel, .vx-card, .post, .page, article {
    margin-right: 10px !important; /* Cria espaço para a sombra não vazar */
    max-width: calc(100% - 15px) !important; /* Garante que a box + sombra caibam no container */
}

/* --- SEÇÃO DE COMENTÁRIOS GLASS BLACK --- */
#comments {
    margin-top: 40px;
    padding: 20px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

/* Box Glass Black para cada comentário */
.comment-body {
    background: rgba(0, 0, 0, 0.7) !important; /* Vidro fumê mais escuro */
    backdrop-filter: blur(4px); /* Efeito de desfoque no fundo */
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5) !important; /* Mesma sombra das boxes */
}

/* Indentação de Respostas */
.children {
    list-style: none;
    margin-left: 40px; /* Recuo para respostas */
    border-left: 3px solid #ff8c00; /* Linha laranja conectando as respostas */
    padding-left: 15px;
}

/* Número de Replies */
.comment-reply-count {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: #ff8c00;
    background: #000;
    padding: 4px 8px;
    position: absolute;
    top: -10px;
    right: 20px;
    border: 1px solid #ff8c00;
    box-shadow: 2px 2px 0 #000;
}

.comment-author cite {
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: #f7d44a;
    font-style: normal;
}

.comment-meta a {
    font-size: 9px;
    color: #888;
    text-decoration: none;
}

/* --- BOX DARK GLASS PARA O FORM E LISTA --- */
#comments, .comment-respond {
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 25px !important;
    margin-top: 30px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5) !important;
    font-family: 'Press Start 2P', cursive;
}

/* --- ESTILO RÁDIO RELÓGIO (LINKS DE LOGOUT/PERFIL) --- */
.logged-in-as a {
    color: #00ff00 !important; /* Verde Rádio Relógio */
    text-transform: uppercase;
    font-size: 10px !important;
    text-decoration: none;
    background: #000;
    padding: 2px 6px;
    border: 1px solid #004400;
    text-shadow: 0 0 5px #00ff00; /* Glow Neon */
    margin-right: 5px;
}

.logged-in-as a:hover {
    background: #00ff00 !important;
    color: #000 !important;
    box-shadow: 0 0 10px #00ff00;
}

/* --- ESTILO DO FORMULÁRIO --- */
.comment-form textarea {
    background: rgba(20, 20, 20, 0.9) !important;
    border: 2px solid #333 !important;
    color: #00ff00 !important;
    font-family: 'Courier New', Courier, monospace; /* Estilo terminal */
    padding: 10px;
    width: 100%;
}

.comment-form .submit {
    background: #2c3e66 !important;
    color: #f7d44a !important;
    font-family: 'Press Start 2P', cursive;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
    cursor: pointer;
    padding: 10px 20px;
}

.comment-form .submit:hover {
    background: #ff8c00 !important;
    color: #000 !important;
}

.comments-title {
    color: #f7d44a;
    font-size: 14px;
    margin-bottom: 20px;
}

/* --- AJUSTE RÁDIO RELÓGIO: FONTE ORBITRON --- */
.logged-in-as a, .comment-reply-link, .edit-link {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    color: #00ff00 !important;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.8), 0 0 12px rgba(0, 255, 0, 0.4) !important;
    text-transform: uppercase;
}

/* --- HOVER RÁDIO RELÓGIO: FONTE PRETA --- */
.logged-in-as a:hover, .comment-reply-link:hover, .edit-link:hover {
    background: #00ff00 !important; /* Fundo brilha em verde */
    color: #000 !important;          /* Fonte fica preta */
    text-shadow: none !important;    /* Remove o brilho da letra para nitidez */
    box-shadow: 0 0 15px #00ff00 !important; /* Glow externo no botão */
    transition: all 0.2s ease-in-out;
}

/* --- HOVER RÁDIO RELÓGIO: FONTE PRETA --- */
.logged-in-as a:hover, .comment-reply-link:hover, .edit-link:hover {
    background: #00ff00 !important; /* Fundo brilha em verde */
    color: #000 !important;          /* Fonte fica preta */
    text-shadow: none !important;    /* Remove o brilho da letra para nitidez */
    box-shadow: 0 0 15px #00ff00 !important; /* Glow externo no botão */
    transition: all 0.2s ease-in-out;
}

/* --- LINK DE LOGIN (RÁDIO RELÓGIO) --- */
.must-log-in a {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    color: #00ff00 !important;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.8) !important;
    text-transform: uppercase;
    text-decoration: none;
    background: #000;
    padding: 4px 10px;
    border: 1px solid #004400;
    display: inline-block;
    margin: 5px 0;
}

.must-log-in a:hover {
    background: #00ff00 !important;
    color: #000 !important;
    text-shadow: none !important;
    box-shadow: 0 0 15px #00ff00 !important;
}

/* Ajuste na frase "You must be..." para não sumir no fundo */
.must-log-in {
    font-family: 'Press Start 2P', cursive;
    font-size: 9px;
    color: #fff;
    line-height: 1.8;
}

/* --- FONTE DOS TEXTOS (PÁGINAS E POSTS) --- */
.entry-content, .entry-content p, .page-content, .post-content {
    font-family: 'Press Start 2P', cursive !important;
    font-size: 11px !important;
    line-height: 1.8 !important;
    color: #fff !important;
    letter-spacing: 0.5px;
}

/* --- TÍTULOS COM CONTORNO SÓLIDO PRETO --- */
.entry-title, .page-title, h1.v-title, .post-title h1, .v-panel h2 {
    font-family: 'Press Start 2P', cursive !important;
    color: #f7d44a !important; /* Amarelo padrão dos títulos */
    text-transform: uppercase;
    text-shadow: 
        3px 3px 0 #000,
       -1px -1px 0 #000,  
        1px -1px 0 #000,
       -1px  1px 0 #000,
        1px  1px 0 #000 !important;
}

/* --- FORÇANDO CONTORNO SÓLIDO (ESTILO HUD) --- */
.entry-title, .page-title, h1.v-title, .post-title h1, .v-panel h2, .entry-content h1, .entry-content h2 {
    color: #f7d44a !important;
    font-family: 'Press Start 2P', cursive !important;
    /* Técnica de contorno 8-way para não haver falhas nos pixels */
    text-shadow: 
        2px  2px 0 #000,
       -2px -2px 0 #000,  
        2px -2px 0 #000,
       -2px  2px 0 #000,
        0px  2px 0 #000,
        0px -2px 0 #000,
        2px  0px 0 #000,
       -2px  0px 0 #000 !important;
    /* Suporte extra para navegadores modernos */
    -webkit-text-stroke: 1.5px #000;
    paint-order: stroke fill;
}

/* --- FORÇANDO PRESS START 2P EM TODOS OS TÍTULOS --- */
h1, h2, h3, h4, h5, h6, 
.entry-title, 
.entry-title a,
.page-title, 
.v-title, 
.post-title,
.widget-title {
    font-family: 'Press Start 2P', cursive !important;
    text-transform: uppercase !important;
    /* Aplicando o contorno sólido 8-way em todos */
    text-shadow: 
        2px  2px 0 #000,
       -2px -2px 0 #000,  
        2px -2px 0 #000,
       -2px  2px 0 #000,
        0px  2px 0 #000,
        0px -2px 0 #000,
        2px  0px 0 #000,
       -2px  0px 0 #000 !important;
    -webkit-text-stroke: 1px #000;
}

/* Ajuste específico para links de títulos (não herdam shadow às vezes) */
.entry-title a, .post-title a {
    color: inherit !important;
    text-decoration: none !important;
}

/* --- UNIFICAÇÃO TOTAL: TÍTULOS DE PÁGINAS = TÍTULOS DE POSTS --- */
.page-title, 
.entry-title, 
h1.entry-title, 
.v-title, 
.post-title h1, 
header.entry-header h1 {
    font-family: 'Press Start 2P', cursive !important;
    color: #f7d44a !important; /* Amarelo ouro dos posts */
    font-size: 24px !important; /* Ajuste o tamanho se necessário */
    text-transform: uppercase !important;
    text-align: left;
    margin-bottom: 20px;
    
    /* Contorno Sólido 8-way idêntico ao dos posts */
    text-shadow: 
        3px 3px 0 #000,
       -1px -1px 0 #000,  
        1px -1px 0 #000,
       -1px  1px 0 #000,
        1px  1px 0 #000,
        0px  3px 0 #000,
        3px  0px 0 #000,
       -3px  0px 0 #000 !important;
    -webkit-text-stroke: 1.5px #000;
    paint-order: stroke fill;
}

/* --- SUBIR CABEÇALHO (REDUZIR ESPAÇO NO TOPO) --- */
header, .site-header, #masthead {
    padding-top: 5px !important;
    margin-top: 0 !important;
}

.site-branding, .vortex-header-container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* --- NOME DO SITE (LOGO) COM CONTORNO SÓLIDO --- */
.site-title a, .logo-text, .vortex-logo {
    font-family: 'Press Start 2P', cursive !important;
    color: #00ff00 !important; /* Verde neon padrão */
    text-decoration: none !important;
    text-transform: uppercase;
    
    /* Contorno Sólido 8-way */
    text-shadow: 
        2px  2px 0 #000,
       -2px -2px 0 #000,  
        2px -2px 0 #000,
       -2px  2px 0 #000,
        0px  2px 0 #000,
        0px -2px 0 #000,
        2px  0px 0 #000,
       -2px  0px 0 #000 !important;
    -webkit-text-stroke: 1px #000;
}

/* Manter contorno no Hover */
.site-title a:hover, .logo-text:hover {
    color: #ff8c00 !important; /* Muda para laranja no hover */
    text-shadow: 
        2px  2px 0 #000,
       -2px -2px 0 #000,  
        2px -2px 0 #000,
       -2px  2px 0 #000,
        0px  2px 0 #000,
        0px -2px 0 #000,
        2px  0px 0 #000,
       -2px  0px 0 #000 !important;
}

/* --- SUBIR BOTÕES DO MENU --- */
.main-navigation, .nav-menu {
    margin-top: -10px !important;
}

/* --- AJUSTE FINO: SUBIR HEADER 10PX --- */
header, .site-header, #masthead, .vortex-header-container {
    margin-top: -10px !important;
    position: relative;
    z-index: 999;
}

/* --- AJUSTE FINO: SUBIR HEADER MAIS 20PX (TOTAL 30PX) --- */
header, .site-header, #masthead, .vortex-header-container {
    margin-top: -30px !important;
}

/* --- COMPENSAÇÃO: MANTÉM CONTEÚDO NO LUGAR APÓS SUBIDA DO HEADER --- */
#content, .site-content, main#main {
    margin-top: 30px !important; /* Empurra o conteúdo de volta para baixo */
}

/* --- FORÇAR POSIÇÃO DOS TÍTULOS --- */
.entry-header, .page-header, .entry-title, .page-title {
    padding-top: 40px !important;
    margin-top: 20px !important;
    clear: both !important;
}

/* Garante que o container principal tenha respiro */
#primary, #main {
    padding-top: 30px !important;
}

/* --- RECALIBRAGEM: SUBINDO O TÍTULO 20PX --- */
.entry-header, .page-header, .entry-title, .page-title {
    padding-top: 20px !important; /* Reduzido de 40px para 20px */
    margin-top: 0px !important;    /* Zerado para subir mais um pouco */
}

#primary, #main {
    padding-top: 10px !important;  /* Reduzido de 30px para 10px */
}

/* --- AJUSTE FINAL: SUBINDO TÍTULOS MAIS 10PX --- */
.entry-header, .page-header, .entry-title, .page-title {
    padding-top: 5px !important;   /* Mínimo respiro */
    margin-top: -5px !important;   /* Puxando para cima */
}

#primary, #main {
    padding-top: 0px !important;   /* Zerado para colar no topo */
}

/* --- EFEITO CRT SCANLINES ANIMADAS --- */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    z-index: 9999;
    background-size: 100% 4px, 3px 100%;
    pointer-events: none; /* Permite clicar nos botões por baixo */
}

body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(18, 16, 16, 0.1);
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
    animation: flicker 0.15s infinite;
}

/* Animação da linha de varredura descendo */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.crt-scanline {
    width: 100%;
    height: 100px;
    z-index: 10000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

/* --- CRT REFINE: SCANLINES FINAS + VINHETA --- */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    /* Scanlines de 2px e Vinheta radial */
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%),
        radial-gradient(circle, rgba(0,0,0,0) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 9999;
    background-size: 100% 2px, 100% 100%; /* Scanlines finas aqui */
    pointer-events: none;
}

/* --- KILLER DE LISTRA LATERAL (OVERFLOW FIX) --- */
html, body {
    overflow-x: hidden !important; /* Corta qualquer coisa que tente vazar na direita */
    width: 100vw;
    position: relative;
}

.crt-scanline {
    opacity: 0.05; /* Deixando a linha que desce ainda mais discreta */
}

/* Ajuste fino nas boxes para não empurrarem a borda */
.v-panel, .vx-card, #comments {
    max-width: 98% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* --- REMOÇÃO ABSOLUTA DA LISTRA DIREITA --- */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}

/* --- CRT: SCANLINES QUE DESCEM + VINHETA PESADA --- */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    z-index: 9999;
    pointer-events: none;
    
    /* Camada 1: Scanlines finas de 2px */
    /* Camada 2: Vinheta pesada (preto profundo nas bordas) */
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 50%),
        radial-gradient(circle, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
    
    background-size: 100% 3px, 100% 100%;
    
    /* Animação que faz as listras "correrem" para baixo */
    animation: move-scanlines 0.2s linear infinite;
}

@keyframes move-scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 3px; }
}

/* Ajuste no container principal para garantir que nada vaze */
#page {
    overflow: hidden !important;
    width: 100%;
}

/* --- GOLPE FINAL NA LISTRA DIREITA --- */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

#page {
    overflow: hidden !important;
    width: 100% !important;
    /* Adiciona respiro para a sombra de 8px não bater na borda da tela */
    padding-right: 15px !important; 
    box-sizing: border-box !important;
}

/* --- CRT: SCANLINES LENTAS E VINHETA PROFUNDA --- */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    z-index: 9999;
    pointer-events: none;
    
    /* Vinheta com bordas pretas quase sólidas (0.95) e centro focado */
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 50%),
        radial-gradient(circle, rgba(0,0,0,0) 20%, rgba(0,0,0,0.95) 100%);
    
    background-size: 100% 4px, 100% 100%;
    
    /* Animação MUITO mais lenta para as linhas descendo (4 segundos) */
    animation: move-scanlines 4s linear infinite;
}

@keyframes move-scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* Garantir que as boxes fiquem centralizadas e não empurrem a direita */
.v-panel, #comments, .vx-card {
    margin-right: auto !important;
    margin-left: auto !important;
    max-width: calc(100% - 20px) !important;
}

/* --- RESET DE LARGURA E FIM DA LISTRA --- */
html, body {
    overflow-x: hidden !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

#page {
    max-width: 98vw !important; /* Reduz levemente para a sombra não vazar */
    margin: 0 auto !important;
    overflow: visible !important; /* Permite que a sombra apareça sem criar barra */
}

/* --- REPARO DO CONTEÚDO (NÃO ENTRAR NO HEADER) --- */
#content, .site-content, main#main, .entry-header {
    margin-top: 50px !important; /* Empurra tudo para baixo do header */
    position: relative;
    z-index: 1;
}

/* --- CRT: SCANLINES ULTRA-FINAS (1px) + VINHETA --- */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    z-index: 9999;
    pointer-events: none;
    
    /* Scanlines de 1px (mais finas impossível) */
    /* Vinheta reforçada no preto profundo */
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        radial-gradient(circle, rgba(0,0,0,0) 25%, rgba(0,0,0,0.95) 100%);
    
    background-size: 100% 2px, 100% 100%;
    animation: move-scanlines 10s linear infinite; /* Bem lentas */
}

@keyframes move-scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

/* --- CORREÇÃO: DESCER CONTEÚDO SEM ESTICAR A BOX --- */
#content, .site-content, main#main {
    margin-top: 0 !important; /* Remove o margin que estava esticando */
}

#primary {
    padding-top: 60px !important; /* Empurra o conteúdo interno para baixo */
}

/* Garante que o container da página tenha um limite superior */
.site-main {
    margin-top: 20px !important;
}

/* --- REFINO DAS SCANLINES (MAIS DISCRETAS) --- */
body::before {
    background-size: 100% 1.5px, 100% 100% !important; /* Deixa a scanline ainda mais fina */
    opacity: 0.8; /* Suaviza o efeito global */
}

/* --- ELEVAÇÃO DAS BOXES E TÍTULOS --- */
#primary, .site-main {
    padding-top: 40px !important; /* Subiu a box (era 60px) */
}

.entry-header, .page-header, .entry-title, .page-title {
    margin-top: -30px !important; /* Subiu o título (puxando 20px pra cima do anterior) */
    position: relative;
    z-index: 10;
}

/* Ajuste fino para não encostar na borda interna da box */
.entry-content, .page-content {
    margin-top: 10px !important;
}

/* --- RECALIBRAGEM: BAIXAR TÍTULOS 10PX --- */
.entry-header, .page-header, .entry-title, .page-title {
    margin-top: -20px !important; /* Era -30px, agora -20px para descer 10px */
}

/* --- AJUSTE DE PRECISÃO: TÍTULOS E MARGEM INFERIOR --- */
.entry-header, .page-header, .entry-title, .page-title {
    margin-top: -15px !important; /* Era -20px, descendo 5px agora */
}

#primary, .site-main, .v-panel, article {
    margin-bottom: 20px !important; /* Adiciona respiro abaixo das boxes */
}

/* --- RECALIBRAGEM: TÍTULOS -5PX --- */
.entry-header, .page-header, .entry-title, .page-title {
    margin-top: -10px !important; /* Era -15px, descendo +5px */
}

/* --- REFORÇO DA VINHETA CRT (BORDAS MAIS ESCURAS) --- */
body::before {
    /* radial-gradient ajustado: centro mais apertado (15%) e borda quase sólida (0.98) */
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        radial-gradient(circle, rgba(0,0,0,0) 15%, rgba(0,0,0,0.98) 100%) !important;
}

/* --- REFORÇANDO A VISIBILIDADE DAS SCANLINES --- */
body::before {
    /* Aumentada a opacidade da linha preta (0.5) para dar mais textura */
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.5) 50%),
        radial-gradient(circle, rgba(0,0,0,0) 15%, rgba(0,0,0,0.98) 100%) !important;
    
    /* Tamanho de 3px garante que a linha apareça em qualquer resolução */
    background-size: 100% 3px, 100% 100% !important;
    
    /* Deixando a animação um pouco mais perceptível (3s) */
    animation: move-scanlines 3s linear infinite !important;
}

/* --- REPOSICIONANDO CRT: APENAS ACIMA DO FUNDO --- */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    /* Z-INDEX NEGATIVO: Fica atrás de todo o conteúdo */
    z-index: -1; 
    pointer-events: none;
    
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.5) 50%),
        radial-gradient(circle, rgba(0,0,0,0) 15%, rgba(0,0,0,0.98) 100%);
    
    background-size: 100% 3px, 100% 100%;
    animation: move-scanlines 3s linear infinite;
}

/* Garante que o corpo do site tenha fundo transparente para o CRT aparecer */
body {
    background-color: transparent !important;
}

/* Garante que o conteúdo fique acima do efeito */
#page, #masthead, #footer, .site-content {
    position: relative;
    z-index: 2;
}

/* --- NOME DO SITE: AUMENTO E CONTORNO BLINDADO --- */
.site-title a, .logo-text, .vortex-logo {
    font-size: 32px !important; /* Aumentado para destacar mais */
    letter-spacing: 2px;
    transition: all 0.2s ease-in-out;
    
    /* Contorno Sólido 8-way (Base) */
    text-shadow: 
        2px  2px 0 #000,
       -2px -2px 0 #000,  
        2px -2px 0 #000,
       -2px  2px 0 #000,
        0px  2px 0 #000,
        0px -2px 0 #000,
        2px  0px 0 #000,
       -2px  0px 0 #000 !important;
    -webkit-text-stroke: 1.5px #000;
}

/* Efeito Hover: Mantém o contorno e brilha */
.site-title a:hover, .logo-text:hover {
    color: #ff8c00 !important; /* Laranja de destaque */
    /* Mantemos o contorno preto e adicionamos uma camada de brilho externa */
    text-shadow: 
        2px  2px 0 #000,
       -2px -2px 0 #000,  
        2px -2px 0 #000,
       -2px  2px 0 #000,
        0px  2px 0 #000,
        0px -2px 0 #000,
        2px  0px 0 #000,
       -2px  0px 0 #000,
        0px  0px 15px rgba(255, 140, 0, 0.7) !important; 
    transform: scale(1.05); /* Leve pulsação ao passar o mouse */
}

/* --- NOME DO SITE: AUMENTO E CONTORNO BLINDADO --- */
.site-title a, .logo-text, .vortex-logo {
    font-size: 32px !important; /* Aumentado para destacar mais */
    letter-spacing: 2px;
    transition: all 0.2s ease-in-out;
    
    /* Contorno Sólido 8-way (Base) */
    text-shadow: 
        2px  2px 0 #000,
       -2px -2px 0 #000,  
        2px -2px 0 #000,
       -2px  2px 0 #000,
        0px  2px 0 #000,
        0px -2px 0 #000,
        2px  0px 0 #000,
       -2px  0px 0 #000 !important;
    -webkit-text-stroke: 1.5px #000;
}

/* Efeito Hover: Mantém o contorno e brilha */
.site-title a:hover, .logo-text:hover {
    color: #ff8c00 !important; /* Laranja de destaque */
    /* Mantemos o contorno preto e adicionamos uma camada de brilho externa */
    text-shadow: 
        2px  2px 0 #000,
       -2px -2px 0 #000,  
        2px -2px 0 #000,
       -2px  2px 0 #000,
        0px  2px 0 #000,
        0px -2px 0 #000,
        2px  0px 0 #000,
       -2px  0px 0 #000,
        0px  0px 15px rgba(255, 140, 0, 0.7) !important; 
    transform: scale(1.05); /* Leve pulsação ao passar o mouse */
}

/* --- NOME DO SITE: AUMENTO AGRESSIVO E CONTORNO ETERNO --- */
.site-title a, .logo-text, .vortex-logo {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 700 !important;
    font-size: 46px !important; /* Aumento para destaque total */
    display: inline-block;
    color: #00ff00 !important;
    letter-spacing: 2px;
    /* Contorno Lindo e Limpo usando Text Stroke e Shadow suave */
    -webkit-text-stroke: 1.5px #000;
    text-shadow: 
        3px 3px 0 #000,
        0px 5px 15px rgba(0,0,0,0.8) !important;
    transition: all 0.3s ease;
}

.site-title a:hover {
    color: #ff8c00 !important;
    /* Brilho externo no hover */
    text-shadow: 
        3px 3px 0 #000,
        0px 0px 20px rgba(255, 140, 0, 0.9) !important;
    transform: scale(1.02);
}

/* --- SUBMENUS COM CONTORNO PRETO NO HOVER --- */
.main-navigation ul ul li a, 
.sub-menu li a,
.dropdown-menu li a {
    font-family: 'Press Start 2P', cursive !important;
    transition: all 0.2s;
}

.main-navigation ul ul li a:hover, 
.sub-menu li a:hover,
.dropdown-menu li a:hover {
    color: #00ff00 !important; /* Verde neon no hover */
    /* Garante contorno preto sólido no submenu ao passar o mouse */
    text-shadow: 
        1px  1px 0 #000, -1px -1px 0 #000,  
        1px -1px 0 #000, -1px  1px 0 #000,
        0px  1px 0 #000,  0px -1px 0 #000,
        1px  0px 0 #000, -1px  0px 0 #000 !important;
}

/* Fix for WordPress admin bar */
body.admin-bar .ox-header, body.admin-bar .vx-header { top: 32px !important; }
@media screen and (max-width: 782px) { body.admin-bar .ox-header, body.admin-bar .vx-header { top: 46px !important; } }


@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');



/* ==========================================================================
   AAA PREMIUM LOGO STYLING - VORTEX GAME
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800;900&family=Outfit:wght@700;800;900&display=swap');

.site-title, .site-title a, .logo-text, .vortex-logo {
    font-family: 'Orbitron', sans-serif !important;
    font-weight: 900 !important;
    font-size: 2.2rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase;
    background: linear-gradient(135deg, #00ff88 0%, #00e5ff 50%, #e056fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
    filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.45)) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.95)) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0px transparent !important;
}

.site-title a:hover, .logo-text:hover {
    filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.85)) drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.95)) !important;
    transform: translateY(-2px) scale(1.03) !important;
}
