body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

.image {
    flex: 1;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transform: scale(1);
    transition: flex 0.5s ease-in-out, filter 0.5s ease-in-out;
    cursor: pointer;
    position: relative;
    filter: brightness(1);
}

.image:hover {
    flex: 2;
    filter: brightness(1);
}

.container:hover .image {
    transition: flex 0.5s ease-in-out, filter 0.5s ease-in-out;
}

.container:hover .image:not(:hover) {
    filter: grayscale(80%) brightness(0.7);
}

.image:nth-child(1) {
    background-image: url('../Images/Mockup_Turkey.webp');
}

.image:nth-child(2) {
    background-image: url('../Images/Steam_Mockup_V2.webp');
    transform: scaleX(-1);
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 19.5%;
    height: auto;
    z-index: 10;
}

.getit {
    position: absolute;
    top: calc(50% + 15%);
    left: 50%;
    transform: translate(-50%, 0);
    width: 15%;
    z-index: 100;
}

.getit a {
    position: absolute;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.getit img {
    width: 100%;
    height: auto;
    transition: transform 0.1s ease-in-out, opacity 0.5s ease-in-out;
    pointer-events: none;
}

.getit img:hover {
    transform: scale(1.1);
}

.getsteam,
.getquest {
    opacity: 0;
    pointer-events: none;
}

.getsteam.show,
.getquest.show {
    opacity: 1;
    pointer-events: auto;
}

.logo-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease-in-out;
}

.logo-container .logo {
    opacity: 1;
}

.logo-container .logo_01,
.logo-container .logo_02 {
    opacity: 0;
}

.small-image {
    position: absolute;
    width: 104px;
    height: auto;
    z-index: 20;
    filter: drop-shadow(8px 8px 10px rgb(37, 37, 37));
}

.small-image.left {
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: auto;
    z-index: 30;
    color: white;
    width: 50%;
}

.small-image.right {
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) scaleX(-1);
    width: 50%;
    z-index: 30;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image {
        width: 100%;
        height: 50vh;
    }

    .logo-container {
        width: 20%;
    }

    .getit {
        width: 30%;
    }

    .small-image.left,
    .small-image.right {
        display: none;
    }
}

@media (max-width: 768px),
(max-width: 1024px) and (orientation: portrait) {
    .container {
        flex-direction: column;
    }

    .image {
        width: 100%;
        height: 50vh;
    }

    .small-image.left,
    .small-image.right {
        display: none;
    }

    .logo-container {
        width: 50%;
    }

    .getit {
        width: 30%;
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 70%;
    }

    .getit {
        width: 40%;
    }
}

.social-links {
    position: fixed;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5vw;
    z-index: 1000;
    width: auto;
}

.social-links li {
    display: inline-block;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(40px, 4.5vw, 60px);
    height: clamp(40px, 4.5vw, 60px);
    border-radius: 50%;
    background: rgb(36, 36, 36);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    padding: 2%;
}

.social-links img {
    width: 60%;
    height: auto;
    filter: brightness(0) invert(1);
}

.small-image.left,
.small-image.right {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.container:hover .image:not(:hover) .small-image.left,
.container:hover .image:not(:hover) .small-image.right {
    opacity: 0;
}

.social-links a:hover {
    background: rgb(252, 143, 0);
    transform: translateY(-3px) scale(1.1);
}

@media (min-width: 1921px) {
    .social-links {
        gap: 2vw;
        bottom: 3vh;
    }

    .social-links a {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 1024px) {
    .social-links {
        gap: 2.5vw;
        bottom: 2.5vh;
    }

    .social-links a {
        width: clamp(35px, 5vw, 50px);
        height: clamp(35px, 5vw, 50px);
    }
}

@media (max-width: 768px) {
    .social-links {
        gap: 3vw;
        bottom: 2vh;
    }

    .social-links a {
        width: clamp(30px, 6vw, 45px);
        height: clamp(30px, 6vw, 45px);
    }

    .social-links img {
        width: 55%;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 4vw;
        bottom: 1.5vh;
    }

    .social-links a {
        width: clamp(28px, 7vw, 40px);
        height: clamp(28px, 7vw, 40px);
    }

    .social-links img {
        width: 50%;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .social-links {
        gap: 3vw;
        bottom: 1vh;
    }

    .social-links a {
        width: clamp(25px, 5vw, 35px);
        height: clamp(25px, 5vw, 35px);
    }
}