/*
    GHOST - TACTICAL MILITARY STYLESHEET
    
    PALETA DE COLORES:
    - #0D0D0D (negro carbón - fondo principal)
    - #2E3236 (gris táctico - fondos secundarios)
    - #3F4A3C (verde ranger - acentos)
    - #C2A878 (arena - texto secundario)
    - #00C8A8 (cian militar - acentos brillantes)
    - #B30000 (rojo operador - alertas/crítico)
*/

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0D0D0D;
    --color-gray: #2E3236;
    --color-green: #3F4A3C;
    --color-sand: #C2A878;
    --color-cyan: #00C8A8;
    --color-red: #B30000;
    --font-primary: 'Rajdhani', sans-serif;
    --font-display: 'Orbitron', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-sand);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   NAVIGATION
   ======================================== */

.tactical-nav {
    background: linear-gradient(180deg, var(--color-black) 0%, rgba(13, 13, 13, 0.95) 100%);
    border-bottom: 1px solid var(--color-cyan);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.brand-icon {
    color: var(--color-cyan);
    font-size: 1.3rem;
    font-family: var(--font-display);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 0.6rem;
    color: var(--color-cyan);
    letter-spacing: 1.5px;
    align-self: flex-end;
    margin-bottom: 0.3rem;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
}

.nav-menu li a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-sand);
    padding: 0.5rem 0.7rem;
    border: 1px solid transparent;
    position: relative;
    white-space: nowrap;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-cyan);
    transition: width 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--color-cyan);
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(46, 50, 54, 0.7) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 200, 168, 0.03) 2px, rgba(0, 200, 168, 0.03) 4px);
    padding: 8rem 2rem 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 200, 168, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(63, 74, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* TACTICAL FRAME */

.tactical-frame {
    position: relative;
    padding: 4rem 3rem;
    border: 1px solid var(--color-cyan);
    background: rgba(46, 50, 54, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.tactical-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(0, 200, 168, 0.2);
    pointer-events: none;
}

/* CORNERS */

.corner-tl, .corner-tr, .corner-bl, .corner-br {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-cyan);
}

.corner-tl {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* LOGO */

.logo-container {
    margin-bottom: 2rem;
}

.logo-badge {
    display: inline-block;
    padding: 1rem;
    border: 2px solid var(--color-cyan);
    background: var(--color-black);
    clip-path: polygon(10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%, 0% 10%);
    position: relative;
}

.logo-inner {
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-green) 100%);
    clip-path: polygon(5% 0%, 95% 0%, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0% 95%, 0% 5%);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-cyan);
    letter-spacing: 8px;
    text-shadow: 0 0 20px rgba(0, 200, 168, 0.5);
}

.logo-lines {
    margin-top: 1rem;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--color-cyan) 50%, transparent 100%);
}

/* TITLE */

.tactical-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    line-height: 1.4;
    position: relative;
}

.title-line {
    display: block;
    width: 200px;
    height: 1px;
    background: var(--color-cyan);
    margin: 1.5rem auto;
}

/* MISSION STATEMENT */

.mission-statement {
    margin-bottom: 2rem;
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 200, 168, 0.1) 50%, transparent 100%);
}

.statement-label {
    font-size: 0.8rem;
    color: var(--color-cyan);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.statement-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 200, 168, 0.3);
}

.statement-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 9px, rgba(0, 200, 168, 0.1) 9px, rgba(0, 200, 168, 0.1) 10px),
        repeating-linear-gradient(90deg, transparent, transparent 9px, rgba(0, 200, 168, 0.1) 9px, rgba(0, 200, 168, 0.1) 10px);
    pointer-events: none;
}

/* UNIT DESCRIPTION */

.unit-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(46, 50, 54, 0.5);
    border-left: 3px solid var(--color-cyan);
}

.desc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.desc-tag {
    color: var(--color-red);
    font-weight: 700;
    letter-spacing: 1px;
}

.desc-status {
    color: var(--color-cyan);
    font-weight: 700;
}

.unit-description p {
    color: var(--color-sand);
    line-height: 1.8;
    text-align: left;
}

