/* =====================================================
   🎨 CYBERPUNK MILITARY DRONE BATTALION
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a0e27;
    --secondary: #1a1f3a;
    --accent: #2a2f4a;
    --highlight: #00d4ff;
    --highlight-red: #ff0050;
    --chrome-light: #e8f4f8;
    --chrome-dark: #4a5568;
    --text: #ffffff;
    --text-muted: #8b96b8;
    --neon-blue: #00d4ff;
    --neon-red: #ff0050;
    --metal: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* =====================================================
   🔷 HEXAGON BACKGROUND PATTERN
   ===================================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
}

/* Animated scan lines */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 212, 255, 0.05) 2px,
        rgba(0, 212, 255, 0.05) 4px
    );
    pointer-events: none;
    z-index: 1;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* =====================================================
   🎯 HEADER - MILITARY HUD STYLE
   ===================================================== */
.header {
    background: rgba(26, 31, 58, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 -2px 0 rgba(0, 212, 255, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2em;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    letter-spacing: 3px;
    position: relative;
}

.logo h1::after {
    content: '▸';
    position: absolute;
    right: -30px;
    color: var(--neon-blue);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.logo p {
    color: var(--text-muted);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-blue);
}

.nav a:hover {
    color: var(--neon-blue);
}

.nav a:hover::after {
    width: 100%;
}

.btn-donate {
    background: linear-gradient(135deg, var(--neon-red), #ff4081);
    color: var(--text);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(255, 0, 80, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-donate::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.btn-donate:hover::before {
    left: 100%;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 30px rgba(255, 0, 80, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* =====================================================
   🦅 HERO SLIDER - CHROME COMMANDERS
   ===================================================== */
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    overflow: hidden;
    margin-bottom: 0;
    border-bottom: 3px solid var(--neon-blue);
    box-shadow: inset 0 0 100px rgba(0, 212, 255, 0.1);
}

/* Animated corner brackets */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--neon-blue);
    z-index: 10;
}

.hero::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    padding: 40px;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    max-width: 800px;
    position: relative;
}

.slide-content::before {
    content: '[ CLASSIFIED ]';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 20px;
    color: var(--neon-red);
    font-size: 0.8em;
    letter-spacing: 2px;
    border: 1px solid var(--neon-red);
}

.slide-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: var(--neon-blue);
    margin-bottom: 20px;
    text-shadow: 
        0 0 10px rgba(0, 212, 255, 0.8),
        0 0 20px rgba(0, 212, 255, 0.5);
}

.slide-content p {
    font-size: 1.2em;
    color: var(--chrome-light);
    line-height: 1.8;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 100;
}

.slider-controls button {
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    width: 50px;
    height: 50px;
    border-radius: 0;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.slider-controls button:hover {
    background: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: scale(1.1);
}

/* =====================================================
   📊 STATS - HUD DISPLAY
   ===================================================== */
.stats {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 10px var(--neon-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 
        0 10px 40px rgba(0, 212, 255, 0.3),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-blue), var(--chrome-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-label {
    color: var(--text-muted);
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   🎯 NEEDS - METALLIC PROGRESS BARS
   ===================================================== */
.needs {
    padding: 80px 0;
    background: var(--secondary);
    position: relative;
}

.needs h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.need-card {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
}

.need-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.need-card:hover::before {
    opacity: 1;
}

.need-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.need-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.progress-bar {
    background: rgba(26, 31, 58, 0.8);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 212, 255, 0.05) 10px,
        rgba(0, 212, 255, 0.05) 20px
    );
}

.progress {
    background: linear-gradient(90deg, var(--neon-blue), var(--chrome-light));
    height: 100%;
    transition: width 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: var(--neon-blue);
    margin-bottom: 10px;
}

.need-desc {
    color: var(--text-muted);
}

/* =====================================================
   📰 NEWS - HOLOGRAPHIC CARDS
   ===================================================== */
.news {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
}

.news h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-red), var(--neon-blue));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.news-date {
    color: var(--neon-red);
    font-weight: bold;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid var(--neon-red);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 0, 80, 0.3);
}

.news-card h3 {
    margin: 15px 0;
    font-size: 1.3em;
    color: var(--chrome-light);
    font-weight: 600;
}

.news-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
}

