<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Hangman Game Styles */
.hangman-game .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.game-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.game-display {
    text-align: center;
}

.word-display {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.hangman-canvas {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border: 1px solid #ccc;
    background-color: #fff;
    position: relative;
}

.game-message {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 10px;
}

.input-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#letterInput {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100px;
    text-transform: uppercase;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--primary-hover-color);
}

/* Reset Button Styling */
button[onclick="resetGame()"] {
    background-color: #ff4d4d; /* Red color */
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[onclick="resetGame()"]:hover {
    background-color: #cc0000; /* Darker red on hover */
}

.game-stats {
    text-align: center;
    font-size: 1rem;
    color: #555;
}

/* Introduction Section Styles */
.converter-intro {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.converter-intro .intro-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.converter-intro .intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.converter-intro .intro-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.converter-intro .intro-list li {
    margin-bottom: 10px;
    color: #555;
}</pre></body></html>