body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
}

.screen {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hidden {
    display: none;
}

h1, h2 {
    text-align: center;
    color: #333;
}

.developer-info {
    text-align: center;
    margin: 20px 0;
}

.developer-info p {
    margin-bottom: 10px;
    color: #4a5568;
}

.twitch-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #9146FF;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.twitch-button:hover {
    background-color: #7B3FE4;
}

.twitch-icon {
    width: 20px;
    height: 20px;
}

.button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #45a049;
}

.secondary-btn {
    background-color: #9146FF;
}

.secondary-btn:hover {
    background-color: #7B3FE4;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #666;
    text-decoration: none;
}

.back-link:hover {
    color: #333;
}

.game-instructions {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.game-instructions h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.instruction-section {
    margin-bottom: 25px;
}

.instruction-section h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.instruction-section p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 10px;
}

.instruction-list {
    list-style-type: none;
    padding: 0;
}

.instruction-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #4a5568;
    line-height: 1.5;
}
