@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --font-family-primary: "DM Sans", sans-serif;
    --pulse-animation-duration: 600ms;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: var(--font-family-primary);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

a {
    text-decoration: none;
}

#mocks {
    border-radius: 1rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero {
    padding-bottom: 8rem;
}

.logo-wrap {
    margin-bottom: 2rem;
    padding: 1rem 0;
    text-align: center;
    background-color: rgba(245, 245, 245, 1);
}

.activision {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.activision p {
    margin: 0;
    line-height: 100%;
    letter-spacing: 10%;
    text-transform: uppercase;
    opacity: .3;
}

#click-icon {
    width: 48px;
}

.hero-title {
    margin-bottom: 2.6rem;
    font-weight: 700;
    font-size: 50px;
    line-height: 49px;
    text-align: center;
}

.hero-title span {
    color: rgba(74, 58, 255, 1);
}

.email-wrap {
    position: relative;
    margin-top: .8rem;
    margin-bottom: 1.6rem;
    padding: 0 1.2rem;
}

.email-icon {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.email-input {
    width: 100%;
    padding: 20px 16px 20px 16%;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2%;
    border: 2px solid rgba(229, 229, 229, 1);
    border-radius: 10px;
}

.email-input::placeholder {
    opacity: .5;
}

.email-input:focus {
    outline: none;
    border-color: rgba(74, 58, 255, 1);
}

.email-input.valid {
    border-color: rgba(74, 58, 255, 1);
}

.cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-btn {
    display: block;
    padding: 18px 50px;
    border: unset;
    border-radius: 1000px;
    color: #fff;
    font-size: 26px;
    line-height: 38px;
    font-weight: 600;
    text-align: center;
}

main .cta-btn {
    width: 90%;
}

.cta-btn.disabled {
    background: rgba(219, 219, 219, 1);
    -webkit-tap-highlight-color: transparent;
}

.cta-btn:not(.disabled) {
    animation: pulse var(--pulse-animation-duration) ease-in-out infinite;
    will-change: transform;
    background: rgba(15, 203, 139, 1);
}

.cta-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.4rem;
    margin-bottom: 1.5rem;
    gap: 7px;
    font-size: 15px;
    color: rgba(106, 114, 130, 1);
}

.cta-desc svg {
    margin-right: 4px;
}

.cta-desc span {
    font-weight: 600;
    color: rgba(15, 203, 139, 1);
}

.separator {
    position: relative;
    top: 4px;
    margin: 0 -42px;
}

.steps {
    display: flex;
    gap: 4px;
    margin-top: 1rem;
    margin-bottom: 3rem;
    padding: 0 7px;
}

.step {
    flex: 1;
    text-align: center;
}

.step svg {
    margin-bottom: .3rem;
}

.step__count {
    margin: 0 0 .3rem 0;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 18%;
    font-weight: 400;
    text-transform: uppercase;
    opacity: .4;
}

.step__desc {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 100%;
}

.play {
    text-align: center;
    margin-bottom: 2rem;
}

.play h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 40%;
}

.play p {
    margin-bottom: 2rem;
    font-size: 18px;
    line-height: 24px;
    color: rgba(77, 77, 77, 1);
}

.cta-btn-wrap-small {
    margin-bottom: 2rem;
    padding: 0 4rem;
    text-align: center;
}

.cta-btn-wrap-small .cta-btn {
    font-size: 25px;
    white-space: nowrap;
}

.play-cards {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.play-card {
    flex: 1 1 45%;
    padding: 12px;
    border: 1px solid rgba(188, 209, 255, 1);
    border-radius: 12px;
}

.play-card h4 {
    margin-bottom: 0;
}

.card {
    margin-bottom: 2rem;
    border-radius: 16px;
}

.card__img-wrap {
    border-left: 1px solid rgba(229, 229, 229, 0);
    border-right: 1px solid rgba(229, 229, 229, 0);
}

.card__img-wrap img {
    width: 100%;
    height: 50vw;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.card__title {
    margin-bottom: 0;
    padding: .8rem 0;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: rgba(32, 32, 32, 1);
}

.card__content {
    padding: 0 20px 1rem 20px;
    border-left: 1px solid rgba(229, 229, 229, 1);
    border-bottom: 1px solid rgba(229, 229, 229, 1);
    border-right: 1px solid rgba(229, 229, 229, 1);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    line-height: 25px;
    color: rgb(122, 122, 122);
}

.card__desc {
    margin-top: 0;
    font-size: 15px;
    line-height: 22px;
    color: rgba(101, 101, 101, 1);
}

footer {
    padding: 20px;
    background-color: #000;
}

footer .img-wrap {
    text-align: center;
}

footer img {
    max-width: 200px;
}

footer .links {
    display: flex;
    margin-top: 20px;
    justify-content: space-around;
}

footer a {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -2%;
    color: rgba(168, 168, 168, 1);
}