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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-image: url('/Assets/Minecraft/Images/Minecraft.jpg');
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #1a73e8;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1005;
    gap: 10px;
}

.home-icon {
    height: 30px;
}

.settings-icon {
    height: 25px;
}

.header h1 {
    flex-grow: 1;
    text-align: center;
    font-size: 1.5rem;
}

.header button {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
}

.header a {
    display: flex;
    align-items: center;
}

.sidebar {
    position: fixed;
    top: 52px;
    left: -250px;
    width: 90px;
    height: 100%;
    background: #1e1e1e;
    color: #fff;
    padding: 0 10px;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 999;
}

.sidebar.open {
    left: 0;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin: 15px 0;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    background: #3b3b3b;
    transition: background 0.2s;
}

.sidebar ul li:hover {
    background: #333;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    z-index: 500;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.overlay.on {
    opacity: 1;
    pointer-events: auto;
}

.content {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    margin: 10px;
    padding: 5px;
    text-align: center;
}

.content a {
    color: white;
}