/* Reset basic styles for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body and background */
body {
    font-family: 'Courier New', Courier, monospace;
    color: #00ff00;
    background: black;
    overflow-x: hidden;
}

/* Background animation */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 255, 0, 0.1),
        rgba(0, 255, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: moveBackground 5s linear infinite;
    z-index: -1;
}

@keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 0 100px; }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #111;
    box-shadow: 0 2px 10px #00ff00;
}

.logo {
    font-size: 2rem;
    text-transform: uppercase;
    animation: glitch 1s infinite;
}

/* Navigation menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

nav a::after {
    content: '';
    display: block;
    height: 2px;
    background: #00ff00;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover::after {
    transform: scaleX(1);
}

/* Apps Section */
.apps-section {
    text-align: center;
    padding: 80px 20px;
}

.apps-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.apps-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* App list */
.app-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.app-item {
    background: rgba(0, 255, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.app-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.app-item .btn {
    padding: 12px 25px;
    background: #00ff00;
    color: black;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.app-item .btn:hover {
    background: white;
    color: black;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #00ff00;
    margin-top: 40px;
}
