body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #2d2a32;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    position: relative;
    cursor: url('custom-cursor.png'), auto; /* Custom cursor */
}

.container {
    text-align: center;
    z-index: 10;
    position: relative;
}

@keyframes rgb-nigger {
    0% { color: red; }
    33% { color: green; }
    66% { color: blue; }
    100% { color: red; }
}

.title {
    font-size: 3em;
    margin-bottom: 0.5em;
    animation: rgb-nigger 5s linear infinite;
}

.description {
    font-size: 1.5em;
    margin-bottom: 2em;
}

.image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.image-container img {
    position: absolute;
    max-width: 100px;
    max-height: 100px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img.hover-effect:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
    white-space: nowrap;
    display: none;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.tooltip.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.enlarged-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: auto;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.text-borx {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1em;
    z-index: 5;
}

.changelog-button, .about-button {
    position: absolute;
    background-color: #4a8bad;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1em;
    text-decoration: none;
    text-align: center;
    z-index: 5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.changelog-button:hover, .about-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sky {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px 6px white;
    animation: tail 3s ease-in-out infinite, shooting 3s ease-in-out infinite;
}

@keyframes tail {
    0% {
        width: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        opacity: 0;
    }
}

@keyframes shooting {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-1000px) translateY(1000px);
    }
}

.star:nth-child(1) {
    top: 20%;
    left: 80%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 40%;
    left: 60%;
    animation-delay: 1s;
}

.star:nth-child(3) {
    top: 60%;
    left: 40%;
    animation-delay: 2s;
}

.star:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

.star:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 4s;
}

.star:nth-child(6) {
    top: 30%;
    left: 50%;
    animation-delay: 5s;
}

.star:nth-child(7) {
    top: 50%;
    left: 30%;
    animation-delay: 6s;
}

.star:nth-child(8) {
    top: 70%;
    left: 10%;
    animation-delay: 7s;
}

.star:nth-child(9) {
    top: 90%;
    left: 90%;
    animation-delay: 8s;
}
