* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
title {
    color:#1f2529;
}
body {
    font-family: 'Georgia, serif';
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #1de337;
    overflow-x: hidden;
    line-height: 1.6;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #00ff41;
}
.stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
}
/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, #00ff41 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #ff0080 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #0080ff 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    will-change: transform; /* ДОБАВИ ТОВА */
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Header */
header {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}
.logo a { text-decoration: none !important; }    

.accent {
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(4, 102, 231, 0.5))

}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
   
}

.nav-links a {
    color: #00ff41;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.nav-links a:hover {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
}

.client-btn {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    color: #000 !important;
    font-weight: 500;
    padding: 0.4rem 0.8rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
}

.client-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.3);
    background: linear-gradient(45deg, #00cc33, #00ff41) !important;
}

.client-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 65, 0.3);
    background: linear-gradient(45deg, #00cc33, #00ff41) !important;
}


.hero {
    /* Фон със зелен оттенък върху снимката */
    background: 
        linear-gradient(rgba(0, 255, 65, 0.15), rgba(0, 0, 0, 0.8)),
        url('background.webp') center center / cover no-repeat fixed;
    
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    

    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 255, 0.07) 0%, transparent 50%);
    
    animation: float 20s ease-in-out infinite;
    z-index: 0; 
}



.hero-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative; 
    z-index: 1;
    
    margin-bottom: 0.5rem; 
   
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #7ce35c;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative; 
    z-index: 1;
   
    margin-bottom: 4rem; 
   
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative; 
    z-index: 1;
}
.hero-title,
.hero-subtitle {
    transform: translateY(-2rem); 
}

.hero-stats,
.cta-button {
    transform: translateY(2rem);
}


@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.glitch {
    position: relative;
    color: #00ff41;
    animation: glitch 2s infinite;
    display: grid;
    place-items: center;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    right: 0.2%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    grid-area: 1 / 1;
}



.nav-menu p {
    color: #00ffc3;
}
.privacy {
    max-width: 800px; 
    margin: 50px auto 0;  
    text-align: left; 
    color: #00ffc3;
}
.tos {
    max-width: 800px; 
    margin: 50px auto 0;  
    text-align: left; 
    color: #00ffc3;
}


@keyframes glitch {
    0%, 100% { transform: translate(); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

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

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); opacity: 1; }
    10% { transform: translate(1px, 1px); opacity: 0.8; }
    20% { transform: translate(-1px, -1px); opacity: 0.8; }
    30% { transform: translate(1px, -1px); opacity: 0.8; }
    40% { transform: translate(-1px, 1px); opacity: 0.8; }
    50% { transform: translate(0); opacity: 0.8; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #7ce35c;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    position: relative;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.4);
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover .button-glow {
    left: 100%;
}


.services-section {
    background: 
        linear-gradient(rgba(0, 255, 65, 0.15), rgba(0, 0, 0, 0.8)),
        url('background1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* НОВ КОД: Анимация за втората секция */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 255, 0.07) 0%, transparent 50%);
    
    animation: float 20s ease-in-out infinite;
    z-index: 0; 
}
.services-explaining {
    padding: 4rem 2rem;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 1rem;
    margin: 0 auto; /* Центрира контейнера хоризонтално */
    max-width: 1000px;
    backdrop-filter: blur(5px);
}


.content-box-style {
    padding: 2rem; 
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 1rem;
    margin: 0 auto;
    max-width: 1000px;
    backdrop-filter: blur(10px);
}
.content-box-style > * {
    margin-top: -5.5rem;
    margin-bottom: 2rem;
}
.crypto-title {
    margin-top: -1rem;
    margin-bottom: 4rem;
}
.security-payments-wrapper .security-compliance {
    padding-top: 5rem; 
}
.security-payments-wrapper .payment-methods {
    margin-top: -2.5rem; 
}
.combined-background-wrapper {
    background: 
        linear-gradient(rgba(0, 255, 65, 0.15), rgba(0, 0, 0, 0.6)),
        url('background2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 6rem 0; 
}

/* Прилагаме анимацията на новия общ контейнер */
.combined-background-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 255, 0.07) 0%, transparent 50%);
    
    animation: float 20s ease-in-out infinite;
    z-index: 0; 
}
/* Features Section */
.features {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ff41;
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Plan Categories */
.plan-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #cccccc;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: 'Georgia, serif';
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    color: #00ffff;
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    /* background: rgba(255, 255, 255, 0.02); */
}

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

.demo-video {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    border: 2px solid #00ffff;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2a3442 0%, #1f2529 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #3a4552 0%, #2f3539 100%);
}

.play-button {
    font-size: 4rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.video-overlay h3 {
    color: #00ffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-overlay p {
    color: #cccccc;
    font-size: 0.9rem;
}

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

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

.stat-card:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info h4 {
    color: #00ffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: #0a0a0a;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #cccccc;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid #00ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    color: #00ffff;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}
.plans {
    padding: 6rem 0;
    position: relative; 
    overflow: hidden;   
    
    
    background: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.98)),
        url('background.webp') center center / cover no-repeat fixed;
}

.plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
   
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 255, 0.07) 0%, transparent 50%);
    
    animation: float 20s ease-in-out infinite;
    z-index: 0; 
    pointer-events: none;
}
.plans .container {
    position: relative;
    z-index: 1; 
}


.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    border: 2px solid #00ffff;
    border-radius: 1rem;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    
    width: 360px; 
}


.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px; 
    color:#0080ff;
    margin-top: 50px;
}


.about-logo {
    width: 150px;       
    height: auto;       
    border: 2px solid #00aaff; 
    border-radius: 50%; 
    margin-top: 150px;
        filter: drop-shadow(0 0 15px rgba(4, 102, 231, 0.7));

}
.about-text {
    color: #ccc; 
    text-align: center; 
    max-width: 600px;
    line-height: 1.6; 
    margin-top: 20px; 
}

.about h1 {
    margin-top: 25px;
    margin-bottom: 10px; 
}

/*  Server  */
.server {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px; 
    color:#0080ff;
    margin-top: 50px;
}
.article-container {
    max-width: 800px; 
    margin: 4rem auto;
    padding: 2rem;
    text-align: left; 
    background: rgba(10, 10, 10, 0.5); 
    border: 1px solid #222;
    border-radius: 8px;
}


.article-container h1 {
    font-size: 2.2rem;
    color: #00ff41; 
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}


.article-container h2 {
    font-size: 1.8rem;
    color: #00ffff; 
    border-left: 3px solid #00ffff;
    padding-left: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}


.article-container p,
.article-container li {
    color: #09e741;
    font-size: 1rem;
    line-height: 1.8; 
    margin-bottom: 1.5rem;
}


.article-container ul {
    list-style: none; 
    padding-left: 0;
}

.article-container ul li {
    padding-left: 1.5rem;
    position: relative;
}


.article-container ul li::before {
    content: '»'; 
    position: absolute;
    left: 0;
    color: #00ff41;
    font-weight: bold;
}


.article-container strong {
    color: #ffffff;
    font-weight: 600;
}


.article-container iframe {
    max-width: 100%; 
    border: 2px solid #333;
    border-radius: 8px;
    margin: 1rem auto 2rem auto;
    display: block; 
}
.uacbypassing {
    text-decoration: none; 
    color: #00ffff;      
    font-weight: bold;    
}

.serverlogo {
    width: 150px;       
    height: auto;       
    border: 2px solid #ff0000; 
    border-radius: 50%; 
   
    filter: drop-shadow(0 0 15px rgba(231, 10, 10, 0.7));
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #00ff41;
    box-shadow: 0 25px 50px rgba(0, 255, 65, 0.4);
}

.plan-card.popular {
    border-color: #00ff41;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.plan-header {
    background: rgba(0, 255, 255, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.plan-name {
    font-size: 1.8rem;
    color: #00ffd5;
    margin-bottom: 0;
    /* text-transform: uppercase; */
    font-weight: 700;
    text-shadow: 0 0 10px #00ffff;
    text-align: center;
}



.plan-content {
    padding: 1.5rem;
}

.plan-specs {
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Georgia, serif';
}

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

.spec-label {
    color: #cccccc;
    font-weight: 400;
}

.spec-value {
    color: #00ffff;
    font-weight: 600;
    text-shadow: 0 0 5px #00ffff;
}

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

.feature-tag {
    display: inline-block;
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid #00ffff;
    border-radius: 1rem;
    padding: 0.4rem 1rem;
    margin: 0.3rem 0.3rem 0.3rem 0;
    font-size: 0.8rem;
    color: #00ffff;
    font-weight: 500;
}

.plan-price-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.8rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px #00ffff;
}

.period {
    color: #06ffff;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.plan-button {
    width: 100%;
    background: linear-gradient(45deg, #00ffff, #0099cc);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia, serif';
    letter-spacing: 1px;
}

.plan-button:hover {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

/* Server */



.server {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px; 
    color:#e20d0d;
    margin-top: 0px;
}
.section-servers {
    margin-top: -45px;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #f70707;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #aa1919;
}
.server-header {
    background: rgba(139, 29, 29, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}


.plan-server {
    font-size: 1.3rem;
    color: #d41f1f;
    margin-bottom: 0;
    /* text-transform: uppercase; */
    font-weight: 700;
    text-shadow: 0 0 10px #881e1e;
    text-align: center;
}
.servers {
    padding: 6rem 0;
    position: relative; 
    overflow: hidden;   
    
    background: 
     linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.98)),
        url('background.webp') center center / cover no-repeat fixed;
}

.servers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
   
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 255, 0.07) 0%, transparent 50%);
    
    animation: float 20s ease-in-out infinite;
    z-index: 0; 
    pointer-events: none;
}
.servers .container {
    position: relative;
    z-index: 1; 
}

.server-card {
    /* background: linear-gradient(135deg, #141516 0%, #0f1419 100%); */
    border: 2px solid #ce4343;
    border-radius: 1rem;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 20, 0, 0.3);
    
    width: 360px; 
}

