.nav-link {
    color: #ffffff;
}

.nav-pills .nav-link.active {
    background: linear-gradient(45deg, #7b2ff7, #9f44d3);
    color: white;
    border-radius: 8px;
}

.nav-link:hover {
    color: #7c3aed;
}

.nav-pills .nav-link {
    color: white;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #0d1117;
    color: #ffffff;
    font-family: 'Niccone', cursive;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
}

.bottom {
    margin-top: auto;
}

.fs-4 {
    font-family: 'Niccone', cursive;
    font-weight: 600;
    letter-spacing: 1px;
}

.content {
    align-items: center;
    text-align: center;
    letter-spacing: 5px;
    font-size: 3rem;
    font-family: 'Niccone', cursive;
    height: 100vh;
}

.highlight {
    color: #7b2ff7;
}

.card-link {
    color: #7b2ff7;
}

.card-link:hover {
    color: hsl(263, 93%, 68%);
}

.sticky-top {
    background-color: #0d1117;
    animation: slideDown 1s ease-in-out forwards;
}

.bottom {
    animation: slideUp 1.4s ease-in-out forwards;
}

body .card {
    width: 400px;
    height: 450px;
    overflow: hidden;
    animation: slideLeft 1.2s ease-in-out forwards;
    transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease;
    border-radius: 20px;
}

body .card:hover {
    height: auto;
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 32px rgba(123, 47, 247, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.card .info {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease 0.2s;
}

.card:hover .info {
    opacity: 1;
    visibility: visible;
}

.btn {
    background: linear-gradient(45deg, #7b2ff7, #9f44d3);
    border-radius: 20px;
}

.text {
    color: white;
    text-decoration: none;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 10px;
}

.badge-normal {
    color: #a898c8;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline;
    padding: 0 10px;
    border-radius: 6px;
}

.badge-skills {
    border-radius: 6px;
    font-size: 1rem;
}

.badge-highlight {
    color: #c4a8ff;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.35);
    display: inline;
    padding: 0 10px;
}

.badge-learning {
    border-radius: 15px;
    font-size: 1rem;
}

@keyframes slideDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}