* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Perfect DOS VGA';
    src: url('assets/Perfect DOS VGA 437 Win.ttf') format('truetype');
}

body {
    background: #201533;
    overflow: hidden;
    height: 100vh;
    font-family: 'Perfect DOS VGA';
}

p {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    color: #0098db;
    font-size: 1.2rem;
}


li {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    color: #4c79c3;
    font-size: 1.2rem;
    margin-left: 40px;
}

h1 {
    text-align: center;
    color: #6883d8;
    margin-top: 60px;
    font-size: 2cm;
}

h2 {
    margin-top: 0;
    margin-left: 0;
    text-align: left;
    color: #574fb0;
    font-size: 2rem;
}

.text {
    position: relative;
    display: block;
    margin-top: 20px;
    width: 60%;
    margin-left: 10%;
    margin-right: 20%;
    padding: 20px;
    border: 2px solid #0ce6f2;
    background: #201533;
    z-index: 2;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-radius: 5px;
}

.star-sites {
    position: absolute;
    top: calc(60px + 2cm + 20px);
    left: calc(10% + 60% + 2px);
    width: calc(25% - 2px);
    padding: 20px;
    border: 2px solid #0ce6f2;
    background: #201533;
    z-index: 2;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-radius: 5px;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 40px #00ffff,
            0 0 80px #00ffff;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.rain-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

.raindrop {
    position: absolute;
    background: linear-gradient(to bottom, transparent, #565, transparent);
    border-radius: 0 0 50% 50%;
    opacity: 0.7;
    animation: fall linear infinite;
}

.raindrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #565;
    box-shadow: 0 0 6px #565;
}

@keyframes fall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(calc(100vh + 100px));
        opacity: 0;
    }
}

.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.subtitle {
    margin-top: 150px;
    font-size: 1.2rem;
    opacity: 0.8;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #00ffff40;
    }
    to {
        text-shadow: 0 0 20px #00ffff80, 0 0 30px #00ffff60;
    }
}