/* Gamer Tech UI - Shared Styles */
:root {
    --gamer-bg: #050b14;
    --gamer-bg-gradient: linear-gradient(180deg, #050b14 0%, #08101b 100%);
    --neon-blue: #00ffea;
    --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;
}

/* Typography Overrides */
body.dark-theme .section-gamer h1,
body.dark-theme .section-gamer h2,
body.dark-theme .section-gamer h3,
body.dark-theme .section-gamer h4,
body.dark-theme .section-gamer h5 {
    color: var(--text-white) !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.5px;
}

body.dark-theme .section-gamer p {
    color: var(--text-tech) !important;
}

.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 {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue);
}

.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(--neon-orange);
    color: #fff !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;
}

.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);
}

/* 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;
}
