.carousel-item img {
    height: 400px;
    object-fit: cover;
}
.latest-updates {
    padding: 0;
    position: relative;
}
.changelog, .discord-section {
    
    padding: 0;
    position: relative;
}
.card-header {
    background-color: #252525;
    color: #e0e0e0;
}
.card-footer {
    background-color: #FF6060;
    color: #e0e0e0;
}
.footer {
    background-color: #2a2c2d;
    padding: 10px 0;
    color: #e0e0e0;
}
.footer a {
    color: #FF3333;
    text-decoration: underline;
}
.footer a:hover {
    color: #FF6666;
}
.animated-section {
    animation: fadeInUp 1s ease-in-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-custom {
    background-color: #FF6060;
    color: #e0e0e0;
    border: none;
}
.btn-custom:hover {
    background-color: #FF8080;
    color: #e0e0e0;
}
body {
    background-color: #434343; 
    background-image: url("/assets/imgs/background/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: black;
}

.navbar-nav .nav-link:hover {
    color: #00b4d8;
    transition: color 0.3s ease-in-out;
}