body {
    background-color: #18191C;
    color: #E3E5E8;
    font-family: 'Montserrat', sans-serif;
}

.navbar {
    background-color: #2C2F33;
}

.navbar-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #E3E5E8 !important;
    font-weight: 700;
    font-size: 1.1rem;
}

.header-title {
    text-align: center;
    color: #7289DA;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.card {
    background-color: #2B2D31;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
}

.footer {
    background-color: #2C2F33;
    color: #99AAB5;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}