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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Share Tech Mono', monospace;
    line-height: 1.6;
    color: #00ff00;
    background: #000000;
    overflow-x: hidden;
    cursor: crosshair;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid #00ff00;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'VT323', monospace;
    font-size: 2rem;
    font-weight: 400;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #00ff00;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glitch 2s infinite;
}

.logo-icon span {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 900;
    font-family: 'Share Tech Mono', monospace;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #00ff00;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 0 5px #00ff00;
}

.nav-menu a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px #ffffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff00;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ff00;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 0;
}


.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.1) contrast(2) saturate(0) hue-rotate(120deg);
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 255, 0, 0.1) 100%);
}

.glitch-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.1) 2px,
        rgba(0, 255, 0, 0.1) 4px
    );
    animation: scan 10s linear infinite;
    pointer-events: none;
}

.scanlines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.05) 2px,
        rgba(0, 255, 0, 0.05) 4px
    );
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    z-index: 2;
    position: relative;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: #00ff00;
    color: #000000;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'VT323', monospace;
    border: 2px solid #000000;
}

.hero h1 {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-family: 'Share Tech Mono', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.hero h2 {
    font-size: 4rem;
    color: #00ff00;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 20px #00ff00;
    animation: textGlitch 3s infinite;
}

.hero p {
    font-size: 1.2rem;
    color: #00ff00;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
    text-shadow: 0 0 5px #00ff00;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
}

.btn-primary {
    background: #00ff00;
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.btn-primary:hover {
    background: #000000;
    color: #00ff00;
    border-color: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
}

.btn-secondary:hover {
    background: #00ff00;
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glitch-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glitch-text {
    font-family: 'VT323', monospace;
    font-size: 3rem;
    color: #00ff00;
    text-shadow: 0 0 20px #00ff00;
    animation: glitchText 2s infinite;
    position: relative;
}

.glitch-text:nth-child(2) {
    animation-delay: 0.1s;
    color: #ff0000;
}

.glitch-text:nth-child(3) {
    animation-delay: 0.2s;
    color: #0000ff;
}

.matrix-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 0, 0.1) 50%, transparent 100%);
    animation: matrixRain 20s linear infinite;
    pointer-events: none;
}

/* Секции */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    font-weight: 700;
    text-shadow: 0 0 15px #00ff00;
    animation: textGlitch 4s infinite;
}

.section-header p {
    font-size: 1.2rem;
    color: #00ff00;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 0 5px #00ff00;
}


.about {
    padding: 100px 0;
    position: relative;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2025&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.1) contrast(2) saturate(0) hue-rotate(120deg);
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 255, 0, 0.05) 100%);
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.about-text h3 {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 1.5rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.about-text p {
    font-size: 1.1rem;
    color: #00ff00;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0 0 5px #00ff00;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #00ff00;
    padding: 10px;
    border: 1px solid rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.05);
}

.feature-item i {
    color: #00ff00;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #00ff00;
}

.server-specs {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.3);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #00ff00;
    font-weight: 500;
    text-shadow: 0 0 5px #00ff00;
}

.spec-value {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #ffffff;
}


.join {
    padding: 100px 0;
    position: relative;
}

.join-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.1) contrast(2) saturate(0) hue-rotate(120deg);
    z-index: 1;
}

.join-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 255, 0, 0.05) 100%);
    z-index: 2;
}

.join-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.join-header {
    text-align: center;
    margin-bottom: 2rem;
}

.join-header h2 {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    font-weight: 700;
    text-shadow: 0 0 15px #00ff00;
    animation: textGlitch 4s infinite;
}

.join-header p {
    font-size: 1.2rem;
    color: #00ff00;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 0 5px #00ff00;
}

.join-main {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
}

.join-steps {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.join-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}


@media (max-width: 768px) {
    .join-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .join-steps,
    .join-info {
        max-width: 100%;
    }
    
    .join-header h2 {
        font-size: 2rem;
    }
    
    .join-header p {
        font-size: 1rem;
    }
}

.join-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #00ff00;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    font-family: 'VT323', monospace;
    flex-shrink: 0;
    border: 2px solid #000000;
}

.step-content h3 {
    color: #00ff00;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.step-content p {
    color: #00ff00;
    line-height: 1.6;
    text-shadow: 0 0 5px #00ff00;
}

.join-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.server-ip h3 {
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.ip-display {
    display: flex;
    align-items: center;
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    border-radius: 0;
    padding: 1rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.ip-display span {
    color: #00ff00;
    font-size: 1.3rem;
    font-weight: 700;
    flex: 1;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.copy-btn {
    background: #00ff00;
    color: #000000;
    border: none;
    border-radius: 0;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.copy-btn:hover {
    background: #000000;
    color: #00ff00;
    border-color: #00ff00;
    transform: scale(1.05);
}

.ip-note {
    color: #00ff00;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #00ff00;
}


.priority {
    padding: 100px 0;
    position: relative;
}

.priority-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.1) contrast(2) saturate(0) hue-rotate(120deg);
    z-index: 1;
}

.priority-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 255, 0, 0.05) 100%);
    z-index: 2;
}

.priority-content {
    position: relative;
    z-index: 3;
}

.priority-info {
    text-align: center;
    margin-bottom: 4rem;
}

.priority-info h3 {
    font-size: 2.5rem;
    color: #00ff00;
    margin-bottom: 1.5rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 15px #00ff00;
}

.priority-info p {
    font-size: 1.2rem;
    color: #00ff00;
    margin-bottom: 2rem;
    text-shadow: 0 0 5px #00ff00;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
}

.benefit-item i {
    color: #00ff00;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00ff00;
}

.benefit-item span {
    color: #00ff00;
    font-weight: 500;
    text-shadow: 0 0 5px #00ff00;
}

.priority-cta {
    margin-top: 3rem;
    text-align: center;
}

.priority-cta .btn {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.priority-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background: rgba(0, 255, 0, 0.03);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.package-card:hover {
    border-color: #00ff00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.2);
}

.package-card.featured {
    border-color: #00ff00;
    background: rgba(0, 255, 0, 0.05);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00ff00;
    color: #000000;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'VT323', monospace;
    border: 2px solid #000000;
}

.package-header h4 {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.package-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 15px #ffffff;
}

.price-period {
    font-size: 1rem;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.package-features {
    margin-bottom: 2rem;
}

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

.feature i {
    color: #00ff00;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #00ff00;
}

.feature span {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.package-btn {
    width: 100%;
    justify-content: center;
}

.payment-info {
    text-align: center;
    margin-top: 4rem;
}

.payment-info h3 {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 2rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 15px #00ff00;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.5rem;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
}

.payment-method i {
    font-size: 2rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.payment-method span {
    color: #00ff00;
    font-weight: 500;
    text-shadow: 0 0 5px #00ff00;
}

.payment-note {
    color: #00ff00;
    font-size: 1rem;
    text-shadow: 0 0 5px #00ff00;
    max-width: 600px;
    margin: 0 auto;
}


.priority-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 60px;
}

.priority-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.1) contrast(2) saturate(0) hue-rotate(120deg);
    z-index: 1;
}

.priority-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 255, 0, 0.1) 100%);
    z-index: 2;
}

.priority-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.priority-hero h1 {
    font-size: 4rem;
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 20px #00ff00;
    animation: textGlitch 4s infinite;
}

.priority-hero p {
    font-size: 1.3rem;
    color: #00ff00;
    margin-bottom: 3rem;
    text-shadow: 0 0 5px #00ff00;
}


.server-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.5rem;
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #00ff00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.stat-item i {
    font-size: 2rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 15px #ffffff;
}

.stat-label {
    color: #00ff00;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #00ff00;
}


.recent-purchases {
    margin-top: 3rem;
}

