        body, html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: #232323;
        }
        .navbar {
            background-color: #333;
            overflow: hidden;
        }
        .navbar a {
            float: left;
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
            font-size: 17px;
        }
        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }
        @media only screen and (max-width: 600px) {
            .navbar a {
                float: none;
                display: block;
                text-align: left;
            }
            .todo-list, .changelogs {
                display: none;
            }
        }
        .gallery, .gallery2 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
            padding: 20px;
            margin: 20px;
        }
        .gallery img, .gallery2 img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border: 1px solid #ccc;
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
        .gallery img:hover {
        transform: scale(1.1);
        }
        .title, .copyButton {
            text-align: center;
            font-size: 14px;
            margin-top: 5px;
            color: #fff;
        }
        .copyButton {
            display: inline-block;
            background-color: #008CBA;
            color: white;
            border: none;
            padding: 5px 10px;
            margin-top: 5px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .copyButton:hover {
            background-color: #4CAF50;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .gallery, .gallery2 {
            animation: fadeIn 1s;
        }
        #confirmationOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 1.0);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .overlayContent {
            text-align: center;
            color: white;
        }
        .overlayContent p {
            margin-bottom: 20px;
        }
        #confirmButton {
            padding: 10px 25px;
            font-size: 18px;
            color: #ffffff;
            background-color: #670070;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        #confirmButton:hover {
            background-color: #880094;
        }
        .changelogs {
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background-color: #333;
            padding: 20px;
            overflow-y: auto;
            border-left: 1px solid #555;
        }
        .changelogs h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #fff;
        }
        .version {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 10px;
            color: #ccc;
        }
        .changelogs ul {
            margin-left: 20px;
            list-style-type: none;
            padding-left: 0;
        }
        .changelogs li {
            font-size: 16px;
            margin-bottom: 5px;
            color: #ccc;
        }
        .todo-list {
            position: absolute;
            top: 0;
            left: 0;
            width: 300px;
            height: 100%;
            background-color: #333;
            padding: 20px;
            overflow-y: auto;
            border-right: 1px solid #555;
        }
        .todo-list h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #fff;
        }
        .todo-list ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        .todo-list li {
            font-size: 16px;
            color: #ccc;
            margin-bottom: 10px;
        }
        #cheddlarLink {
            text-decoration: none;
            color: rgb(255, 0, 242);
            cursor: pointer;
        }
        #cheddlarLink:hover {
            text-decoration: underline;
        }
        #discordLink {
            text-decoration: none;
            color: rgb(225, 0, 242);
            cursor: pointer;
        }
        #discordLink:hover {
            text-decoration: underline;
        }
        .enlarged {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 999;
            width: 50%;
            height: auto;
            transition: all 0.5s ease-in-out;
            object-fit: cover;
        }

        .enlarged:hover {
            transform: translate(-50%, -50%) !important;
        }

        .gallery img:not(.enlarged):hover {
            transform: scale(1.1);
        }

        .gallery img.enlarged {
            transform: scale(1);
            transform-origin: center;
        }
        
        .changelog-item {
            margin-bottom: 20px;
        }

        .changelog-item:last-child {
            margin-bottom: 100px;
        }
        #secretBanner {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4CAF50;
            color: white;
            padding: 10px;
            border-radius: 5px;
            z-index: 100;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            transition: opacity 1s ease-out;
            opacity: 1;
        }

        .fadeOut {
            opacity: 0;
        }