html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
#game-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f5e8c7; /* Sand-like color for the dig theme */
}

.affiliate-btn {
    background: #d4a017;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

#word-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Adjust for grid size */
    gap: 2px;
    padding: 10px;
    width: 90vw;
    max-width: 600px;
    aspect-ratio: 1 / 1;
}

.cell {
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

.cell.selected {
    background: #d4a017;
    color: white;
}

#fact-display {
    margin-top: 20px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
}

