/* Gamer Tech UI - Shared Styles */
:root {
    --gamer-bg: #050b14;
    --gamer-bg-gradient: linear-gradient(180deg, #050b14 0%, #08101b 100%);
    --neon-blue: var(--vn-neon-blue, #00ffea);
    --neon-orange: var(--vn-neon-orange, #ff4d1d);
    --neon-yellow: #ffc107;
    --neon-green: #00ff9d;
    --text-tech: #8faab9;
    --text-white: #ffffff;
    --panel-bg: rgba(255, 255, 255, 0.03);
    --panel-border: rgba(255, 255, 255, 0.1);
}

/* Section Background */
.section-gamer {
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
}

.eyebrow-tech {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 234, 0.5);
}

.text-neon-blue {
    color: var(--neon-blue) !important;
}

.text-neon-orange {
    color: var(--neon-orange) !important;
}

.text-neon-green {
    color: var(--neon-green) !important;
}

/* Tech Card */
.tech-card {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 15px),
            calc(100% - 15px) 100%,
            0 100%);
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.tech-card::before {
    display: none;
}

.tech-icon-box {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px currentColor;
}

/* Tech Buttons */
.btn-tech {
    position: relative;
    padding: 15px 35px;
    background: var(--vn-btn-primary-bg, var(--neon-orange));
    color: var(--vn-btn-primary-fg, #111827) !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-tech:hover {
    background: #ff6b3d;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 77, 29, 0.4);
    letter-spacing: 1px;
    color: var(--vn-btn-primary-fg, #111827) !important;
}

/* Foco de teclado visível nos CTAs (acessibilidade) — páginas que carregam
   só este arquivo (faq, suporte, carreiras etc.) não recebem a regra de foco
   do gamer-tech-v5.css. */
.btn-tech:focus-visible,
.btn-tech-outline:focus-visible,
.btn-prioridade:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(0, 255, 234, 0.55);
}

.btn-tech-outline {
    position: relative;
    padding: 13px 33px;
    background: transparent;
    color: var(--neon-blue) !important;
    border: 1px solid var(--neon-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.btn-tech-outline:hover {
    background: rgba(0, 255, 234, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 234, 0.2);
    text-shadow: 0 0 5px var(--neon-blue);
}

body.light-theme .btn-tech-outline.btn-prioridade {
    color: #0f172a !important;
    border-color: rgba(15, 23, 42, 0.28) !important;
    text-shadow: none !important;
}

body.light-theme .btn-tech-outline.btn-prioridade:hover,
body.light-theme .btn-tech-outline.btn-prioridade:focus-visible {
    color: #102033 !important;
    border-color: rgba(15, 23, 42, 0.34) !important;
    text-shadow: none !important;
}

/* Feature List (Loadout Style) */
.tech-feature-list {
    border-left: 2px solid var(--panel-border);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.tech-feature-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-feature-item i {
    color: var(--neon-green);
    font-size: 0.8rem;
    text-shadow: 0 0 5px var(--neon-green);
}

/* Particles */
.gamer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}
