:root {
    --background: #1e0f30;
    --primary: #f3f3f7;
    --secondary: #d5d5d8;
    --info: #acacaf;
    --icon: #606069;
    --bullet: #45454b;
    --link: #07acff;
    --button: #08c;
    --separator: #4f4f53;
}

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

html, body {
    margin: 0;
    padding: 0;
    color: var(--secondary);
}

body {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 28px;
    background-color: var(--background);
}

.container {
    width: 100%;
    max-width: 776px;
    margin-left: auto;
    margin-right: auto;
}

img {
    border-radius: 16px;
    max-width: 100%;
    max-height: 700px;
    object-fit: contain;
}

a {
    cursor: pointer;
    color: var(--link);
    text-decoration: none;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

h1, h2 {
    color: var(--primary);
}

h1 {
    font-size: 48px;
    line-height: 56px;
}

h2 {
    font-size: 40px;
    line-height: 48px;
    margin-top: 20px;
    margin-bottom: 16px;
}

p {
    display: inline-block;
    margin: 8px 0;
}

p:first-child {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

p.sub {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    margin-top: 12px;
    margin-bottom: 0;
}

header {
    text-align: center;
    margin: 20px 0;
}

header .logo {
    line-height: 0;
}

.logo img {
    height: 75px;
}

.img-container {
    margin-top: 20px;
}

.btn-container {
    width: 100%;
}

.btn {
    display: block;
    background-color: var(--button);
    color: var(--primary);
    font-weight: 500;
    border-radius: 28px;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    transition: all .25s ease-in-out;
}

.btn:hover {
    background-color: #0af;
}

/* HEADLINE BOTTOM */

.headline-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
}

.sharelinks a,
.sharelinks button {
    color: var(--icon);
    transition: all .25s ease-in-out;
}

.sharelinks a:hover,
.sharelinks button:hover {
    color: var(--button);
}

.avatar {
    display: flex;
    align-items: center;
    gap: 7.5px;
}

.avatar img {
    border-radius: 100%;
    border: 1px solid hsla(0, 0%, 100%, .1);
    box-sizing: content-box;
    object-fit: cover;
}

.avatar span {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
}

.sharelinks {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

/* POSTMETA */

.postmeta {
    font-size: 15px;
    font-weight: 500;
    color: var(--info);
    line-height: 20px;
    display: flex;
    gap: 8px;
    width: fit-content;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    margin: 18px 0;
}

.postmeta_bullet {
    color: var(--bullet);
    font-size: 10px;
}

.postmeta_link {
    display: flex;
    gap: 4px;
    align-items: center;
}

.postmeta_category {
    display: inline-block;
    width: 20px;
    height: 20px;
}

/* FOOTER */

footer {
    margin-top: 24px;
}

footer .container {
    border-top: 1px solid var(--separator);
    padding-top: 16px;
    padding-bottom: 16px;
}

footer .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

footer .disclaimer {
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

footer .logo img {
    height: 45px;
}

ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 12.5px;
}

ul li a {
    display: block;
    font-size: 14px;
    color: var(--secondary);
    text-align: center;
    line-height: 1.25;
}

.register-page h1 {
    text-align: center;
}

#iframe-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
}

#iframe-container iframe {
    border: none;
    width: 100vw;
    height: 100vh;
    overflow: scroll;
}

#close-iframe {
    position: fixed;
    top: 8px;
    right: 16px;
    color: #000;
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    font-weight: 600;
}

.reviews_container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.reviews_group {
    margin: 24px 0;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    animation: scroll 20s linear infinite;
}

.reviews_item {
    flex: 0 0 auto;
    flex-flow: column;
    flex: none;
    justify-content: space-between;
    width: 18.5rem;
    padding: 1.85rem;
    display: flex;
    background: rgb(30,15,48);
    background: linear-gradient(0deg, rgba(30,15,48,1) 0%, rgba(71,38,111,1) 100%);
    border-radius: 1.5rem;
    color: var(--info);
    font-size: .925rem;
}

.reviews_item p {
    margin: 0;
    white-space: normal;
}

.spacer-24 {
    height: 1rem;
}

.text-18 {
    font-size: 1rem;
    line-height: 150%;
    font-weight: 600;
    color: var(--primary);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 750px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 640px) {
    header {
        margin: 16px 0 12px 0;
    }
    body {
        font-size: 16px;
        line-height: 24px;
    }
    h1 {
        font-size: 26px;
        line-height: 32px;
    }
    h2 {
        font-size: 24px;
        line-height: 32px;
        margin-top: 12px;
        margin-bottom: 4px;
    }
    .postmeta {
        font-size: 14px;
    }
    p.sub {
        font-size: 16px;
        line-height: 24px;
    }
    .headline-bottom,
    .postmeta {
        margin: 12px 0;
    }
    .btn {
        padding: 12px 24px;
    }
    .footer-top, ul {
        flex-direction: column;
    }
    ul {
       gap: 7.5px;
       margin-bottom: 7.5px; 
    }
}