/* BUTTONS */

.btn-discord {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-green) 100%);
    color: var(--color-black);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    border: 2px solid var(--color-cyan);
    clip-path: polygon(5% 0%, 95% 0%, 100% 25%, 100% 75%, 95% 100%, 5% 100%, 0% 75%, 0% 25%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 200, 168, 0.4);
}

.btn-icon {
    margin-right: 0.5rem;
}

.btn-scanline {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: scanline 2s infinite;
}

@keyframes scanline {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* HUD OVERLAY */

.hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hud-corner {
    position: absolute;
    width: 60px;
    height: 60px;
}

.hud-tl {
    top: 20px;
    left: 20px;
    border-top: 2px solid rgba(0, 200, 168, 0.3);
    border-left: 2px solid rgba(0, 200, 168, 0.3);
}

.hud-tr {
    top: 20px;
    right: 20px;
    border-top: 2px solid rgba(0, 200, 168, 0.3);
    border-right: 2px solid rgba(0, 200, 168, 0.3);
}

.hud-bl {
    bottom: 20px;
    left: 20px;
    border-bottom: 2px solid rgba(0, 200, 168, 0.3);
    border-left: 2px solid rgba(0, 200, 168, 0.3);
}

.hud-br {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid rgba(0, 200, 168, 0.3);
    border-right: 2px solid rgba(0, 200, 168, 0.3);
}

/* ========================================
   TACTICAL BANNER
   ======================================== */

.tactical-banner {
    background: var(--color-gray);
    border-top: 2px solid var(--color-cyan);
    border-bottom: 2px solid var(--color-cyan);
    position: relative;
    overflow: hidden;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

.banner-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(0, 200, 168, 0.05) 19px, rgba(0, 200, 168, 0.05) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(0, 200, 168, 0.05) 19px, rgba(0, 200, 168, 0.05) 20px);
    pointer-events: none;
}

.banner-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner-icon {
    font-size: 2rem;
    color: var(--color-cyan);
}

.banner-text {
    display: flex;
    flex-direction: column;
}

.banner-label {
    font-size: 0.75rem;
    color: var(--color-sand);
    letter-spacing: 1px;
}

.banner-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.banner-value.status-active {
    color: var(--color-cyan);
}

.banner-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, var(--color-cyan) 50%, transparent 100%);
}

/* ========================================
   OPERATIONS SECTION
   ======================================== */

.operations-section {
    padding: 5rem 2rem;
    background: var(--color-black);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.title-bracket {
    color: var(--color-cyan);
}

.section-line {
    width: 100px;
    height: 2px;
    background: var(--color-cyan);
    margin: 1rem auto;
}

.section-subtitle {
    color: var(--color-sand);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* OPERATIONS GRID */

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.operation-card {
    background: var(--color-gray);
    border: 1px solid rgba(0, 200, 168, 0.3);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.operation-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 200, 168, 0.2);
    cursor: pointer;
}

.card-stamp {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(179, 0, 0, 0.2);
    border: 1px solid var(--color-red);
    color: var(--color-red);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(-5deg);
}

.card-stamp.restricted {
    background: rgba(194, 168, 120, 0.2);
    border-color: var(--color-sand);
    color: var(--color-sand);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.card-code {
    color: var(--color-cyan);
    font-weight: 700;
    letter-spacing: 1px;
}

.card-status {
    padding: 0.3rem 0.8rem;
    border: 1px solid;
    font-weight: 700;
    letter-spacing: 1px;
}

.status-success {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    background: rgba(0, 200, 168, 0.1);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.card-details {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(13, 13, 13, 0.5);
    border-left: 2px solid var(--color-cyan);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: var(--color-sand);
    font-weight: 600;
}

.detail-value {
    color: #fff;
}

.card-description {
    color: var(--color-sand);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 200, 168, 0.2);
    font-size: 0.85rem;
}

.footer-tag {
    color: var(--color-sand);
}

.footer-participants {
    color: var(--color-cyan);
    font-weight: 700;
}

/* OPERATIONS CTA */

.operations-cta {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--color-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: 2px solid var(--color-cyan);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-cyan);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-arrow {
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(5px);
}

/* ========================================
   FOOTER
   ======================================== */

.tactical-footer {
    background: var(--color-gray);
    border-top: 2px solid var(--color-cyan);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--color-sand);
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a {
    color: var(--color-sand);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--color-cyan);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 200, 168, 0.3);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-sand);
    letter-spacing: 1px;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--color-cyan);
    letter-spacing: 1px;
    font-weight: 700;
}

