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

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Courier New', Courier, 'Liberation Mono', 'Consolas', monospace;
    background: #0b0d0e;
    color: #fff;
    min-height: 100vh;
    position: relative;
}

/* Starfield */
.starfield {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: var(--opacity);
    }

    50% {
        opacity: calc(var(--opacity) * 0.3);
    }
}

/* Scanlines overlay */
.scanlines {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
    pointer-events: none;
    z-index: 100;
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.parallax-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
}

/* Title */
.title {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(90deg, #00d4ff, #be3eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.tagline {
    font-size: 1.1rem;
    color: #5b77d1;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

/* Notification */
.notification-wrapper {
    width: 100%;
    margin-bottom: 3rem;
    padding: 0;
}

.notification {
    background: rgba(190, 62, 234, 0.1);
    border: 1px solid #be3eea;
    border-radius: 8px;
    padding: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(190, 62, 234, 0.15);
}

/* Main links */
.main-link {
    width: 200px;
    height: 180px;
    border: 2px solid #be3eea;
    border-radius: 8px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: rgba(11, 13, 14, 0.8);
    text-decoration: none;
}

.main-link:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.02);
}

.links-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.main-link img,
.main-link svg {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

/* Attribution */
.attribution {
    margin-top: 2rem;
    color: #7f8484;
    font-size: 0.9rem;
}

.attribution a,
.footer a {
    color: #be3eea;
    text-decoration: none;
    transition: color 0.3s;
}

.attribution a:hover,
.footer a:hover {
    color: #00d4ff;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
}

.footer a {
    color: #5b77d1;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .main-link {
        width: 160px;
        height: 150px;
    }

    .main-link img {
        max-width: 100px;
        max-height: 100px;
    }

    .tagline {
        letter-spacing: 0.15em;
        font-size: 0.9rem;
    }
}