:root {
    --clr-body-bg: #101953;

    --clr-hero-bg: rgb(26, 26, 31);
    --clr-card-bg: rgb(19, 21, 23);

    --clr-primary: rgb(0, 255, 145);
    --clr-primary-dark: rgb(0, 159, 191);

    --border-radius-xs: .25rem;
    --border-radius-sm: .5rem;
    --border-radius-md: 1rem;
    --border-radius-full: 9999rem;

    --ff-sans-serif: 'Clash Display', sans-serif;
}

::selection {
    background-color: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    background-color: var(--clr-body-bg);
    color: #8d99ea;
}

h1,
h2,
h3 {
    font-family: var(--ff-sans-serif);
    font-weight: 300;
    line-height: 1.2;
    margin-block: .5em;
    color: white;
}

h1 {
    line-height: 1.2;
    font-size: clamp(2rem, 8vw, 4rem);
    margin-block-end: 2rem;
    font-weight: 300;
}

h2 {
    font-size: clamp(1.5rem, 8vw, 2.825rem);
}

input,
button,
textarea,
select {
    display: block;
    width: 100%;
    padding: .5rem;
    font: inherit;
    border-radius: var(--border-radius-xs);
    border: none;
    background-color: black;
    color: white;
    font-size: 14px;
}

img {
    display: block;
    width: 100%;
}

p {
    margin-block: 2rem;
}

strong {
    font-weight: 500;
    color: var(--clr-primary);
}

.wrapper {
    max-width: 100vw;
    overflow: hidden;
}

.container {
    width: min(80rem, 100% - 3rem);
    margin-inline: auto;
    align-items: center;
}

.button {
    background-color: var(--clr-primary);
    color: black;
    border: none;
    padding: .5rem 1.2rem;
    /* border-radius: var(--border-radius-full); */
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
}

/* --- Brand --- */

.brand {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
}

.brand__name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 4px 0;
}

.brand__tagline {
    font-size: 10px;
    line-height: 1;
    letter-spacing: .825px;
    margin: 0;
    opacity: .5;
}

.brand:hover .brand__name {
    color: var(--clr-primary);
}

.section {
    margin-block: 14rem;
}

.section__head {
    grid-column: 1 / -1;
}

.section .container {
    /* display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 3rem; */
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 3rem;
    text-align: center;
}

.header p {
    font-family: var(--ff-sans-serif);
    text-transform: uppercase;
}

/* --- Section Hero --- */

.section-hero {
    margin-block: 12rem 25rem;
    position: relative;
    text-align: center;
}

.section-hero:before,
.section-hero:after {
    content: '';
    position: absolute;
    opacity: .4;
    width: 1500px;
    height: 1500px;
    pointer-events: none;
    z-index: -1;
}

.section-hero:before {
    top: -950px;
    left: 50%;
    margin-inline-start: -1250px;
    background: radial-gradient(50% 50% at 50% 50%, #FD4183 0%, rgba(253, 65, 131, 0.00) 100%);
}

.section-hero:after {
    top: -350px;
    left: 50%;
    margin-inline-start: -250px;
    background: radial-gradient(50% 50% at 50% 50%, #9941FD 0%, rgba(153, 65, 253, 0.00) 100%);
}

.section-hero h1 {
    margin: 0;
}

.section-hero p {
    margin: 0;
}

.section-hero .form-subscribe {
    max-width: 600px;
    margin: 0;
    margin-inline: auto;
}

.section-hero .container {
    display: flex;
    flex-direction: column;
    row-gap: 56px;
}

.section-hero__image {
    margin-block-start: 120px;
}

.section-benefits img {
    grid-column: 1 / 6;
}


.section-benefits .section__content {
    grid-column: 7 / -1;
}

.section-game .section__content {
    grid-column: span 7;
}

.benefits {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    list-style: none;
}

.card-benefits {
    padding: 3rem;
    background-color: rgba(0,0,0,.3);
    border-radius: 1rem;
    height: 100%;
}

.card-benefits h3 {
    margin: 0;
    color: var(--clr-primary);
}

.card-benefits p {
    margin: 0;
}

.form-subscribe {
    display: grid;
    grid-template-columns: 1fr min-content;
    grid-column: 4 / -4;
    width: 100%;
    background: black;
    padding: 8px;
    border-radius: 12px;
    position: relative;
}

.form-subscribe:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    bottom: -1px;
    height: 2px;
    background-image: linear-gradient(90deg, transparent, white, transparent);
    opacity: .3;
}

.form-subscribe .button,
.form-subscribe input {
    padding: 16px 32px;
    font-size: 18px;
}

.form-subscribe input:focus {
    outline: none;
}

.form-subscribe:has(input:focus) {
    outline: 2px solid var(--clr-primary);
}