
        /* Reset and Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #1a1a1a; /* Dark gray for text instead of pure black for softer look */
            background-color: #ffffff; /* White background */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        html {
            scroll-behavior: smooth;
        }

        .container {
            width: 90%;
            max-width: 960px;
            margin: 0 auto;
            padding: 20px 0;
        }

        /* Header / Hero Section */
        .hero {
            background-color: #1a1a1a; /* Black background for hero */
            color: #ffffff; /* White text on hero */
            text-align: center;
        }

        .hero h1 {
            font-size: 2.8em;
            margin-bottom: 10px;
            color: #4161F0; /* Primary Blue for the main title */
        }

        .hero p {
            font-size: 1.2em;
            margin-bottom: 20px;
        }

        /* Navigation (Optional - kept very simple) */
        nav {
            /* background-color: #f4f4f4; /* Light gray for nav background */
            background-color: #333;
            padding: 10px 0;
            text-align: center;
            border-bottom: 1px solid #ddd;
        }

        nav ul {
            list-style: none;
            padding: 0;
        }

        nav ul li {
            display: inline;
            margin-right: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #f0f0f0;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #4161F0; /* Primary Blue for hover */
        }


        /* Section Styling */
        .section {
            padding: 40px 20px;
            text-align: center;
        }

        .section:nth-child(even) { /* Alternate background for sections if needed */
           /* background-color: #f9f9f9; /* Very light gray for alternating sections */
        }

        #my-game img {
            border-radius: 25px;
            margin-bottom: 30px;
            max-width: 500px;
            width: 90%;
        }

        .unstyled {
            color:#4161F0;
        }

        #contact p {
            text-align: center;
        }

        .section h2 {
            font-size: 2.2em;
            margin-bottom: 30px;
            /* color: #000000; Black for section titles */
            color: #4161F0
        }

        .section p {
            font-size: 1.1em;
            margin-bottom: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        /* Game Section Specifics */
        .game-showcase {
            margin-top: 20px;
        }

        .game-image-placeholder {
            width: 100%;
            max-width: 400px; /* Adjust as needed */
            height: 250px; /* Adjust as needed */
            background-color: #e0e0e0; /* Light gray placeholder */
            border: 1px solid #ccc;
            margin: 0 auto 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-style: italic;
        }

        .game-title {
            font-size: 1.8em;
            color: #4161F0; /* Primary Blue for game title */
            margin-bottom: 10px;
        }

        .game-description {
            font-size: 1em;
            color: #1a1a1a; /* Slightly lighter gray for description */
        }

        /* Call to Action Button */
        .cta-button {
            display: inline-block;
            background-color: #4161F0; /* Primary Blue */
            color: #ffffff; /* White text */
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-top: 10px;
        }

        .cta-button:hover {
            background-color: #2a4bcc; /* Darker shade of blue on hover */
            transform: translateY(-2px);
        }


        /* Footer */
        footer {
            background-color: #1a1a1a; /* Black background for footer */
            color: #f0f0f0; /* White text */
            text-align: center;
            padding: 10px 20px;
            margin-top: auto; /* Pushes footer to the bottom */
        }

        footer p {
            margin-bottom: 10px;
        }

        .social-links a {
            color: #ffffff; /* White links */
            margin: 0 10px;
            text-decoration: none;
            font-size: 1.2em;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #4161F0; /* Primary Blue for hover */
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2em;
            }
            .hero p {
                font-size: 1em;
            }
            .section h2 {
                font-size: 1.8em;
            }
            nav ul li {
                display: block;
                margin-bottom: 10px;
            }
        }