* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: black;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Center Layout */
.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.center h1 {
    font-size: clamp(40px, 6vw, 70px);
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* Search */
.search-box {
    width: 100%;
    background: rgba(0,0,0,0.6);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.search-box input {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    outline: none;
}

/* HUD */
.hud {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    font-size: 14px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Updates Panel */
.updates {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 260px;
    max-height: 300px;
    overflow-y: auto;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.updates h3 {
    margin-bottom: 10px;
}

.update-entry {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.update-entry:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* Stars */
.stars, .stars2, .stars3 {
    position: fixed;
    width: 200%;
    height: 200%;
    background-repeat: repeat;
    animation: moveStars linear infinite;
    z-index: -1;
}

.stars {
    background-image: radial-gradient(2px 2px white, transparent);
    background-size: 50px 50px;
    animation-duration: 100s;
}

.stars2 {
    background-image: radial-gradient(3px 3px #aaa, transparent);
    background-size: 100px 100px;
    animation-duration: 150s;
}

.stars3 {
    background-image: radial-gradient(4px 4px #fff, transparent);
    background-size: 150px 150px;
    animation-duration: 200s;
}

@keyframes moveStars {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

/* Responsive */
@media (max-width: 600px) {
    .updates {
        width: 90%;
        left: 5%;
        bottom: 10px;
    }

    .hud {
        left: 5%;
        width: 90%;
    }
}