/* General Body Styles */
/* Title Styles */
.title {
    font-size: 50px;
    font-weight: bold;
    color: #f75814;
}

/* Game Board */
.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    justify-content: center;
    margin-top: 30px;
}

.board-disabled {
    pointer-events: none;
    opacity: 0.7;
}

.cell {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2e2e3b;
    font-size: 32px;
    color: white;
    border: 2px solid #f75814;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cell:hover {
    background: #3a3a4d;
}

.cell.taken {
    cursor: not-allowed;
}

.cell.X {
    color: #e74c3c;
    font-weight: bold;
    font-size: 5em;
}

.cell.O {
    color: #0e34af;
    font-weight: bold;
    font-size: 5em;
}

/* Game Message */
.message {
    margin-top: 20px;
    font-size: 24px;
    color: #f75814;
}

/* Reset Button */
.reset-button {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: #f75814;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.reset-button:hover {
    background: #ff6933;
}