/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* 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;
}

@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;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.accent {
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.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.5rem 1.5rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.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 Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glitch {
    position: relative;
    color: #00ff41;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0080;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #0080ff;
    z-index: -2;
}
.nav-menu p {
    color: #00ffc3;
}
.privacy {
    max-width: 800px; 
    margin: 50px auto 0;  
    text-align: left; 
    color: #00ffc3;
}

@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 glitch-1 {
    0%, 100% { transform: translate(0); opacity: 1; }
    10% { transform: translate(-2px, -2px); opacity: 0.8; }
    20% { transform: translate(2px, 2px); opacity: 0.8; }
    30% { transform: translate(-2px, 2px); opacity: 0.8; }
    40% { transform: translate(2px, -2px); opacity: 0.8; }
    50% { transform: translate(0); opacity: 0.8; }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); opacity: 1; }
    10% { transform: translate(2px, 2px); opacity: 0.8; }
    20% { transform: translate(-2px, -2px); opacity: 0.8; }
    30% { transform: translate(2px, -2px); opacity: 0.8; }
    40% { transform: translate(-2px, 2px); opacity: 0.8; }
    50% { transform: translate(0); opacity: 0.8; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    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%;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 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: 'JetBrains Mono', monospace;
    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;
    background: #0a0a0a;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    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);
}

.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: #00ffff;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 0 0 10px #00ffff;
}

.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: 'JetBrains Mono', monospace;
}

.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: #cccccc;
    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: 'JetBrains Mono', monospace;
    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);
}

/* Payment Methods */
.payment-methods {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.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;
}

/* 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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.0 rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .crypto-logos {
        gap: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
}