/* At the top of your style.css */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&family=Press+Start+2P&display=swap');
:root {
    /* Fonts */
    --font-pixel: 'Press Start 2P', cursive;
    --font-body: 'Nunito', sans-serif;

    /* Colors */
    --color-blue-dark: #2D68A8;
    --color-blue-light: #3E8AEF;
    --color-yellow-accent: #F8D030;
    --color-text-dark: #333;
    --color-text-light: #F8F8F8;
    --color-bg-light: #F8F8F8;
    --color-bg-dark: #2d3748;
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

h1 {
    color: #fff;
}

h1,h2,h3, button {
    font-family: var(--font-pixel);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dialogue-box {
    background-color: white;
    border: 4px solid var(--color-blue-dark);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#app {
    width: 100%;
    text-align: center;
}

.app-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #2d3748;
    border-radius: 8px;
    flex-direction: column;
    gap: 1rem;
}

h1 {
    margin: 0;
    font-size: 1.5rem;
}

/* wallet connect styles */

button {
    background-color: #4c51bf;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;

}

button:hover {
    background-color: #434190;
}

.wallet-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #a0aec0;
}

.wallet-info p.address{
    font-family: monospace;
    font-size: 1rem;
    font-weight: bold;
    color: #68d391;
}

.placeholder-text {
    font-size: 1.rem;
    color: #718096;
}

/* ... game board ...*/

#game-board-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
    width: 440px;
}

#game-info {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #2d3748;
    border-radius: 8px;
    min-height: 60px;
}

.score-display {
    font-family: var(--font-pixel, 'Press Start 2P', cursive);
    font-size: 1.5rem;
    color: var(--color-text-light, #F8F8F8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#score {
    color: var(--color-yellow-accent);
    font-weight: bold;
    padding-left: 10px;
}

.tile {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.tile.hidden {
    background-color: #4a5568;
    color: #e2e8f0;
    border: 2px solid #718096;
}

.tile.hidden:hover {
    transform: scale(1.05);
    background-color: #718096;
}
