@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;700&display=swap');

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

        body {
            font-family: "Poppins", sans-serif;
            background: #ffffff;
            color: #0f0;
            image-rendering: pixelated;
            image-rendering: -moz-crisp-edges;
            image-rendering: crisp-edges;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Header */
        header {
            background: rgb(255, 255, 255);
            color: #000;
            padding: 20px;
            border-bottom: 8px solid #fff;
            position: relative;
            border: #000 solid 8px;
            border-bottom: none;
        }

            .header2 {
            background: rgb(255, 255, 255);
            color: #000;
            padding: 20px;
            border-bottom: 8px solid #fff;
            position: relative;
            border-bottom: none;
        }

        h1 {
            font-size: 48px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -2px;
            text-shadow: 4px 4px 0 #fff;
        }

        .tagline {
            font-size: 14px;
            margin-top: 8px;
            text-transform: uppercase;
        }

        /* Hero Section */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 60vh;
            border: 8px solid rgb(0, 0, 0);
        }

        .hero-left {
            background: #ff00ff;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 8px solid #000;
            position: relative;
        }

        .hero-left::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent 0px,
                transparent 2px,
                rgba(0, 0, 0, 0.1) 2px,
                rgba(0, 0, 0, 0.1) 4px
            );
            pointer-events: none;
        }

        .hero-right {
            background: #00ffff;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .hero-right::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent 0px,
                transparent 2px,
                rgba(0, 0, 0, 0.1) 2px,
                rgba(0, 0, 0, 0.1) 4px
            );
            pointer-events: none;
        }

        .hero h2 {
            font-size: 36px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            margin-bottom: 20px;

            position: relative;
            z-index: 1;
        }

        .hero p {
            font-size: 16px;
            color: #000;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Cards Grid */
        .cards-section {
            padding: 30px 28px;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .card {
            background: #fff;
            border: 8px solid #0f0;
            padding: 30px;
            cursor: pointer;
            transition: all 0.1s;
            text-decoration: none;
            display: block;
            position: relative;
        }

        .card:hover {
            transform: translate(-4px, -4px);
            box-shadow: 8px 8px 0 #0f0;
        }

        .card:active {
            transform: translate(0, 0);
            box-shadow: none;
        }

        .card-icon {
            font-size: 41px;
            margin-bottom: 20px;
            display: block;
        }

        .card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .card p {
            font-size: 14px;
            color: #000;
            line-height: 1.5;
        }

        .card.tools {
            border-color: #000000;
        }

        .card.tools:hover {
            box-shadow: 8px 8px 0 #000000;
        }

        .card.games {
            border-color: #000000;
        }

        .card.games:hover {
            box-shadow: 8px 8px 0 #000000;
        }

        .card.random {
            border-color: #000000;
        }

        .card.random:hover {
            box-shadow: 8px 8px 0 #000000;
        }

        /* Footer */
        footer {
            color: #ffffff;
            padding: 30px 20px;
            text-align: center;
            background-color: #000;
        }

        footer p {
            font-size: 14px;
            text-transform: uppercase;
        }

        /* Search Bar Styling */
        .search-container {
            margin: 24px 0 0 0;
            display: flex;
            justify-content: center;
        }
        .search-bar {
            padding: 10px 20px;
            font-size: 1.1rem;
            border: 2px solid #222;
            background: #ffffff;
            color: #111;
            font-family: 'Courier New', Courier, monospace;
            box-shadow: 2px 2px 0 #222;
            outline: none;
            transition: border 0.2s, box-shadow 0.2s;
        }
        .search-bar:focus {
            border: 2px solid #000000;
            box-shadow: 4px 4px 0 #000000;
            background: #fff0fa;
        }

        /* Filter Bar Styling */
        .filter-bar {
            display: flex;
            gap: 10px;
            margin-bottom: 8px;
        }
        .filter-btn {
            padding: 8px 18px;
            font-size: 1rem;
            font-family: 'Pixelify Sans', 'Courier New', monospace;
            background: #fff;
            color: #000;
            border: 2px solid #000000;
            border-radius: 0;
            box-shadow: 2px 2px 0 #0f0;
            text-transform: uppercase;
            cursor: pointer;
            transition: border 0.2s, box-shadow 0.2s, background 0.2s;
        }
        .filter-btn:hover, .filter-btn:focus {
            border: 2px solid #ff00ff;
            box-shadow: 4px 4px 0 #ff00ff;
            background: #fff0fa;
            outline: none;
        }

        /* Changelog Styling */
        .changelog-list {
            display: flex;
            flex-direction: column;
            gap: 32px;
            margin-top: 24px;
        }
        .changelog-entry {
            background: #fff;
            border: 8px solid #ff00ff;
            padding: 32px 28px;
            font-family: Poppins, sans-serif;
        }
        .changelog-entry h3 {
            font-size: 22px;
            color: #000000;
            text-transform: uppercase;
            margin-bottom: 12px;
            text-shadow: 2px 2px 0 #fff;
        }
        .changelog-entry ul {
            list-style: square inside;
            font-size: 16px;
            color: #000;
            margin-left: 0;
            padding-left: 0;
        }
        .changelog-entry li {
            margin-bottom: 8px;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .changelog-entry {
                padding: 18px 10px;
            }
            .changelog-list {
                gap: 18px;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
            }
            

            .hero-left {
                border-right: none;
                border-bottom: 8px solid #000;
            }

            h1 {
                font-size: 32px;
            }

            .hero h2 {
                font-size: 24px;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .filter-bar {
                flex-direction: column;
                gap: 8px;
                align-items: stretch;
            }
            .filter-btn {
                width: 100%;
                font-size: 1.1rem;
                padding: 12px 0;
            }
        }

        .ad-section {
            margin: 40px 0;
            text-align: center;
        }