body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000011;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

canvas {
    filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

.mc-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.hero-section {
    pointer-events: auto;
    text-align: center;
}

.logo-area h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 4rem;
    letter-spacing: 10px;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.status-card {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 255, 0, 0.2);
    padding: 30px;
    margin: 40px 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.status-card:hover {
    transform: scale(1.02);
}

.ip-display {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.8rem;
    color: #00ff00;
    margin: 20px 0;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
    background: #555;
}

.dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
    animation: pulse 2s infinite;
}

.nav-links a {
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 10px 30px;
    margin: 0 10px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    transition: 0.3s;
}

.nav-links a:hover {
    background: white;
    color: black;
}

.achievement {
    position: fixed;
    top: 20px;
    right: -400px;
    width: 320px;
    background: #212121;
    border: 4px solid #000;
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    font-family: 'Press Start 2P', cursive;
}

.achievement.show { right: 20px; }

.pixel-block {
    width: 30px;
    height: 30px;
    background: #55ff55;
    border: 3px solid #00aa00;
}

.achievement-text { display: flex; flex-direction: column; margin-left: 15px; }
.achievement-text .title { color: #ffff00; font-size: 8px; margin-bottom: 5px; }
.achievement-text .message { color: #fff; font-size: 10px; }

.ip-copy-flash { animation: ip-flash 0.6s ease-out; }

@keyframes ip-flash {
    0% { border-color: #fff; box-shadow: 0 0 40px #00ff00; }
    100% { border-color: rgba(0, 255, 0, 0.2); }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}