body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #00ff41;
    font-family: 'Courier Prime', monospace;
    overflow-x: hidden;
}

.matrix-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.matrix-rain {
    position: absolute;
    color: #00ff41;
    font-family: 'Courier Prime', monospace;
    font-size: 12px;
    animation: matrix-rain 8s linear infinite;
}

@keyframes matrix-rain {
    0% { transform: translateY(-100vh); opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.main-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #001100 50%, #000000 100%);
}

header {
    background: linear-gradient(135deg, #000000, #003300);
    border-bottom: 2px solid #00ff41;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

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

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #00ff41;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #39ff14;
    border: 1px solid #00ff41;
    box-shadow: 0 0 15px #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 30px #00ff41;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { text-shadow: 0 0 20px #00ff41; }
    100% { text-shadow: 0 0 40px #00ff41, 0 0 60px #00ff41; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 2rem;
    font-family: 'Courier Prime', monospace;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ff41, #008f11);
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.5);
    background: linear-gradient(135deg, #39ff14, #00ff41);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.feature-card {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid #00ff41;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #00ff41;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
    border-color: #39ff14;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff41, transparent);
    animation: scan-line-horizontal 2s linear infinite;
}

@keyframes scan-line-horizontal {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff41;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #00ffff;
    margin-bottom: 1rem;
}

footer {
    background: linear-gradient(135deg, #003300, #000000);
    border-top: 2px solid #00ff41;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: #00ff41;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff41, transparent);
    animation: scan 3s linear infinite;
}

.glitch {
    animation: glitch 0.3s ease-in-out infinite alternate;
}

@keyframes glitch {
    0% { text-shadow: 0 0 5px #00ff41; }
    100% { text-shadow: -2px 0 #ff0040, 2px 0 #00ffff; }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}