html, body{
    background: #191919;
    margin-left: auto;
    margin-right: auto;
    padding: 0%;

    color: white;
    font-family: sans-serif;
}

.main{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 4vw;
    margin-bottom: 4vw;
}

.row{
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.section{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.logo-image {
    max-width: 120px;
    width: 50%;
    padding: 20px;
}

.landing-logo {
    display: flex;
    align-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 5rem;
}

img.character-image {
    height: 38vw;
    width: auto;
}

.landing-second-half {
    max-width: 55rem;
    display: flex;
    justify-content: center;
}

.landing-first-half {
    display: flex;
    width: 20%;
    max-width: 400px;
    min-height: 22vw;
    padding: 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1f1f1f;
    border-radius: 25px;
}

button, input[type="submit"], input[type="reset"] {
    background: #272727;
    transition: all 0.5s ease-out;
    border: 1px solid #fff66600;
    border-radius: 8px;
    padding: 10px;
    padding-left: 38px;
    padding-right: 38px;
    color: inherit;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    margin-bottom: 10px;
    margin-top: 10px;
    height: 40px;
    width: 165px;
}

button:focus, input[type="submit"], input[type="reset"] {
    background: #191919;
    border: 1px solid #3e3e3e00;
    border-radius: 8px;
    padding: 10px;
    padding-left: 38px;
    padding-right: 38px;
    color: inherit;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

button:hover{
    border: 1px solid #3e3e3e;
}

.link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a0a0a0; /* default text color */
    cursor: pointer;
    transition: color 0.5s ease-out;
}

.link svg path {
    stroke: #a0a0a0; /* default icon color */
    transition: stroke 0.5s ease-out;
}

.link:hover {
    color: white; /* text becomes white */
}

.link:hover svg path {
    stroke: #91b7ff; /* icon becomes blue */
}

.link img {
    width: 34px;
    height: auto;
}

.menu-img{
    width: 600px;
    box-shadow: -10px -10px 10px #00000029;
    transition: all 0.5s ease-out;
}

.menu-img:hover {
    box-shadow: -25px -25px 20px #0000003d;
}

.general-container{
    display: flex;
    width: 20%;
    padding: 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #1f1f1f;
    border-radius: 25px;
    align-content: center;

}

.carousel-wrapper {
    position: relative;
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding: 10px 0;
}

.video-slide {
    flex: 0 0 calc(33.333% - 13.33px);
    box-sizing: border-box;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(25 25 25);
    color: white;
    border: 1px solid #3e3e3e00;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.nav-left {
    left: 10px;
}

.nav-right {
    right: 10px;
}

.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #191919, transparent);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #191919, transparent);
}

@media (max-width: 768px) {
    .video-slide {
    flex: 0 0 100%;
    }
}