.badge-icon {
    color: var(--color-cyan);
    font-size: 1.2rem;
}

/* ========================================
    RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu li a {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    
    .tactical-title {
        font-size: 1.5rem;
    }
    
    .banner-content {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .banner-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-section {
        padding: 6rem 1rem 2rem;
    }
    
    .tactical-frame {
        padding: 2rem 1.5rem;
    }
    
    .logo-text {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .tactical-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .statement-text {
        font-size: 1.2rem;
    }
    
    .operations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .brand-subtitle {
        font-size: 0.6rem;
    }
    
    .nav-menu li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .tactical-title {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .operation-card {
        padding: 1.5rem;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray) 100%);
    border-bottom: 2px solid var(--color-cyan);
    padding: 8rem 2rem 4rem;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 200, 168, 0.03) 2px, rgba(0, 200, 168, 0.03) 4px);
    pointer-events: none;
}

.about-hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-cyan);
    letter-spacing: 3px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-section {
    margin-bottom: 5rem;
    background: var(--color-gray);
    border: 1px solid rgba(0, 200, 168, 0.3);
    padding: 3rem;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--color-cyan);
    border-left: 2px solid var(--color-cyan);
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--color-cyan);
    border-right: 2px solid var(--color-cyan);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 200, 168, 0.1);
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.content-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.content-section h2::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--color-cyan);
}

.content-section p {
    color: var(--color-sand);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialty-card {
    background: rgba(13, 13, 13, 0.5);
    border-left: 3px solid var(--color-cyan);
    padding: 2rem;
    transition: all 0.3s ease;
}

.specialty-card:hover {
    border-left-color: var(--color-red);
    transform: translateX(10px);
}

.specialty-icon {
    font-size: 2.5rem;
    color: var(--color-cyan);
    margin-bottom: 1rem;
}

.specialty-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.specialty-desc {
    color: var(--color-sand);
    line-height: 1.8;
    font-size: 0.95rem;
}

.philosophy-list {
    list-style: none;
    margin-top: 2rem;
}

.philosophy-list li {
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(0, 200, 168, 0.2);
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 4rem;
}

.philosophy-list li::before {
    content: attr(data-number);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-cyan);
    opacity: 0.3;
}

.conduct-rules {
    margin-top: 2rem;
}

.rule-item {
    background: rgba(13, 13, 13, 0.5);
    border-left: 3px solid var(--color-cyan);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.rule-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.rule-desc {
    color: var(--color-sand);
    line-height: 1.8;
}

.hierarchy-structure {
    margin-top: 2rem;
}

.rank-item {
    background: var(--color-black);
    border: 1px solid rgba(0, 200, 168, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.rank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 200, 168, 0.3);
}

.rank-level {
    font-size: 0.75rem;
    color: var(--color-cyan);
    letter-spacing: 2px;
    font-weight: 700;
}

.rank-badge {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 200, 168, 0.1);
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.rank-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.rank-desc {
    color: var(--color-sand);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.rank-responsibilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.responsibility-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(63, 74, 60, 0.3);
    border: 1px solid var(--color-green);
    color: var(--color-sand);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.classified-banner {
    background: linear-gradient(90deg, transparent 0%, rgba(179, 0, 0, 0.2) 50%, transparent 100%);
    border-top: 1px solid var(--color-red);
    border-bottom: 1px solid var(--color-red);
    padding: 1rem;
    text-align: center;
    margin: 3rem 0;
}

.classified-text {
    font-family: var(--font-display);
    color: var(--color-red);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.1rem;
}

/* ========================================
   OPERATIVES PAGE STYLES
   ======================================== */

