/* Guess the Number Styles */
.guess-the-number .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.game-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-area {
    flex: 1;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-area h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

#guessInput {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.game-area button {
    padding: 10px 20px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.game-area button:hover {
    background-color: var(--primary-hover-color);
}

#gameMessage {
    margin-top: 10px;
    font-size: 1rem;
    color: var(--secondary-color);
}

.game-stats {
    margin-top: 10px;
    font-size: 1rem;
    color: #555;
}

/* Introduction Section Styles */
.introduction {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.introduction .intro-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.introduction .intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.introduction .intro-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.introduction .intro-list li {
    margin-bottom: 10px;
    color: #555;
}