/* ОБЩИЕ НАСТРОЙКИ */
body {
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: white;
    font-family: 'Minecraft', sans-serif;
    overflow-x: hidden;
}

/* ШАПКА И НАВИГАЦИЯ */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 4px solid #333;
}

ul { display: flex; list-style: none; gap: 20px; }

/* ГЛАВНЫЙ БЛОК */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://i.imgur.com/8N69fH9.png'); /* Фоновое фото майна */
    background-size: cover;
}

.play-btn {
    background: #55aa55;
    border: 4px solid #224422;
    color: white;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    font-family: 'Minecraft', sans-serif;
}

/* СПИСОК ИГРОКОВ */
.players {
    padding: 50px;
    text-align: center;
}

.player-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.player span {
    display: inline-block;
    width: 10px; height: 10px;
    background: #55ff55;
    border-radius: 50%;
}

.ghost { opacity: 0.3; } /* Скрытый четвертый игрок */

/* ТЕРМИНАЛ (ГЛЮК) */
.hidden { display: none !important; }

#glitch-site {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #050505;
    color: #5daf4e;
    padding: 40px;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
    z-index: 999;
}

.error-msg { color: #f50303; }

#secret-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #00ff08;
    color: #808080;
    outline: none;
    font-size: 16px;
    width: 200px;
}

#terminal-content {
    line-height: 30px;
}

#prompt {
    color: #41ff1e;
}

/* ЭФФЕКТ ДРОЖАНИЯ */
.shake { animation: shake 0.15s infinite; }
@keyframes shake {
    0% { transform: translate(2px, 2px); }
    50% { transform: translate(-2px, -1px); }
    100% { transform: translate(0, 0); }
}