.news-link::after {
    content: '→';
    margin-left: 10px;
    transition: margin-left 0.3s;
}

.news-link:hover {
    color: var(--chrome-light);
    text-shadow: 0 0 10px var(--neon-blue);
}

.news-link:hover::after {
    margin-left: 20px;
}

/* =====================================================
   🖼️ GALLERY - CHROME GRID
   ===================================================== */
.gallery {
    padding: 80px 0;
    background: var(--secondary);
}

.gallery h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 80, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 2;
    border-top: 2px solid var(--neon-blue);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: var(--neon-blue);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px var(--neon-blue);
}

/* =====================================================
   📱 SOCIAL FEEDS - TECH PANELS
   ===================================================== */
.social-feeds {
    padding: 80px 0;
    background: var(--primary);
}

.social-feeds h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    min-height: 400px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.social-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 10px var(--neon-blue);
}

.social-card h3 {
    margin-bottom: 20px;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.social-embed {
    background: rgba(10, 14, 39, 0.8);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-muted);
    border: 1px dashed rgba(0, 212, 255, 0.3);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   📝 RECRUIT FORM - MILITARY INPUT
   ===================================================== */
.recruit {
    padding: 80px 0;
    background: var(--secondary);
}

.recruit h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.recruit-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.recruit-form input,
.recruit-form select,
.recruit-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 5px;
    color: var(--text);
    font-size: 1em;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s;
}

.recruit-form input:focus,
.recruit-form select:focus,
.recruit-form textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(26, 31, 58, 1);
}

.recruit-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--neon-blue), var(--chrome-light));
    color: var(--primary);
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.6);
}

/* =====================================================
   🦶 FOOTER - TECH TERMINAL
   ===================================================== */
