* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #1a1a1a;
            color: #e0e0e0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            min-height: 100vh;
        }

        header {
            padding: 3rem 2rem;
            text-align: center;
            border-bottom: 1px solid #2a2a2a;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            color: #888;
            font-size: 0.95rem;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .game-card-normal {
            background-color: #242424;
            border: 1px solid #353635;
            padding: 1.5rem;
            text-decoration: none;
            color: #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-radius: 4px;
        }

        .game-card-broken {
            background-color: #242424;
            border: 1px solid #9e0606;
            padding: 1.5rem;
            text-decoration: none;
            color: #e0e0e0;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-radius: 4px;
        }

        .game-card-normal:hover {
            background-color: #2a2a2a;
            border-color: #444;
            transform: translateY(-2px);
        }

        .game-card:active {
            transform: translateY(0);
        }

        .game-card h3 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            letter-spacing: 0.3px;
        }

        .game-card p {
            font-size: 0.85rem;
            color: #999;
            font-weight: 300;
        }

        footer {
            text-align: center;
            padding: 2rem;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #2a2a2a;
            margin-top: 3rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            main {
                padding: 1rem;
            }

            .games-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 1rem;
            }
        }

        a {
            text-decoration: none;
            color: #bcbcbc;
        }

        a:hover {
            color: #e0e0e0;
        }

         .game-card-broken:hover {
            background-color: #2a2a2a;
            border-color: #9e0606;
            transform: translateY(-2px);
        }