* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Fredoka', sans-serif; background: #000; color: #fff; min-height: 100vh; }

.hatter-video { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; z-index: -2; 
}
.hatter-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.397); z-index: -1; 
}

.szerverek { display: flex; justify-content: center; align-items: flex-start; gap: 30px; padding: 100px 20px; flex-wrap: wrap; }

.sgui {
    width: 300px; padding: 30px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(31, 31, 31, 0.5);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    display: flex; flex-direction: column; align-self: flex-start;
    transition: 0.4s ease;
}
.sgui:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.3); }

.sgui img { width: 90px; height: 90px; margin: 0 auto 20px; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.sgui h2 { font-size: 1.6em; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }

.szeromanager { 
    width: 100%; padding: 10px; margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.05); border-radius: 10px;
    font-size: 0.85em; font-weight: bold; text-transform: uppercase;
}
.managertext { color: #ffd53b; margin-right: 5px; text-shadow: 0 0 8px rgba(236, 236, 236, 0.5); }

details { cursor: pointer; width: 100%; margin-top: auto; padding-top: 15px; }
summary { padding: 10px; background: rgba(255,255,255,0.05); border-radius: 8px; list-style: none; transition: 0.3s; }
summary:hover { background: #ffd53b3f; }
details p { margin-top: 10px; padding: 10px; background: rgba(0,0,0,0.3); border-radius: 8px; font-size: 0.85em; }

.visszagomb {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: inline-block;
    padding: 12px 20px;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #333;
    box-shadow: 0 5px 0 #000;
    transition: all 0.1s ease;
    cursor: pointer;
}
.visszagomb:hover {
    background: #252525;
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #000;
    border-color: #ffd43b;
}
.visszagomb:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 #000;
    background: #333;
}

.patchek { background: rgba(85, 60, 45, 0.8); padding: 15px; border-radius: 10px; margin-top: 10px; text-align: left; }
.patch-cim { font-weight: bold; font-size: 1.2em; margin-bottom: 10px; color: #fff; }
.patch-lista { list-style-type: none; padding-left: 0; }
.patch-lista li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }