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

body {
    font-family: 'Russo One', 'Orbitron', 'Bebas Neue', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* Particles Background */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10,10,10,0.8) 0%, rgba(0,0,0,0.9) 100%);
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 1000;
}

.lang-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    padding: 0.7rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-radius: 2px;
}

.lang-btn.active {
    background: rgba(255,255,255,0.2);
    border-color: #ffffff;
    color: #ffffff;
}

/* Header */
.header {
    text-align: center;
    margin: 4rem 0 3rem;
    padding: 2rem 0;
}

.main-title {
    font-family: 'Anton', sans-serif;
    font-size: 5.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

/* Stats Section */
.stats-section {
    margin: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Black Ops One', cursive;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Services Section */
.services-section {
    margin: 5rem 0;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

.service-card p {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.service-stats {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-stats span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Reviews Section */
.reviews-section {
    margin: 5rem 0;
}

.reviews-container {
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2rem;
}

.reviews-track {
    display: flex;
    animation: scrollReviews 30s linear infinite;
}

.review-card {
    min-width: 100%;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-right: 2rem;
    backdrop-filter: blur(10px);
}

.review-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.review-author {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 2rem)); }
}

/* Map Section */
.map-section {
    margin: 5rem 0;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.russia-map {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.city-marker {
    position: absolute;
    background: rgba(255,0,0,0.1);
    border: 2px solid rgba(255,0,0,0.5);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.city-marker:hover {
    background: rgba(255,0,0,0.2);
    border-color: rgba(255,0,0,0.8);
    transform: scale(1.1);
}

.city-marker::after {
    content: attr(data-count);
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: #ffffff;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-family: 'Bebas Neue', sans-serif;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255,0,0,0); }
}

/* Monitoring Section */
.monitoring-section {
    margin: 5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.monitor-btn {
    background: rgba(0,255,0,0.1);
    border: 1px solid rgba(0,255,0,0.5);
    color: #00ff00;
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.monitor-btn:hover {
    background: rgba(0,255,0,0.2);
    box-shadow: 0 0 20px rgba(0,255,0,0.3);
}

.dc-monitor {
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 4px;
    font-family: 'Orbitron', monospace;
}

.terminal-output {
    color: #00ff00;
}

.output-line {
    margin-bottom: 0.8rem;
    animation: typeIn 0.1s ease-in;
}

.dc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dc-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dc-item:hover {
    border-color: rgba(255,255,255,0.3);
}

.dc-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dc-location {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.dc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    font-size: 0.9rem;
}

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

.stat-label {
    color: rgba(255,255,255,0.7);
}

.stat-value {
    color: #ffffff;
    font-weight: bold;
}

.stat-value.good { color: #00ff00; }
.stat-value.warning { color: #ffff00; }
.stat-value.critical { color: #ff0000; }

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    margin-top: 0.5rem;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #00ff00;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

/* Contacts Section */
.contacts-section {
    margin: 4rem 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border-radius: 4px;
    text-align: center;
}

.contact-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-5px);
}

.contact-type {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.donate-card {
    background: rgba(255,0,0,0.1);
    border-color: rgba(255,0,0,0.3);
}

.donate-card:hover {
    background: rgba(255,0,0,0.2);
    border-color: rgba(255,0,0,0.6);
}

/* Terminal Input */
.terminal-input {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 400px;
    backdrop-filter: blur(10px);
}

.prompt {
    color: #00ff00;
    font-family: 'Orbitron', monospace;
}

#terminalCommand {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

#terminalCommand::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Animations */
@keyframes typeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Money Particles */
.money-particle {
    position: fixed;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: #00ff00;
    pointer-events: none;
    z-index: 1000;
    animation: floatMoney 3s ease-in forwards;
}

@keyframes floatMoney {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Fire Particles */
.fire-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ff4400, #ff0000);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    animation: floatFire 2s ease-out forwards;
}

@keyframes floatFire {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) scale(0);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .language-switcher {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .terminal-input {
        min-width: 300px;
        left: 1rem;
        right: 1rem;
        transform: none;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}