        /* Light mode styles */
        body {
            font-family: Arial, sans-serif;
            transition: color 0.5s ease, background-color 0.5s ease;
            background-color: #ffffff; /* Default background color */
            color: #333; /* Default text color */
        }

        /* Dark mode styles */
        body.dark-mode {
            color: #fff; /* Dark mode text color */
        }

        /* Sun and moon styles */
        .brightness-controls {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }

        .brightness-controls button {
            background: none;
            border: none;
            cursor: pointer;
        }

        /* Default wiki-page styles */
        .wiki-page {
            background-image: url(assets/images/wiki_background.png);
            background-repeat: no-repeat;
            background-position: bottom center;
            padding-top: 20px;
            padding-bottom: 50px;
            min-height: 500px;
        }

        /* Dark mode wiki-page styles */
        .wiki-page.dark-mode {
            background-image: url(assets/images/wiki_background6.png);
            background-repeat: no-repeat;
            background-position: bottom center;
            padding-top: 20px;
            padding-bottom: 50px;
            min-height: 500px;
        }
		