.footer {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 0 20px;
    border-top: 2px solid var(--neon-blue);
    box-shadow: 
        0 -5px 30px rgba(0, 212, 255, 0.2),
        inset 0 2px 0 rgba(0, 212, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--text-muted);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

/* =====================================================
   💰 DONATE MODAL - HOLOGRAPHIC WINDOW
   ===================================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    border: 2px solid var(--neon-blue);
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 0.5),
        inset 0 0 50px rgba(0, 212, 255, 0.1);
}

.modal-content::before {
    content: '[ SECURED CONNECTION ]';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 20px;
    color: var(--neon-blue);
    font-size: 0.8em;
    letter-spacing: 2px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2em;
    color: var(--neon-red);
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--chrome-light);
    text-shadow: 0 0 20px var(--neon-red);
    transform: rotate(90deg);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.donate-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.donate-method {
    background: rgba(10, 14, 39, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s;
}

.donate-method:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.donate-method h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.donate-method p {
    color: var(--chrome-light);
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    margin-bottom: 15px;
    word-break: break-all;
    background: rgba(0, 212, 255, 0.05);
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid var(--neon-blue);
}

.card-number {
    font-size: 1.3em !important;
    font-weight: bold;
    letter-spacing: 2px;
}

.btn-copy {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-copy:hover {
    background: var(--neon-blue);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* =====================================================
   📱 MOBILE-FIRST RESPONSIVE DESIGN
   ===================================================== */

/* ===== MOBILE MENU (Burger) ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    z-index: 2000;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--neon-blue);
    border-radius: 5px;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--neon-blue);
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 0 10px var(--neon-blue);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

@media (max-width: 768px) {
    /* ===== HEADER MOBILE ===== */
    .header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo h1 {
        font-size: 1.3em;
        letter-spacing: 2px;
    }

    .logo h1::after {
        display: none;
    }

    .logo p {
        font-size: 0.7em;
        letter-spacing: 1px;
    }

    .menu-toggle {
        display: flex;
    }

.nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;  /* ← ФІКСОВАНА ШИРИНА замість 70% */
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 25px;  /* ← ЗМЕНШИВ gap */
        transition: right 0.3s;
        border-left: 2px solid var(--neon-blue);
        box-shadow: -5px 0 30px rgba(0, 212, 255, 0.3);
        z-index: 1999;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1.1em;  /* ← ТРОХИ МЕНШЕ */
        padding: 12px 0;  /* ← МЕНШИЙ PADDING */
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        text-align: center;  /* ← ЦЕНТРУЄМО ТЕКСТ */
    }

    .btn-donate {
        width: 100%;
        padding: 12px;  /* ← МЕНШИЙ PADDING */
        font-size: 0.95em;  /* ← ТРОХИ МЕНШЕ */
    }

    /* ===== HERO COMPACT - CENTERED ===== */
    .hero {
        height: auto;
        min-height: 350px;
        padding: 30px 0;
    }

    .hero::before,
    .hero::after {
        width: 30px;
        height: 30px;
        opacity: 0.5;
    }

    .hero::before {
        top: 5px;
        left: 5px;
    }

    .hero::after {
        bottom: 5px;
        right: 5px;
    }

    .slide {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .slide-content {
        padding: 20px 15px;
        margin: 0 15px;
        width: calc(100% - 30px);
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .slide-content::before {
        font-size: 0.6em;
        padding: 3px 8px;
        top: -8px;
    }

    .slide-content h2 {
        font-size: 0.85em;
        margin-bottom: 8px;
        letter-spacing: 1px;
    }

    .slide-content h3 {
        font-size: 1.3em;
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .slide-content p {
        font-size: 0.85em;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .slider-controls {
        bottom: 10px;
        gap: 10px;
    }

    .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    /* ===== STATS GRID ===== */
    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-icon {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .stat-label {
        font-size: 0.9em;
    }

    /* ===== NEEDS ===== */
    .needs {
        padding: 40px 0;
    }

    .needs h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }

    .needs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .need-card {
        padding: 20px;
    }

    .need-card h3 {
        font-size: 1.2em;
    }

    .progress-bar {
        height: 25px;
    }

    /* ===== NEWS ===== */
    .news {
        padding: 40px 0;
    }

    .news h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card {
        padding: 20px;
    }

    /* ===== GALLERY ===== */
    .gallery {
        padding: 40px 0;
    }

    .gallery h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 180px;
    }

    /* ===== SOCIAL ===== */
    .social-feeds {
        padding: 40px 0;
    }

    .social-feeds h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-card {
        min-height: 300px;
        padding: 20px;
    }

    .social-embed {
        min-height: 200px;
    }

    /* ===== RECRUIT FORM ===== */
    .recruit {
        padding: 40px 0;
    }

    .recruit h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .recruit-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .recruit-form input,
    .recruit-form select,
    .recruit-form textarea {
        padding: 12px;
        font-size: 1em;
    }

    .btn-submit {
        padding: 12px;
        font-size: 1em;
    }

    /* ===== FOOTER ===== */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    /* ===== DONATE MODAL ===== */
    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 10px;
    }

    .modal-content::before {
        font-size: 0.7em;
        padding: 3px 10px;
    }

    .modal-content h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .donate-method {
        padding: 15px;
    }

    .donate-method h3 {
        font-size: 1.1em;
    }

    .donate-method p {
        font-size: 0.9em;
    }

    .card-number {
        font-size: 1.1em !important;
    }

    /* ===== REDUCE ANIMATIONS ON MOBILE ===== */
    body::after {
        animation: none;
    }

    .progress::after {
        animation: none;
    }
}


/* =====================================================
   ✨ GLITCH EFFECT (optional on hover)
   ===================================================== */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

.logo h1:hover {
    animation: glitch 0.3s infinite;
}
