@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

html,
body {
    line-height: 1.5;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #040B1B;
    font-family: "Inter", sans-serif;
}

section p, 
section ul, 
section a {
    color: #BBC1C3;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-gap {
    gap: clamp(60px, 5vw, 110px);
} 

h2 {
    color: #8B93A6;
    font-weight: 500;
    font-size: clamp(26px, 5vw, 44px);
    margin-bottom: 20px;
}

h3 {
    color: #E9EDF1;
    font-weight: 500;
    font-size: clamp(20px, 4.5vw, 36px);
}

.welcome-bright-text {
    font-size: clamp(28px, 4.5vw, 60px);
    font-weight: 600;
    color: #E9EDF1;
}

.text {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
}

.privacy-text a {
    font-weight: 600;
}

.privacy-text {
    word-break: break-word;
}

.text-center {
    text-align: center;
}

.text-pink {
    color: #E530B1;
}

.text-blue {
    color: #05C2FE;
}

@media (max-width: 600px) {
    body {
        padding: 30px 16px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    body {
        padding: 40px;
    }
}

@media (min-width: 1025px) {
    body {
        padding: 78px 84px;
    }
}

header {
    display: flex;
    column-gap: 8vw;
}

header .logo-wrap {
    flex: 1;
    display: flex;
    align-self: flex-start;
}

.header-logo {
    flex: 1;
    object-fit: contain;
}

header .r-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 8px;
    flex: 0 0 50%;
}

header nav ul {
    display: flex;
    justify-content: space-between;
    column-gap: 16px;
    color: #8B93A6;
    font-weight: 500;
    line-height: 1;
    text-wrap: nowrap;
    font-size: clamp(14px, 3vw, 24px);
    list-style: none;
}

header h1 {
    font-size: clamp(32px, 10vw, 300px);
    line-height: 1;
    text-wrap: nowrap;
}


.our-games-wrapper {
    display: flex;
}

.our-games-wrapper .game-logo-wrap {
    flex: 1;
    display: flex;
    align-self: flex-start;
}

.our-games-wrapper .game-logo {
    flex: 1;
    object-fit: contain;
}

.our-games-wrapper .r-side {
    flex: 0 0 60%;
}

.our-games-wrapper ul {
    padding-left: 20px;
}

.our-games-wrapper h3 {
    text-wrap: nowrap;
}

@media (max-width: 600px) {
    .our-games-wrapper {
        flex-direction: column;
        row-gap: 10px;
    }
}

@media (min-width: 601px) {
    .our-games-wrapper {
        margin-top: 40px;
        display: flex;
        column-gap: 4vw;
    }
}