/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body background and font color */
body {
    background: linear-gradient(135deg, #f6d365, #fda085);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
}

/* Header styles */
header {
    text-align: center;
    margin: 20px 0;
}

header h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px #00000066;
}

header p {
    font-size: 1.2em;
    color: #fff;
    margin-top: 10px;
}

/* Game container */
#game-container {
    display: grid;
    grid-template-columns: repeat(6, 80px);
    grid-gap: 15px;
    margin: 30px 0;
}



/* Leaderboard */
#leaderboard {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    width: 300px;
}

#leaderboard h2 {
    text-align: center;
    margin-bottom: 10px;
}

#leaderboard-list li {
    padding: 5px 0;
    font-weight: bold;
}
.secret-button {
    width: 80px;
    height: 80px;
    background: transparent; /* makes background invisible */
    border: none;            /* removes border */
    color: transparent;      /* hides the "?" text */
    cursor: pointer;
    position: relative;      /* needed if you want to animate them later */
}
.secret-button:hover {
    background: rgba(255, 255, 255, 0.1); /* barely visible */
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}