@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

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

body {
    min-height: 100vh;
    background: #000;
    color: #fff;
    font-family: "Press Start 2P", monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container box */
.account-container {
    width: 700px;
    background: #111;
    border: 4px solid white;
    padding: 30px;
}

h1 {
    color: gold;
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px #fff;
}

/* Stat rows */
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px dashed #333; 
}

label.stat {
    font-size: 12px;
    color: silver;
}

/* Input boxes with black background */
input.stat {
    background-color: #000; 
    color: #fff;
    font-family: "Press Start 2P", monospace;
    font-size: 12px;
    border: 2px solid #555;
    padding: 10px;
    width: 350px;
    outline: none;
}

input.stat:focus {
    border-color: gold;
}

/* Input groups for PIN and Player ID */
.input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-group input {
    width: 250px; 
}

/* Reusable show button style for both PIN & Player ID */
.show-btn {
    background: white;
    color: black;
    font-family: "Press Start 2P", monospace;
    font-size: 10px;
    border: 2px solid white;
    padding: 12px 15px;
    cursor: pointer;
    transition: 0.2s;
}

.show-btn:hover {
    background: #888;
    color: white;
    border-color: #888;
}

.back-btn {
    display: block;
    width: 100%;
    text-align: center;
    color: black;
    background: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 14px;
    font-family: "Press Start 2P", monospace; /* ADD THIS */
    margin-top: 40px;
    transition: 0.2s;
    border: 2px solid white;
    cursor: pointer;
}


.back-btn:hover {
    background: #000;
    color: white;
}