body {
    font-family: monospace, sans-serif;
    background-color: #111;
    color: #00ff00;
    margin: 0;
    padding: 0;
    animation: background-pulse 5s infinite alternate; /* Fon üçün nəbz effekti */
}

@keyframes background-pulse {
    0% { background-color: #111; }
    100% { background-color: #1a1a1a; }
}

header {
    background-color: #222;
    padding: 20px;
    text-align: center;
    border-bottom: 2px dashed #00ff00;
    animation: border-flicker 2s infinite alternate; /* Başlıq xətti üçün yanıb-sönmə */
}

@keyframes border-flicker {
    0% { border-bottom-color: #00ff00; }
    100% { border-bottom-color: #00bb00; }
}

.neon-box {
    position: relative;
    display: inline-block;
}

.neon-box h1 {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
    margin-bottom: 10px;
    animation: neon-glow 1.5s ease-in-out infinite alternate; /* Neon parıltısı */
}

@keyframes neon-glow {
    from { text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 15px #00ff00; }
    to { text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00; }
}

.neon-button {
    display: inline-block;
    padding: 10px 20px;
    color: #00ff00;
    text-decoration: none;
    border: 2px solid #00ff00;
    border-radius: 5px;
    text-shadow: 0 0 5px #00ff00;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.neon-button:hover {
    background-color: #00ff0022;
    box-shadow: 0 0 10px #00ff00; /* Hover effekti */
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: center; /* Nav linkləri mərkəzdə */
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: #00bb00;
    text-shadow: 0 0 5px #00bb00; /* Hover effekti */
}

main.program-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.program-item {
    background-color: #222;
    border: 1px solid #00ff00;
    border-radius: 5px;
    margin: 15px;
    padding: 15px;
    width: 300px;
    text-align: center;
    animation: program-fade-in 0.5s ease-out forwards; /* Proqram elementləri üçün yavaş görünmə */
    opacity: 0;
}

@keyframes program-fade-in {
    to { opacity: 1; }
}

.program-item:nth-child(odd) {
    animation-delay: 0.2s; /* Tək elementlər üçün gecikmə */
}

.program-item:nth-child(even) {
    animation-delay: 0.4s; /* Cüt elementlər üçün gecikmə */
}

.program-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border: 1px solid #00ff00;
    padding: 5px;
    background-color: #333;
}

.program-item h3 {
    color: #00ff00;
    margin-top: 0;
}

.download-links {
    margin-top: 10px;
}

.download-links a {
    display: inline-block;
    background-color: #333;
    color: #00ff00;
    padding: 8px 15px;
    text-decoration: none;
    border: 1px solid #00ff00;
    border-radius: 3px;
    margin: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.download-links a:hover {
    background-color: #00ff00;
    color: #111;
}

.alternative-link {
    background-color: #444;
    border-color: #aaa;
    color: #aaa;
}

.alternative-link:hover {
    background-color: #aaa;
    color: #444;
}

footer {
    background-color: #222;
    color: #aaa;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 2px dashed #00ff00;
    animation: footer-slide-up 1s ease-in-out forwards; /* Footer üçün yuxarı sürüşmə */
    transform: translateY(20px);
    opacity: 0;
}

@keyframes footer-slide-up {
    to { transform: translateY(0); opacity: 1; }
}