.operatives-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray) 100%);
    border-bottom: 2px solid var(--color-cyan);
    padding: 8rem 2rem 4rem;
    position: relative;
}

.operatives-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 200, 168, 0.03) 2px, rgba(0, 200, 168, 0.03) 4px);
    pointer-events: none;
}

.operatives-hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.operatives-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.operatives-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-cyan);
    letter-spacing: 3px;
}

.operatives-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--color-gray);
    border: 1px solid rgba(0, 200, 168, 0.3);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--color-cyan);
}

.intro-section p {
    color: var(--color-sand);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.role-card {
    background: var(--color-gray);
    border: 2px solid rgba(0, 200, 168, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.role-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 200, 168, 0.3);
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-green) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.role-card:hover::before {
    transform: scaleX(1);
}

.role-header {
    background: var(--color-black);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 200, 168, 0.3);
    position: relative;
}

.role-icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.role-icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-green) 100%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.role-icon-bg::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-black);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.role-icon {
    font-size: 3rem;
    color: var(--color-cyan);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(0, 200, 168, 0.5);
}

.role-rank {
    font-size: 0.75rem;
    color: var(--color-sand);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.role-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.role-callsign {
    font-size: 0.85rem;
    color: var(--color-cyan);
    letter-spacing: 1px;
    font-style: italic;
}

.role-body {
    padding: 2rem;
}

.role-classification {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 200, 168, 0.1);
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.role-description {
    color: var(--color-sand);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.role-skills {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 200, 168, 0.2);
}

.skills-label {
    font-size: 0.8rem;
    color: var(--color-cyan);
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.4rem 0.9rem;
    background: rgba(63, 74, 60, 0.4);
    border: 1px solid var(--color-green);
    color: var(--color-sand);
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 200, 168, 0.2);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

.role-requirements {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(13, 13, 13, 0.6);
    border-left: 3px solid var(--color-cyan);
}

.requirements-title {
    font-size: 0.8rem;
    color: var(--color-cyan);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.requirements-text {
    font-size: 0.85rem;
    color: var(--color-sand);
    line-height: 1.7;
}

.recruitment-banner {
    margin-top: 5rem;
    padding: 3rem;
    background: var(--color-gray);
    border: 2px solid var(--color-cyan);
    text-align: center;
    position: relative;
}

.recruitment-banner::before,
.recruitment-banner::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
}

.recruitment-banner::before {
    top: -2px;
    left: -2px;
    border-top: 3px solid var(--color-cyan);
    border-left: 3px solid var(--color-cyan);
}

.recruitment-banner::after {
    bottom: -2px;
    right: -2px;
    border-bottom: 3px solid var(--color-cyan);
    border-right: 3px solid var(--color-cyan);
}

.recruitment-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.recruitment-text {
    color: var(--color-sand);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-recruit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-green) 100%);
    color: var(--color-black);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    border: 2px solid var(--color-cyan);
    transition: all 0.3s ease;
}

.btn-recruit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 200, 168, 0.4);
}

/* ========================================
   OPERATIONS PAGE STYLES
   ======================================== */

.operations-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray) 100%);
    border-bottom: 2px solid var(--color-cyan);
    padding: 8rem 2rem 4rem;
    position: relative;
}

.operations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 200, 168, 0.03) 2px, rgba(0, 200, 168, 0.03) 4px);
    pointer-events: none;
}

.operations-hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.operations-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.operations-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-cyan);
    letter-spacing: 3px;
}

.operations-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.briefing-document {
    background: var(--color-gray);
    border: 2px solid rgba(0, 200, 168, 0.3);
    margin-bottom: 4rem;
    position: relative;
}

.briefing-header {
    background: var(--color-black);
    border-bottom: 2px solid var(--color-cyan);
    padding: 2rem;
    position: relative;
}

.classification-stamp {
    position: absolute;
    top: 4rem;
    right: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(179, 0, 0, 0.2);
    border: 2px solid var(--color-red);
    color: var(--color-red);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    transform: rotate(-3deg);
    box-shadow: 0 0 20px rgba(179, 0, 0, 0.3);
}