.recent-purchases h3 {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 2rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 15px #00ff00;
}

.purchases-list {
    max-width: 500px;
    margin: 0 auto;
}


.priority-packages-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
}

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


.purchase-form-section {
    padding: 100px 0;
    background: rgba(0, 255, 0, 0.02);
}

.purchase-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.purchase-form {
    background: rgba(0, 255, 0, 0.03);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #00ff00;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 0 0 5px #00ff00;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
    color: #00ff00;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.form-group input::placeholder {
    color: rgba(0, 255, 0, 0.5);
}


.form-summary {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
    padding: 2rem;
    margin: 2rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: #00ff00;
    font-weight: 500;
    text-shadow: 0 0 5px #00ff00;
}

.summary-item span:last-child {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 0 10px #ffffff;
}

.summary-item.total {
    border-top: 2px solid #00ff00;
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.summary-item.total span:last-child {
    color: #00ff00;
    font-size: 1.5rem;
    text-shadow: 0 0 15px #00ff00;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px 30px;
}


.payment-methods-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.9);
}

.security-info {
    margin-top: 4rem;
    text-align: center;
}

.security-info h3 {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 2rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 15px #00ff00;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 2rem;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
}

.security-feature:hover {
    border-color: #00ff00;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.2);
}

.security-feature i {
    font-size: 2.5rem;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
}

.security-feature span {
    color: #00ff00;
    font-weight: 500;
    text-shadow: 0 0 5px #00ff00;
    text-align: center;
}


.nav-menu a.active {
    color: #ffffff;
    text-shadow: 0 0 15px #ffffff;
}

.nav-menu a.active::after {
    background: #ffffff;
}


@media (max-width: 768px) {
    .priority-hero h1 {
        font-size: 2.5rem;
    }
    
    .priority-hero p {
        font-size: 1.1rem;
    }
    
    .server-stats {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .purchase-form {
        padding: 2rem;
    }
    
    .security-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .priority-hero h1 {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .purchase-form {
        padding: 1.5rem;
    }
}


.footer {
    position: relative;
    padding: 80px 0 30px;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.05) contrast(2) saturate(0) hue-rotate(120deg);
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 255, 0, 0.02) 100%);
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
}

.footer-logo span {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.footer-section p {
    color: #00ff00;
    line-height: 1.6;
    text-shadow: 0 0 5px #00ff00;
}

.footer-section h3 {
    color: #00ff00;
    margin-bottom: 1.5rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #00ff00;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px #00ff00;
}

.footer-section a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px #ffffff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #00ff00;
}

.social-links a:hover {
    background: #00ff00;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    color: #00ff00;
    position: relative;
    z-index: 3;
    text-shadow: 0 0 5px #00ff00;
}

/* Анимации */
@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes textGlitch {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-1px, -1px); }
    40% { transform: translate(1px, 1px); }
}

@keyframes glitchText {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 2px); }
}

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

@keyframes matrixRain {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-bottom: 2px solid #00ff00;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .join-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .priority-packages {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .priority-benefits {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .priority-info h3 {
        font-size: 2rem;
    }
}

/* Стили для страниц ошибок */
.error-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0;
}

.error-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2025&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.1) contrast(2) saturate(0) hue-rotate(120deg);
    z-index: 1;
}

.error-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 255, 0, 0.05) 100%);
    z-index: 2;
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.error-header {
    margin-bottom: 3rem;
}

.error-number {
    position: relative;
    margin-bottom: 2rem;
}

.error-number .glitch-text {
    font-size: 8rem;
    font-weight: 900;
    color: #00ff00;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 30px #00ff00;
    animation: textGlitch 2s infinite;
    display: block;
    line-height: 1;
}

.error-header h1 {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 15px #00ff00;
}

