* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    overflow: auto;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.2), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1a1a1a;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ff0000;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #cc0000;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.9);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid #ff0000;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #330000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 15px;
    text-align: center;
    z-index: 2;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: #ff0000;
    margin: 0;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}

.quote {
    font-size: 16px;
    color: #ff0000;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
    font-style: italic;
    animation: quoteMove 5s ease-in-out infinite;
    letter-spacing: 1px; /* Add spacing for readability */
    white-space: nowrap; /* Prevent text wrapping */
}

@keyframes quoteMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

#typewriter {
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
}

#typewriter span {
    display: inline-block;
    opacity: 0;
    animation: glowFadeIn 0.5s ease forwards;
    margin-right: 8px; /* Add spacing between words */
}

@keyframes glowFadeIn {
    to {
        opacity: 1;
        text-shadow: 0 0 15px rgba(255, 0, 0, 0.9), 0 0 25px rgba(255, 0, 0, 0.6);
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.primary-button {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #ff0000;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-button:hover {
    background: #330000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

.download-card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3), 0 0 10px rgba(255, 0, 0, 0.5);
    border: 2px solid rgba(255, 0, 0, 0.7);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5), 0 0 15px rgba(255, 0, 0, 0.7);
}

.version-text {
    font-size: 18px;
    color: #ff0000;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.version-text:hover {
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.9), 0 0 30px rgba(255, 0, 0, 0.6);
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 0, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 0, 0, 0.9), 0 0 30px rgba(255, 0, 0, 0.6); }
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    padding: 15px;
    text-align: center;
    z-index: 50;
    overflow: hidden;
}

.copyright {
    font-size: 12px;
    color: #cccccc;
    position: relative;
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: linear-gradient(to top, rgba(255, 50, 50, 0.6), transparent);
    animation: fireFlicker 1.5s ease-in-out infinite;
    z-index: 1;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10" preserveAspectRatio="none"><path d="M0 10 Q10 2 20 10 T40 10 T60 10 T80 10 T100 10" fill="rgba(255,50,50,0.4)"/></svg>') repeat-x;
    animation: fireSlide 3s linear infinite;
    z-index: 1;
}

@keyframes fireFlicker {
    0%, 100% { opacity: 0.8; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(-3px); }
}

@keyframes fireSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

.red-particle {
    position: absolute;
    top: -20px;
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.4);
    animation: fall linear infinite;
    z-index: 10;
}

.red-particle::before,
.red-particle::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #cc0000;
    border-radius: 50%;
}

.red-particle::before {
    top: 2px;
    left: 2px;
}

.red-particle::after {
    bottom: 2px;
    right: 2px;
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
        transform: translateY(100vh) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 12px;
        padding: 6px 12px;
    }

    h1 {
        font-size: 32px;
    }

    .quote {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .primary-button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .download-card {
        padding: 20px;
    }

    .version-text {
        font-size: 16px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 10px;
    }
}