.classification-stamp.restricted {
    background: rgba(194, 168, 120, 0.2);
    border-color: var(--color-sand);
    color: var(--color-sand);
    box-shadow: 0 0 20px rgba(194, 168, 120, 0.3);
}

.classification-stamp.secret {
    background: rgba(0, 200, 168, 0.2);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 200, 168, 0.3);
}

.briefing-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.briefing-code {
    font-size: 0.85rem;
    color: var(--color-cyan);
    letter-spacing: 2px;
    font-weight: 700;
}

.briefing-date {
    font-size: 0.85rem;
    color: var(--color-sand);
    letter-spacing: 1px;
}

.briefing-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.briefing-subtitle {
    color: var(--color-sand);
    font-size: 1rem;
    letter-spacing: 1px;
}

.briefing-body {
    padding: 2.5rem;
}

.briefing-section {
    margin-bottom: 2.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 200, 168, 0.3);
}

.section-icon {
    font-size: 1.5rem;
    color: var(--color-cyan);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 2px;
}

.section-content {
    color: var(--color-sand);
    line-height: 1.9;
    font-size: 0.95rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.info-item {
    background: rgba(13, 13, 13, 0.5);
    border-left: 3px solid var(--color-cyan);
    padding: 1rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--color-cyan);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-value {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.objectives-list {
    list-style: none;
    margin-top: 1rem;
}

.objectives-list li {
    background: rgba(13, 13, 13, 0.5);
    border-left: 3px solid var(--color-cyan);
    padding: 1rem 1rem 1rem 10rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--color-sand);
    line-height: 1.6;
}

.objectives-list li::before {
    content: attr(data-priority);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-cyan);
    font-weight: 700;
    font-size: 0.85rem;
    width: 8rem;
    display: inline-block;
}

.objectives-list li.critical {
    border-left-color: var(--color-red);
}

.objectives-list li.critical::before {
    color: var(--color-red);
}

.map-container {
    background: var(--color-black);
    border: 2px solid rgba(0, 200, 168, 0.3);
    padding: 1.5rem;
    position: relative;
    margin-top: 1.5rem;
}

.map-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 200, 168, 0.3);
}

.map-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 2px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: 
        linear-gradient(rgba(0, 200, 168, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 168, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 200, 168, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 168, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    border: 1px solid rgba(0, 200, 168, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: rgba(0, 200, 168, 0.4);
    letter-spacing: 3px;
    text-align: center;
    padding: 2rem;
}

.map-coordinates {
    position: absolute;
    font-size: 0.7rem;
    color: var(--color-cyan);
    font-family: var(--font-display);
}

.map-coordinates.top-left {
    top: 5px;
    left: 5px;
}

.map-coordinates.top-right {
    top: 5px;
    right: 5px;
}

.map-coordinates.bottom-left {
    bottom: 5px;
    left: 5px;
}

.map-coordinates.bottom-right {
    bottom: 5px;
    right: 5px;
}

.intel-warning {
    background: linear-gradient(90deg, rgba(179, 0, 0, 0.1) 0%, rgba(179, 0, 0, 0.2) 50%, rgba(179, 0, 0, 0.1) 100%);
    border: 1px solid var(--color-red);
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.warning-icon {
    font-size: 2rem;
    color: var(--color-red);
}

.warning-text {
    color: var(--color-red);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.roe-list {
    list-style: none;
    margin-top: 1rem;
}

.roe-list li {
    background: rgba(13, 13, 13, 0.5);
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid var(--color-green);
    font-size: 0.9rem;
}

.roe-list li::before {
    content: '▶ ';
    color: var(--color-cyan);
    margin-right: 0.5rem;
}

.mission-status-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--color-black);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(0, 200, 168, 0.3);
}

.status-item {
    text-align: center;
}

.status-label {
    font-size: 0.75rem;
    color: var(--color-sand);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.status-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 2px;
}

.status-value.active {
    color: var(--color-cyan);
}

.status-value.completed {
    color: var(--color-green);
}

.status-value.aborted {
    color: var(--color-red);
}

.operations-archive {
    margin-top: 5rem;
}

.archive-header {
    text-align: center;
    margin-bottom: 3rem;
}

.archive-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.archive-subtitle {
    color: var(--color-sand);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ========================================
   RESPONSIVE - PAGE-SPECIFIC
   ======================================== */

@media (max-width: 768px) {
    .about-hero h1,
    .operatives-hero h1,
    .operations-hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .rank-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .role-card {
        margin-bottom: 1rem;
    }

    .recruitment-banner {
        padding: 2rem 1rem;
    }

    .briefing-header {
        padding: 1.5rem 1rem;
    }

    .classification-stamp {
        position: relative;
        display: block;
        margin-bottom: 1rem;
        top: 0;
        right: 0;
    }

    .briefing-title {
        font-size: 1.5rem;
    }

    .briefing-body {
        padding: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 300px;
    }

    .mission-status-bar {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   EQUIPMENT PAGE STYLES
   ======================================== */

.equipment-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray) 100%);
    border-bottom: 2px solid var(--color-cyan);
    padding: 8rem 2rem 4rem;
    position: relative;
}

.equipment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 200, 168, 0.03) 2px, rgba(0, 200, 168, 0.03) 4px);
    pointer-events: none;
}

