@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body{
    margin: 0;
    background-color: #000;
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
header{
    width: 100%;
    padding: 0 20px;
    margin: auto;
    height: 50px;
    position: relative;
    z-index: 100;
}
header a{
    color: #eee;
    margin-right: 40px;
}
.navigation {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 13px;
    list-style-type: none;
    margin: auto;
    position: relative;
    margin-top: 10px;
    box-sizing: border-box;
    overflow: auto;
    flex-direction: row;
    border-radius: 100px;
    width: 1500px;
    scrollbar-width: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
}


@media screen and (max-width: 768px) {
    .navigation {
        flex-direction: column;
        align-items: flex-start;
        display: none; 
        width: 100%;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.9);
    }

    .navigation.show {
        display: block; 
    }

    .hamburger {
        display: block; 
    }

    .navigation a {
        font-size: 18px;
        margin: 10px 0;
        color: white;
        padding: 10px 15px;
        text-align: left; 
    }

    .logo {
        position: absolute;
        top: 0;
        right: 0;
        margin: 10px;
    }
}

.navigation.show {
    display: block;
    z-index: 1000;
}

.hamburger {
    cursor: pointer;
    font-size: 30px;
    z-index: 1001;
}



@media screen and (max-width: 678px) {
    .carousel .list .item .buttons button {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }

    .thumbnail .item {
        width: 120px;
        height: 180px;
    }
}

.navigation a {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 15px 20px; 
    margin: 5px 0; 
    border-radius: 12px;
    overflow: hidden;
    z-index: 0;
}

.navigation a::after {
  content: "";
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.navigation a::before {
    content: "";
    background: linear-gradient(45deg, #FF1493, #FF00FF, #C71585, #FF00FF, #800080);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 30px;
    z-index: -1;
}
.navigation a:hover::before,
.navigation a:active::before {
    opacity: 0.6;
}

.navigation a:active {
    color: #ffffff;
    font-weight: bold;
}