        /* CSS Variables for Pastel Colors (Light Mode) */
        :root {
            --background-color: hsl(210, 60%, 98%); /* Light blue-grey */
            --text-color: hsl(210, 20%, 30%); /* Dark blue-grey */
            --primary-accent: hsl(150, 57%, 24%); /* Light mint green */
            --secondary-accent: hsl(30, 80%, 90%); /* Light peach */
            --tertiary-accent: hsl(270, 70%, 90%); /* Light lavender */
            --card-background: hsl(0, 0%, 100%); /* White */
            --button-text-color: hsl(210, 20%, 30%); /* Dark blue-grey */
            --box-shadow-color: rgba(0, 0, 0, 0.1);
        }

        /* Dark Mode Variables */
        body.dark-mode {
            --background-color: hsl(210, 20%, 15%); /* Dark blue-grey */
            --text-color: hsl(210, 60%, 90%); /* Light blue-grey */
            --primary-accent: hsl(150, 40%, 40%); /* Muted mint green */
            --secondary-accent: hsl(30, 50%, 50%); /* Muted peach */
            --tertiary-accent: hsl(270, 40%, 50%); /* Muted lavender */
            --card-background: hsl(210, 20%, 25%); /* Darker blue-grey */
            --button-text-color: hsl(210, 60%, 90%); /* Light blue-grey */
            --box-shadow-color: rgba(0, 0, 0, 0.4);
        }

        /* Base Styles */
        body {
            font-family: 'Urbanist', sans-serif;
            margin: 0;
            padding: 20px;
            /*background-color: var(--background-color);*/
            background-image: url("https://images.prismic.io/desplaines-rushstreetgaming/1c8e0aa3-6b2d-4f01-a49e-15b556dc0882_03253_March-Blackjack-Blowout-Email_Image_1200x650_v1_210223.jpg?auto=compress,format");
            background-size: cover;
            height: 100vh;
            color: var(--text-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            transition: background-color 0.3s ease, color 0.3s ease;
            box-sizing: border-box; /* Include padding in element's total width and height */
        }

        .game-container {
            background-color: var(--card-background);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px var(--box-shadow-color);
            text-align: center;
            max-width: 90%; /* Responsive width */
            width: 500px; /* Max width for larger screens */
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 20px; /* Space for the toggle */
        }

        h1 {
            font-family: 'Delius', cursive;
            color: var(--primary-accent);
            font-size: 3.5rem; /* Larger for aesthetics */
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            transition: color 0.3s ease;
        }

        p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 5px;
            font-weight: bold;
            letter-spacing: 1.3px;
        }

        /* Buttons */
        .game-buttons {
            display: flex;
            flex-wrap: wrap; /* Allow wrapping on small screens */
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        button {
            background-color: var(--secondary-accent);
            color: var(--button-text-color);
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            flex-grow: 1; /* Allow buttons to grow */
            max-width: 180px; /* Limit individual button width */
        }

        button:hover {
            background-color: var(--tertiary-accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        button:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        /* Theme Toggle Switch */
        .theme-switch-wrapper {
            display: flex;
            align-items: center;
            margin-top: 20px;
            gap: 10px;
            background-color: var(--background-color);
            border-radius: 20px;
            padding: 30px;
        }

        .theme-switch {
            display: inline-block;
            height: 34px;
            position: relative;
            width: 60px;
        }

        .theme-switch input {
            display: none;
        }

        .slider {
            background-color: var(--primary-accent);
            bottom: 0;
            cursor: pointer;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            background-color: var(--card-background);
            bottom: 4px;
            content: "";
            height: 26px;
            left: 4px;
            position: absolute;
            transition: .4s;
            width: 26px;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: var(--tertiary-accent);
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.8rem;
            }

            p {
                font-size: 1rem;
            }

            .game-container {
                padding: 20px;
                width: 95%; /* Adjust width for smaller screens */
            }

            button {
                padding: 10px 20px;
                font-size: 1rem;
                max-width: none; /* Allow buttons to take full width */
            }

            .game-buttons {
                flex-direction: column; /* Stack buttons vertically */
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px;
            }

            h1 {
                font-size: 2.2rem;
            }

            p {
                font-size: 0.9rem;
            }

            .game-container {
                padding: 15px;
            }

            button {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