.equipment-hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.equipment-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 6px;
    margin-bottom: 1rem;
}

.equipment-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-cyan);
    letter-spacing: 3px;
}

.equipment-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.category-section {
    margin-bottom: 5rem;
}

.category-header {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--color-gray);
    border: 2px solid rgba(0, 200, 168, 0.3);
    position: relative;
}

.category-header::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--color-cyan);
}

.category-icon {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--color-cyan);
    margin-bottom: 1rem;
}

.category-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    color: var(--color-sand);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.equipment-card {
    background: var(--color-gray);
    border: 1px solid rgba(0, 200, 168, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.equipment-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 200, 168, 0.2);
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-cyan) 0%, var(--color-green) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.equipment-card:hover::before {
    transform: scaleY(1);
}

.equipment-image {
    width: 100%;
    height: 200px;
    background: var(--color-black);
    border-bottom: 1px solid rgba(0, 200, 168, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 9px, rgba(0, 200, 168, 0.05) 9px, rgba(0, 200, 168, 0.05) 10px),
        repeating-linear-gradient(90deg, transparent, transparent 9px, rgba(0, 200, 168, 0.05) 9px, rgba(0, 200, 168, 0.05) 10px);
}

.equipment-placeholder {
    font-family: var(--font-display);
    color: rgba(0, 200, 168, 0.3);
    font-size: 1rem;
    letter-spacing: 2px;
    text-align: center;
}

.equipment-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.equipment-type-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 200, 168, 0.2);
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.equipment-body {
    padding: 1.5rem;
}

.equipment-header {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 200, 168, 0.2);
}

.equipment-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.equipment-designation {
    color: var(--color-cyan);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.equipment-description {
    color: var(--color-sand);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.equipment-specs {
    background: rgba(13, 13, 13, 0.5);
    padding: 1rem;
    margin-bottom: 1rem;
}

.specs-title {
    font-size: 0.75rem;
    color: var(--color-cyan);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    color: var(--color-sand);
    font-size: 0.85rem;
}

.spec-label {
    color: var(--color-sand);
    opacity: 0.8;
}

.spec-value {
    color: #fff;
    font-weight: 600;
}

.equipment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    padding: 0.3rem 0.7rem;
    background: rgba(63, 74, 60, 0.3);
    border: 1px solid var(--color-green);
    color: var(--color-sand);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.availability-status {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(0, 200, 168, 0.1);
    border-left: 3px solid var(--color-cyan);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label {
    font-size: 0.8rem;
    color: var(--color-sand);
}

.status-indicator {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.status-indicator.available {
    color: var(--color-cyan);
}

.status-indicator.limited {
    color: var(--color-sand);
}

.status-indicator.restricted {
    color: var(--color-red);
}

.loadout-note {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--color-gray);
    border: 2px solid var(--color-cyan);
    text-align: center;
}

.loadout-note-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.loadout-note-text {
    color: var(--color-sand);
    line-height: 1.8;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .equipment-hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        padding: 1.5rem;
    }
}
/* ========================================
   PROTOCOLS PAGE
   ======================================== */

.protocols-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    border-bottom: 2px solid var(--color-cyan);
}

.protocols-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 200, 168, 0.03) 2px, rgba(0, 200, 168, 0.03) 4px);
    pointer-events: none;
}

