/* CSS Variables */
:root {
    --grey-400: #7d8598;
    --grey-500: #636b7f;
    --grey-900: #10131b;
    --blue-050: #e9f3ff;
    --blue-400: #347bff;
    --blue-500: #05f;
}

/* Global Styles */
.default-block {
    max-width: 928px;
    margin: 0 auto;
}

.main-body .default-block {
    padding: 100px 0;
}

.placeholder-1 {
    height: 100px;
    background: white;
}

.placeholder-2 {
    height: 200px;
    background: white;
}

.navbar-mobile, .game-pod.game-pod--hover .poster, .game-pod .video, .wrapper.all, .qr-window, .app-store-btn.goto-btn, .banner-mobile, .app-store-btn:hover .normal, .app-store-btn .hover {
    display: none;
}

.title-2, .title-3, .title-4, .title-5, .game-link b, .button {
    font-family: 'Poppins-Medium', serif;
}

.box {
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 15px 15px rgba(0,0,0,.1);
    background: white;
}

.transition {
    transition: .5s ease-in-out;
}

/* Text Format Styles */
.title-2, .title-3 {
    font-weight: 800;
    text-align: center;
}

.title-2 {
    text-transform: uppercase;
    line-height: 150%;
    color: blue;
}

.title-3 {
    font-size: 170%;
    padding: 10px 0;
}

.title-4 {
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 130%;
    margin-bottom: 10px;
    color: var(--blue-500);
}

.title-5 {
    font-size: 100%;
}

.rich-text {
    color: var(--grey-400);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    transition: background-color 0.5s ease;
    width: 100%;
    font-family: 'Poppins-Light', serif;
}

.header .navbar-laptop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.header .logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1;
    margin: 0;
}

.header .logo a {
    display: flex;
    align-items: center;
}

.header.header--open .navbar-mobile .navigation {
    transform: translateY(0);
    transition-delay: 0.5s;
}

.navbar-laptop {
    max-width: 1024px;
    margin: 0 auto;
}

.link_list {
    display: flex;
    gap: 40px;
}

.header .link_list {
    margin-right: 0;
}

/* Language Switch Button Styles */
.language-switch {
    margin-left: 20px;
}

.lang-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--blue-500);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--blue-500);
}

.lang-btn:hover {
    background: white;
    color: var(--blue-500);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(5, 15, 255, 0.2);
}

.navbar-mobile .lang-btn {
    margin: 10px 42px;
    text-align: center;
    border-radius: 15px;
    padding: 10px 20px;
}

.link {
    cursor: pointer;
}

.navbar-mobile .navigation {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 25px 0;
    transform: translateY(-150%);
    transition: transform .5s ease-in-out;
}

.navbar-mobile .link {
    padding: 10px 42px;
}

.header--scrolled {
    background: white;
}