.error-header p {
    font-size: 1.3rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.error-message {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.error-icon {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px #00ff00;
}

.error-message h2 {
    font-size: 2rem;
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.error-message p {
    font-size: 1.1rem;
    color: #00ff00;
    line-height: 1.6;
    text-shadow: 0 0 5px #00ff00;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Стили для координат */
.coordinates-section {
    padding: 100px 0;
    position: relative;
}

.coordinates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coordinate-card {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.coordinate-card h3 {
    font-size: 1.5rem;
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.coords {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.coords span {
    background: #00ff00;
    color: #000000;
    padding: 0.5rem 1rem;
    font-family: 'Share Tech Mono', monospace;
    font-weight: 700;
    border: 2px solid #000000;
}

.coordinate-card p {
    color: #00ff00;
    line-height: 1.6;
    text-shadow: 0 0 5px #00ff00;
}

/* Стили для статуса серверов */
.server-status-section {
    padding: 100px 0;
    position: relative;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.status-card {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

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

.status-header h3 {
    font-size: 1.5rem;
    color: #00ff00;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.status-indicator {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Share Tech Mono', monospace;
}

.status-indicator.online {
    background: #00ff00;
    color: #000000;
    border: 2px solid #000000;
}

.status-indicator.offline {
    background: #ff0000;
    color: #ffffff;
    border: 2px solid #000000;
}

.status-indicator.maintenance {
    background: #ffaa00;
    color: #000000;
    border: 2px solid #000000;
}

.status-card p {
    color: #00ff00;
    line-height: 1.6;
    text-shadow: 0 0 5px #00ff00;
}

/* Стили для причин */
.reasons-section {
    padding: 100px 0;
    position: relative;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.reason-icon {
    font-size: 3rem;
    color: #00ff00;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px #00ff00;
}

.reason-card h3 {
    font-size: 1.5rem;
    color: #00ff00;
    margin-bottom: 1rem;
    font-family: 'VT323', monospace;
    text-shadow: 0 0 10px #00ff00;
}

.reason-card p {
    color: #00ff00;
    line-height: 1.6;
    text-shadow: 0 0 5px #00ff00;
}

/* Медиа-запросы для страниц ошибок */
@media (max-width: 768px) {
    .error-number .glitch-text {
        font-size: 4rem;
    }
    
    .error-header h1 {
        font-size: 2rem;
    }
    
    .error-header p {
        font-size: 1rem;
    }
    
    .error-message h2 {
        font-size: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .coordinates-grid,
    .status-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

.rules-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.rules-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?ixlib=rb-4.0.3&auto=format&fit=crop&w=1964&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.2) hue-rotate(90deg) contrast(1.5);
    z-index: 1;
}

.rules-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, #000000 90%);
    z-index: 2;
}

.rules-header-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.rules-header-content p {
    font-size: 1.5rem;
    color: #00ff00;
    margin-top: 20px;
    text-shadow: 0 0 10px #00ff00;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 2px;
}

.rules-section {
    padding: 50px 0;
    position: relative;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rule-card {
    background: rgba(0, 20, 0, 0.6);
    border: 1px solid #00ff00;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ff00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.rule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
    background: rgba(0, 40, 0, 0.8);
}

.rule-card:hover::before {
    transform: scaleX(1);
}

.rule-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
}

.rule-card h3 {
    font-family: 'VT323', monospace;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.rule-card p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.5;
}


.rules-section.forbidden {
    background: linear-gradient(180deg, rgba(20, 0, 0, 0) 0%, rgba(50, 0, 0, 0.2) 50%, rgba(20, 0, 0, 0) 100%);
    margin-bottom: 100px;
}

.rule-card.red {
    border-color: #ff0000;
    background: rgba(40, 0, 0, 0.4);
}

.rule-card.red .rule-icon {
    color: #ff0000;
    text-shadow: 0 0 15px #ff0000;
}

.rule-card.red::before {
    background: #ff0000;
}

.rule-card.red:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    background: rgba(60, 0, 0, 0.6);
}


.nav-logo {
    text-decoration: none;
}