.protocols-hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.protocols-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 200, 168, 0.5);
}

.protocols-hero-subtitle {
    font-size: 1rem;
    color: var(--color-cyan);
    letter-spacing: 3px;
    font-weight: 600;
}

.protocols-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.protocol-section {
    margin-bottom: 4rem;
    background: var(--color-gray);
    border: 1px solid var(--color-green);
    position: relative;
}

.protocol-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-cyan) 0%, var(--color-green) 100%);
}

.protocol-header {
    background: rgba(0, 200, 168, 0.1);
    padding: 2rem;
    border-bottom: 1px solid var(--color-cyan);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.protocol-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-cyan);
    line-height: 1;
    opacity: 0.3;
}

.protocol-title-block {
    flex: 1;
}

.protocol-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.protocol-subtitle {
    font-size: 0.9rem;
    color: var(--color-sand);
    letter-spacing: 2px;
}

.protocol-body {
    padding: 2rem;
}

.protocol-rule {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(63, 74, 60, 0.3);
}

.protocol-rule:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.rule-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cyan);
    min-width: 60px;
    padding-top: 0.3rem;
}

.rule-content {
    flex: 1;
}

.rule-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-sand);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.rule-text {
    color: rgba(194, 168, 120, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.rule-text strong {
    color: var(--color-cyan);
    font-weight: 600;
}

/* ROE SPECIFIC STYLES */

.roe-classification {
    background: rgba(179, 0, 0, 0.1);
    border: 2px solid var(--color-red);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.classification-badge {
    background: var(--color-red);
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transform: rotate(-2deg);
}

.classification-text {
    color: var(--color-sand);
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
}

/* SIGNALS GRID */

.signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.signal-card {
    background: rgba(46, 50, 54, 0.5);
    border: 1px solid var(--color-green);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.signal-card:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 200, 168, 0.2);
}

.signal-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.signal-description {
    color: var(--color-sand);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.signal-visual {
    font-size: 2rem;
    color: var(--color-cyan);
    margin-top: 1rem;
}

.signal-note {
    background: rgba(0, 200, 168, 0.1);
    border-left: 4px solid var(--color-cyan);
    padding: 1.5rem;
    margin-top: 2rem;
}

.signal-note h4 {
    font-family: var(--font-display);
    color: var(--color-cyan);
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.signal-note p {
    color: var(--color-sand);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* RADIO CODES */

.codes-section {
    margin-bottom: 3rem;
}

.codes-category {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-green);
}

.codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.code-item {
    background: rgba(46, 50, 54, 0.5);
    border-left: 3px solid var(--color-cyan);
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.code-term {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 1px;
}

.code-meaning {
    color: var(--color-sand);
    font-size: 0.85rem;
}

/* PHONETIC ALPHABET */

.phonetic-alphabet {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(63, 74, 60, 0.2);
    border: 1px solid var(--color-green);
}

.phonetic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
}

.phonetic-item {
    color: var(--color-sand);
    font-size: 0.9rem;
    padding: 0.5rem;
    background: rgba(46, 50, 54, 0.5);
    border-left: 2px solid var(--color-cyan);
}

.phonetic-item span {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-cyan);
    margin-right: 0.5rem;
}

/* PROTOCOLS FOOTER NOTE */

.protocols-footer-note {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

.protocols-footer-note > div {
    background: var(--color-gray);
    border: 2px solid var(--color-red);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.footer-note-icon {
    font-size: 3rem;
    color: var(--color-red);
    line-height: 1;
}

.footer-note-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-note-content p {
    color: var(--color-sand);
    line-height: 1.7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .protocols-hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .protocol-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .protocol-number {
        font-size: 2.5rem;
    }

    .protocol-rule {
        flex-direction: column;
        gap: 1rem;
    }

    .signals-grid {
        grid-template-columns: 1fr;
    }

    .codes-grid {
        grid-template-columns: 1fr;
    }

    .phonetic-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .protocols-footer-note > div {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-note-icon {
        font-size: 2rem;
    }
}
/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    border-bottom: 2px solid var(--color-cyan);
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 200, 168, 0.03) 2px, rgba(0, 200, 168, 0.03) 4px);
    pointer-events: none;
}

.contact-hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.contact-hero h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 200, 168, 0.5);
}

.contact-hero-subtitle {
    font-size: 1rem;
    color: var(--color-cyan);
    letter-spacing: 3px;
    font-weight: 600;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.discord-section {
    margin-bottom: 4rem;
}

.discord-card {
    background: var(--color-gray);
    border: 2px solid var(--color-cyan);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discord-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 200, 168, 0.02) 10px, rgba(0, 200, 168, 0.02) 20px);
    pointer-events: none;
}

