
        /* Modern CSS Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --text-primary: #1f2937;
            --text-secondary: #4b5563;
            --background-light: #f3f4f6;
            --white: #ffffff;
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
            --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--background-light);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Header Styles */
        header {
            background: var(--white);
            padding: 1rem;
            box-shadow: var(--shadow-sm);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
        }

        .logo {
            height: 40px;
            width: auto;
        }

        nav ul {
            display: flex;
            gap: 1.5rem;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 0.5rem;
            transition: var(--transition);
        }

        /* Main Content */
        main {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            width: 100%;
        }

        h1 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: var(--white);
            background-color: var(--primary-color);
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: var(--shadow-sm);
        }

        /* Updated Card Container for compact 4-card layout */
        .card-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin: auto;
            width: 100%;
        }

        /* Updated Card Styles for smaller width */
        .card {
            background: var(--white);
            border-radius: 0.75rem;
            padding: 1rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            min-width: 0; /* Prevents overflow */
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .card-logo {
            width: 100%;
            height: auto;
            aspect-ratio: 1;
            object-fit: contain;
            margin-bottom: 0.75rem;
            padding: 0.75rem;
            background: var(--background-light);
            border-radius: 0.5rem;
        }

        .card-title {
            font-size: 1rem;
            font-weight: 600;
            margin: 0.75rem 0;
            color: var(--text-primary);
            text-align: center;
            word-wrap: break-word;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 1rem;
            background-color: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 500;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .download-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .download-btn i {
            font-size: 1rem;
        }
        .page-container {
            margin-left: 10px;  /* Adjust the left margin as needed */
            margin-right: 10px; /* Adjust the right margin as needed */
        }
         .page-paragraph {
            text-align: center; /* Center align the paragraph text */
        }
        .game-img {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .container {
    width: 80%; /* Adjust the width as needed */
    margin: 0 auto; /* Center the container horizontally */
    padding: 20px; /* Add padding inside the container */
    background-color: #f0f0f0; /* Set the background color */
    border-radius: 5px; /* Add rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */


}
 .game {
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin: 10px;
            padding: 20px;
            width: 300px;
            text-align: center;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }

        .game a {
            display: block;
            margin-top: 10px;
            text-decoration: none;
            background-color: #007bff;
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
        }

        .game a:hover {
            background-color: #0056b3;
        }
        .responsive {
            width: 98%;
            height: auto;
        }
        .website-name {
    background-color: #006d77; /* Background color */
    color: #edf6f9; /* Text color */
    text-align: center;
    padding: 10px 20px; /* Padding for spacing around the text */
    font-weight: bold; /* Bold text */
    font-family: 'Arial', sans-serif; /* Friendly, modern font */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Ensures the size is based on content */
    border-radius: 8px; /* Rounded corners */
}

.website-name h1 {
    font-size: 40px; /* Text size of h1 */
    line-height: 1.2; /* Ensures the background height adjusts with text */
    margin: 0; /* Removes margin for exact background-text alignment */
}

.website-name:hover {
    background-color: #83c5be; /* Hover effect */
    color: #005f73; /* Hover text color */
}

        footer {
            background: var(--text-primary);
            color: var(--white);
            text-align: center;
            padding: 1rem;
            margin-top: auto;
        }

        /* Updated Responsive Design */
        @media (max-width: 1024px) {
            .card-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
            }

            .card-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            main {
                padding: 1rem;
            }

            .card {
                padding: 1rem;
            }
        }
