<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Common styles for all games */

/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Container styles */
.game-container {
    position: relative;
    width: 800px;
    height: 500px;
    background-color: #000000;
    border: 2px solid #444444;
    overflow: hidden;
    outline: none !important;
    margin: 20px 0;
}

/* Screen overlays */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    margin: 8px 0;
    font-size: 1.1em;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 180px;
}

.emoji {
    font-size: 1.4em;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-text {
    font-weight: 500;
}

.btn:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.btn:hover .emoji {
    transform: scale(1.2);
}

/* Back button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    color: #bbb;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-btn:hover {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-decoration: none;
}

.back-arrow {
    font-size: 1.1em;
    transition: transform 0.2s ease;
}

.back-btn:hover .back-arrow {
    transform: translateX(-3px);
}

/* Text styles */
h1, h2, h3, h4, h5, h6 {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    margin: 0 0 20px 0;
}

h1 {
    font-size: 3em;
}

/* Utility classes */
.hidden {
    display: none !important;
}

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

/* Menu styles */
.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.game-card {
    background-color: #2a2a2a;
    border: 2px solid #444444;
    border-radius: 10px;
    padding: 24px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 240px;
    justify-content: space-between;
    gap: 16px;
}

.game-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-card .btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

.start-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    width: 100%;
}

.game-card h2 {
    margin: 10px 0;
}

.game-card p {
    color: #bbbbbb;
    margin: 10px 0;
    flex-grow: 1;
}

.game-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

/* Back button */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 15px;
    background-color: #444444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    z-index: 20;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #555555;
}

/* Game info */
.game-info {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 1.1em;
    color: white;
    pointer-events: none;
    z-index: 5;
}

/* Responsive design */
@media (max-width: 850px) {
    .game-container {
        width: 95%;
        height: 400px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 1em;
    }
}</pre></body></html>