.discord-icon {
    margin-bottom: 2rem;
}

.discord-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.discord-description {
    color: var(--color-sand);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--color-cyan) 0%, #00a087 100%);
    color: var(--color-black);
    padding: 1.2rem 3rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 200, 168, 0.3);
}

.discord-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 200, 168, 0.5);
    background: linear-gradient(135deg, #00e5bf 0%, var(--color-cyan) 100%);
}

.discord-button .button-icon {
    font-size: 1.3rem;
}

.discord-button .button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.discord-button:hover .button-arrow {
    transform: translateX(5px);
}

.discord-note {
    margin-top: 1.5rem;
    color: rgba(194, 168, 120, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.recruitment-info {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-green);
}

.recruitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.recruitment-step {
    background: var(--color-gray);
    border: 1px solid var(--color-green);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.recruitment-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan) 0%, transparent 100%);
}

.recruitment-step:hover {
    border-color: var(--color-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 200, 168, 0.2);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-cyan);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--color-sand);
    line-height: 1.7;
    font-size: 0.9rem;
}

.legal-disclaimer {
    margin-bottom: 4rem;
    background: var(--color-gray);
    border: 3px solid var(--color-red);
    position: relative;
}

.legal-disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(179, 0, 0, 0.02) 20px, rgba(179, 0, 0, 0.02) 40px);
    pointer-events: none;
}

.disclaimer-header {
    background: rgba(179, 0, 0, 0.2);
    border-bottom: 2px solid var(--color-red);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.disclaimer-icon {
    font-size: 3rem;
    color: var(--color-red);
    line-height: 1;
}

.disclaimer-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 2px;
}

.disclaimer-content {
    padding: 2rem;
}

.disclaimer-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(179, 0, 0, 0.2);
}

.disclaimer-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.disclaimer-subtitle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-sand);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.disclaimer-text {
    color: rgba(194, 168, 120, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.disclaimer-text strong {
    color: var(--color-cyan);
    font-weight: 600;
}

.fictional-notice {
    margin-bottom: 4rem;
}

.fictional-card {
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-black) 100%);
    border: 3px solid var(--color-cyan);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.fictional-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(0, 200, 168, 0.3);
    pointer-events: none;
}

.fictional-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-cyan);
    color: var(--color-black);
    padding: 0.8rem 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 200, 168, 0.4);
}

.fictional-badge .badge-icon {
    font-size: 1.2rem;
}

.fictional-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.fictional-text {
    color: var(--color-sand);
    line-height: 1.9;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

.fictional-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-cyan);
}

.fictional-footer p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 3px;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--color-gray);
    border-left: 4px solid var(--color-cyan);
    padding: 1.5rem;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--color-sand);
    line-height: 1.7;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .discord-card {
        padding: 2rem 1.5rem;
    }

    .discord-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .recruitment-grid {
        grid-template-columns: 1fr;
    }

    .disclaimer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .disclaimer-icon {
        font-size: 2rem;
    }

    .disclaimer-title {
        font-size: 1.3rem;
    }

    .fictional-card {
        padding: 2rem 1.5rem;
    }

    .fictional-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}
