@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;
}

.board-container {
    width: 600px;
    background: #111;
    border: 4px solid white;
    padding: 30px;
    text-align: center;
}

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

#loading {
    margin: 20px 0;
    color: #888;
    font-size: 12px;
}

ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

li {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 2px dashed #333;
    font-size: 14px;
}

li:first-child {
    color: gold;
}

li:nth-child(2) {
    color: silver;
}

li:nth-child(3) {
    color: #cd7f32; /* Bronze */
}

/* Container to hold both buttons side-by-side */
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

/* Upload Button Styling */
.upload-btn {
    display: inline-block;
    color: black;
    background: #4CAF50; /* Clean retro green */
    font-family: "Press Start 2P", monospace;
    border: none;
    padding: 15px 20px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.upload-btn:hover {
    background: #388E3C; /* Darker green on hover */
    color: white;
}

.back-btn {
    display: inline-block;
    color: black;
    background: white;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 12px;
    transition: 0.2s;
}

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