/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: #f9f9f9;
}
h2 {
    margin: 0 0 10px;
    text-transform: uppercase;
    color: #444;
}
h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #fff; /* Base text color */
    text-shadow: 
        0 0 5px #00ff00, 
        0 0 10px #00ff00, 
        0 0 15px #00ff00, 
        0 0 20px #00ff00, 
        0 0 25px #00ff00, 
        0 0 30px #00ff00;
    animation: greenGlowPulse 3s infinite alternate;
}

@keyframes greenGlowPulse {
    0% {
        text-shadow: 
            0 0 5px #00ff00, 
            0 0 10px #00ff00, 
            0 0 20px #00ff00, 
            0 0 25px #00ff00;
    }
    100% {
        text-shadow: 
            0 0 10px #00ff00, 
            0 0 20px #00ff00, 
            0 0 30px #00ff00, 
            0 0 40px #00ff00;
    }
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}
.section {
    padding: 50px 0;
    text-align: center;
}
.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}
#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