.server-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(196, 25, 25, 0.1);
    font-family: 'Georgia, serif';
}

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

.server-label {
    color: #ee0a0a;
    font-weight: 400;
}

.server-value {
    color: #e41f1f;
    font-weight: 600;
    text-shadow: 0 0 5px #700c0c;
}

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

.server-tag {
    display: inline-block;
    background: rgba(173, 24, 24, 0.1);
    border: 1px solid #ff3300;
    border-radius: 1rem;
    padding: 0.4rem 1rem;
    margin: 0.3rem 0.3rem 0.3rem 0;
    font-size: 0.8rem;
    color: #ff3300;
    font-weight: 500;
}

.server-price-section {
    background: rgba(94, 19, 19, 0.1);
    border-radius: 0.8rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.sprice {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fa2a2a;
    text-shadow: 0 0 5px #eb1515;
}

.speriod {
    color: #e61111;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.splan-button {
    width: 100%;
    background: linear-gradient(45deg, #ff1100, #592c24);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia, serif';
    letter-spacing: 1px;
}

.plan-button:hover {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.4);
}

/* Services Explaining Section */
.services-explaining {
    padding: 4rem 2rem;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 1rem;
    margin: 3rem auto;
    max-width: 1000px;
    backdrop-filter: blur(5px);
}

.services-explaining p {
    color: #00ff41;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left; /* <-- ПРОМЯНАТА Е ТУК */

    /* Препоръчително: Добави това, за да не се разтяга текстът твърде много */
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.services-explaining p:first-child {
    font-size: 1.2rem;
    color: #00ff41;
    font-weight: 500;
}

.services-explaining p:last-child {
    color: #00ff41;
    font-weight: 500;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
    margin-bottom: 0;
}

.services-explaining ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.services-explaining li {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 0.5rem;
    padding: 1rem 1.5rem 1rem 2.5rem;
    color: rgb(0, 204, 51);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.services-explaining li::before {
    content: '▶';
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #00ff41;
    font-size: 0.8rem;
    text-shadow: 0 0 5px #00ff41;
}

.services-explaining li:hover {
    background: rgba(0, 255, 65, 0.1);
    border-color: #00ff41;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-explaining ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .services-explaining {
        padding: 3rem 1.5rem;
        margin: 2rem 1rem;
    }
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background: transparent;
}

.crypto-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.crypto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.crypto-icon {
    font-size: 3rem;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

.crypto-item span {
    color: #cccccc;
    font-weight: 500;
}
.article-container img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* НОВ СТИЛ ЗА ОБЕДИНЕНИЯ ФОН */
.security-payments-wrapper {
    background: 
        linear-gradient(rgba(0, 255, 65, 0.15), rgba(0, 0, 0, 0.6)),
        url('background3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 6rem 0; 
}

/* Анимация за този фон */
.security-payments-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 65, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 128, 0.07) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 128, 255, 0.07) 0%, transparent 50%);
    
    animation: float 20s ease-in-out infinite;
    z-index: 0; 
}
/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

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

.footer-section h4 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ff41;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}
.about-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); */
    color: #04a85c;
}

.about-section h2 {
    color: #00ff41;
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 2rem;
}

.about-section > .container > p {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-feature {
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.about-feature h3 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.3em;
}

.about-feature p {
    line-height: 1.6;
}
.article-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}
/* Responsive Design */

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .crypto-logos {
        gap: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1000;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    .hamburger {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        position: relative;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: white;
        left: 0;
        transition: transform 0.3s ease;
    }

    .hamburger::before {
        top: -8px;
    }

    .hamburger::after {
        top: 8px;
    }
    
    .nav-open .hamburger {
        background: transparent;
    }

    .nav-open .hamburger::before {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-open .hamburger::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
@media (min-width: 769px) {
    .nav-toggle {
        display: none !important;
    }
}
.article-container a {
    text-decoration: none;
    color: #00ffff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.article-container a:hover {
    color: #00ff41;
    text-decoration: underline;
}
@media (max-width: 768px) {
    section ul {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    section li {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem 0.8rem 2.2rem;
    }
}
/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    .bg-animation::before {
        will-change: transform;
    }
    
    .glitch::before,
    .glitch::after {
        display: none;
    }
    
    .glitch {
        animation: none;
    }
    
    header,
    .feature-card,
    .plan-card,
    .server-card {
        backdrop-filter: none;
    }
}
/* === VPN Page - Locations === */

/* Махни точката и центрирай */
#plans > .container > ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#plans > .container > ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #00ff41;
}

#plans > .container > ul li img {
    width: 32px;
    height: auto;
    border-radius: 3px;
}

/* Центрирай Locations заглавието */
#plans > .container > h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #00ff41;
}

/* VPN лога - по-прозрачни */
.logovpn img,
.logovpn1 img {
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.logovpn:hover img,
.logovpn1:hover img {
    opacity: 1;
}

/* Оправи plans-grid за VPN страницата */
.logovpn,
.logovpn1 {
    background: transparent;
    border: none;
    box-shadow: none;
}