/* -------------------------------------- */
/* GLOBAL DARK THEME */
/* -------------------------------------- */

body {
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* -------------------------------------- */
/* HEADER */
/* -------------------------------------- */

.header {
    background-color: #1f1f1f;
    padding: 20px;
    border-bottom: 1px solid #333;
    text-align: center;
    position: relative;
}

.site-title {
    margin: 0;
    font-size: 32px;
    color: #ffffff;
}

.home-link {
    text-decoration: none;
    color: #ffffff;
}

.home-link:hover {
    color: #9ad0ff;
}

/* Username (top-left) */
.user-info {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #9ad0ff;
    font-size: 14px;
}

/* Login / Logout (top-right) */
.top-right-auth {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Small login/logout button */
.small-btn {
    padding: 8px 14px;
    background-color: #1f1f1f;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    color: #9ad0ff;
    transition: 0.2s;
}

.small-btn:hover {
    background-color: #292929;
    color: #ffffff;
    border-color: #555;
}

/* -------------------------------------- */
/* MAIN CONTENT AREA */
/* -------------------------------------- */

.content {
    max-width: 800px;
    margin: auto;
    padding: 40px 20px;
}

/* -------------------------------------- */
/* BUTTONS */
/* -------------------------------------- */

/* Big homepage buttons (Skill Tree, World, Creatures) */
.big-btn {
    display: block;
    padding: 16px;
    background-color: #1f1f1f;
    border: 2px solid #333;
    color: #9ad0ff;
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    transition: 0.25s;
}

.big-btn:hover {
    background-color: #292929;
    color: #ffffff;
    border-color: #555;
}

/* Username button ABOVE the home menu — same style as big buttons */
.user-btn {
    display: block;
    width: 260px;
    margin: 0 auto 30px auto;
    padding: 16px;
    background-color: #1f1f1f;
    border: 2px solid #333;
    color: #9ad0ff;
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
    transition: 0.25s;
}

.user-btn:hover {
    background-color: #292929;
    color: #ffffff;
    border-color: #555;
}

/* -------------------------------------- */
/* HOMEPAGE LAYOUT */
/* -------------------------------------- */

/* Container for the 3 main menu buttons */
.center-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 260px;
    text-align: center;
}