/* Banner/Slogan Styles */
.banner {
    background: linear-gradient(to bottom, #f4f9ff, #fff);
}

.bg-image {
    width: 100%;
    min-height: 750px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.bg-image .image {
    width: 100%;
    position: absolute;
}

.bg-image .image img {
    width: 100%;
    height: auto;
}

.banner .title {
    max-width: 867px;
    width: 100%;
    text-align: center;
    color: var(--grey-900);
    margin: 0 auto;
    font-size: 5rem;
    font-weight: 900;
    font-family: '8bit';
    transform: scaleY(0.7);
    margin-bottom: 1.5vw;
}

.banner .title span {
    font: inherit;
}

.banner .title .cap-1 {
    font-size: 150%;
}

/* Games Styles */
.game-pod {
    width: calc(33.333333% - 33.333333px);
    overflow: hidden;
    transition: .3s ease-in-out;
}

.game-pod:hover {
    transform: scale(1.025);
}

.game-pod.game-pod--hover .video {
    display: block;
}

.games-filter-btn {
    text-align: center;
    padding: 10px;
    color: var(--blue-500);
    background: var(--blue-050);
    font-weight: 900;
    max-width: 300px;
    border-radius: 50px;
    margin: 0 auto;
}

.games-table {
    padding-top: 20px;
    padding-bottom: 35px;
}

.games-table .wrapper {
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.wrapper.featured {
    display: flex;
}

.wrapper.other {
    justify-content: center;
}

.games-table--open .wrapper.all {
    margin-top: 50px;
    display: flex;
}

.game-background {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.game-background img {
    width: 100%;
}

.game-background video {
    width: 100%;
    position: relative;
}

.game-info {
    text-align: left;
    padding: 10px;
    display: flex;
    align-items: center;
}

.game-info p {
    margin-left: 10px;
}

.games-table .icon {
    width: 50px;
    height: 50px;
    border-radius: 7px;
}

.game-link {
    margin-bottom: 10px;
    text-align: center;
}

.app-store-btn {
    width: 90%;
    padding: .5rem;
    display: inline-flex;
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.app-store-btn p {
    text-align: left;
    font-size: 10px;
    margin-left: 5px;
}

.app-store-btn b {
    font-size: 15px;
    line-height: 100%;
}

.app-store-btn:hover {
    color: white;
    background: linear-gradient(to right, rgb(50, 200, 255), var(--blue-400), var(--blue-400));
    padding: calc(.5rem + 1px);
    border: none;
}

.qr-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .2);
}

.qr-window--open {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-window-content {
    background: white;
    padding: 15px;
    position: relative;
}

.app-store-btn .normal, .app-store-btn:hover .hover {
    display: block;
}

/* About Us Styles */
.about-us {
    background: var(--blue-050);
}

.about-us .content {
    margin: 20px 0;
    position: relative;
}

.about-us .wrapper {
    overflow: hidden;
}

.about-us-bar {
    display: flex;
    flex-direction: row;
    position: relative;
    width: calc(928px * 5);
    transform: translateX(0);
    transition-property: transform;
}

.about-us-pod {
    display: flex;
    padding: 10px;
    width: 928px;
    min-height: 450px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 20px;
    background: white;
}

.about-us-pod .image {
    width: calc(47% - 5px);
    aspect-ratio: 1/1.1;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.about-us-pod .text {
    width: calc(53% - 5px);
    text-align: justify;
    word-break: break-all;
    padding: 0 40px;
    line-height: 150%;
    margin-bottom: 10%;
}

.about-us .arrows {
    position: absolute;
    bottom: 3.5rem;
    right: 0;
    width: calc(53%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.arrows .btn {
    fill: var(--blue-400);
    background: var(--blue-050);
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

/* Join Us Styles */
.join-us .content {
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
}

.join-us .wrapper {
    overflow: hidden;
}

.job-bar {
    display: flex;
    flex-direction: row;
    position: relative;
    width: calc(928px / 3 * 6);
    transform: translateX(0);
    transition-property: transform;
    gap: 32px;
}

.job-pod {
    width: 33%;
    box-sizing: border-box;
    padding: 25px;
    text-align:justify;
    background: var(--blue-050);
    position: relative;
    border-radius: 20px;
    font-size: 80%;
    display: flex;
    flex-direction: column;
}

.job-pod li {
    list-style: disc;
    line-height: 150%;
    font-size: 12px;
    margin: 5px 0;
    margin-left: 10px;
    color: var(--grey-500);
    word-break: break-all;
}

.job-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
}

.join-us .arrows {
    position: absolute;
    bottom: 50%;
    width: 120%;
    left: -10%;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.join-us .job-bar--mobile {
    width: calc(100% * 6);
}

/* Footer Styles */
.footer {
    background: var(--blue-050);
    min-height: 250px;
    display: flex;
    justify-content: space-between;
    padding: 50px 100px;
    font-family: "Poppins-Light", serif;
}

.footer .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    text-align: right;
}

.footer .logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .icons {
    display: flex;
    gap: 13px;
}

.footer .slogan {
    font-size: 130%;
    font-family: 'Cuprum-Bold';
    transform: scaleY(0.7);
}

.footer .slogan span {
    font-family: 'Cuprum-Bold';
    transform: scaleY(0.7);
}

.footer .copyright {
    color: var(--grey-400);
    font-size: 14px;
    margin-top: 20px;
}

.footer .contact-info {
    margin-top: 20px;
    margin-bottom: 15px;
}

.footer .contact-info h4 {
    color: var(--blue-500);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins-Medium', serif;
}

.footer .contact-info p {
    color: var(--grey-400);
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.5;
}

.footer .contact-info a {
    color: var(--blue-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .contact-info a:hover {
    color: var(--blue-400);
    text-decoration: underline;
}

.footer .copyright p {
    margin: 5px 0;
    line-height: 1.4;
} 