:root {
    --landing-title-color: white;
    --landing-description-color: white;
    --landing-register-background-color: #FAFAFA;
    --landing-text-input-border-color: #DCDCDC;
    --landing-register-button-background-color: #FCE896;
    --landing-register-button-border-color: #FFCD00;
    --landing-register-button-text-color: #F0BB00;
    --landing-register-or-color: #868686;
    --landing-register-or-dash-color: #F0F0F0;
    --landing-register-alternative-background-color: #96CBFC;
    --landing-register-alternative-border-color: #0085FF;
    --landing-register-alternative-text-color: #008BF0;

    --bots-working-background-color: #F3F5F9;
    --bots-working-icon-background-color: #E6E9EE;

    --features-category-inactive-color: #7E7E7E;
    --features-category-inactive-border-color: #E1E1E1;
    --features-category-content-background-color: #F3F3F3;
    --features-category-hover-border-color: #BABABA;
    --features-category-hover-color: #4E4E4E;

    --supported-versions-row-description-color: #AAAAAA;
    --supported-versions-row-state-green: #3BDF4B;
    --supported-versions-row-state-yellow: #D9CB4D;
    --supported-versions-row-state-red: #F52F29;
    --supported-versions-row-state-border-color: #E7E7E7;
    --supported-versions-border-color: #E8E8E8;

    --promises-text-color: #808080;

    --testimonials-background-color: #F3F5F9;
    --testimonials-reviews-background-color: #E5E5E5;
    --testimonials-reviews-avatar-border-color: #C9C9C9;
    --testimonials-reviews-username-color: #031B4F;
    --testimonials-reviews-sub-count-color: #848484;
    --testimonials-reviews-content-color: #173473;
    --testimonials-reviews-quote-color: #031B4F;
    --testimonials-reviews-page-background-color: #C4C4C4;
    --testimonials-reviews-page-active-background-color: #696969;

    --get-started-title-color: white;
    --get-started-purchase-button-background-color: #F3E8EF;
    --get-started-purchase-button-color: #E51266;

    --footer-background-color: #020B20;
    --footer-powered-by-color: white;
    --footer-description-color: #80858F;
    --footer-links-title-color: white;
    --footer-links-color: #80858F;
    --footer-note-color: #80858F;
}

.section {
    padding: 0 calc((100vw - 1300px) / 2);
}

.section .section-title {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-dark-text-color);
}

.section .section-description {
    color: var(--section-description-color);
    font-size: 14px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section.landing {
    background-image: url("../img/landing-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 100px;
    padding-bottom: 100px;
    gap: 420px;
}

.section.landing h1 {
    color: var(--landing-title-color);
    font-weight: 500;
    font-size: 64px;
    line-height: 70px;
    margin: 0 0 10px;
}

.section.landing .service-description {
    color: var(--landing-description-color);
    font-weight: 500;
    font-size: 22px;
}

.section.landing .register-form {
    background-color: var(--landing-register-background-color);
    padding: 30px;
    border-radius: 10px;
    width: 400px;
    float: right;
}

.section.landing .register-form .title {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    color: var(--primary-dark-text-color);
}

.section.landing .register-form .alternative-login,
.section.landing .register-form .credentials-input {
    width: 100%;
    font-size: 14px;
    border-radius: 8px;
    padding: 7px 12px;
    margin: 9px 0;
    font-family: "Titillium Web", sans-serif;
}

.section.landing .register-form .credentials-input {
    border: solid 1px var(--landing-text-input-border-color);
    font-weight: 400;
}

.section.landing .register-form .register-button {
    background-color: var(--landing-register-button-background-color);
    border: solid 1px var(--landing-register-button-border-color);
    color: var(--landing-register-button-text-color);
    font-weight: 700;
    transition: ease filter .2s;
}

.section.landing .register-form .register-button:hover {
    cursor: pointer;
    filter: brightness(95%);
}

.section.landing .register-form .or-login {
    color: var(--landing-register-or-color);
    font-weight: 500;
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
    position: relative;
}

.section.landing .register-form .or-login::before,
.section.landing .register-form .or-login::after {
    content: "";
    display: block;
    position: absolute;
    width: 140px;
    height: 1px;
    background-color: var(--landing-register-or-dash-color);
    top: 6px;
}

.section.landing .register-form .or-login::before {
    left: 0;
}

.section.landing .register-form .or-login::after {
    right: 0;
}

.section.landing .register-form .alternative-logins-wrapper {
    gap: 70px;
    padding: 0 100px;
    text-align: center;
}

.section.landing .register-form .alternative-login {
    background-color: var(--landing-register-alternative-background-color);
    color: var(--landing-register-alternative-text-color);
    border: solid 1px var(--landing-register-alternative-border-color);
    font-weight: 700;
    transition: ease filter .2s;
}

.section.landing .register-form .alternative-login:hover {
    cursor: pointer;
    filter: brightness(95%);
}

.section.landing .register-form .alternative-login .google-logo {
    display: inline-block;
    margin-right: 5px;
    transform: translateY(3px);
}

.section.bots-working {
    background-color: var(--bots-working-background-color);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 40px;
    padding-bottom: 50px;
}

.section.bots-working .section-icon {
    background-color: var(--bots-working-icon-background-color);
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.section.bots-working .section-title {
    text-align: left;
}

.section.supported-versions .section-text,
.section.bots-working .section-text {
    font-weight: 500;
    color: var(--primary-dark-text-color);
}

.section.bots-working .characters {
    float: right;
}

.section.popular-features {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section.popular-features .features {
    display: grid;
    grid-template-areas:
        "a b"
        "c c";
    width: max-content;
    margin: 80px auto 0;
}

.section.popular-features .features .categories {
    display: flex;
    flex-direction: column;
    margin-right: 100px;
    grid-area: a;
}

.section.popular-features .features .category-content {
    grid-area: b;
}

.section.popular-features .features .category {
    color: var(--features-category-inactive-color);
    font-weight: 700;
    padding: 14px 10px;
    border-left: solid 4px var(--features-category-inactive-border-color);
    max-width: 200px;
}

.section.popular-features .features .category:hover {
    cursor: pointer;
    color: var(--features-category-hover-color);
    border-color: var(--features-category-hover-border-color);
}

.section.popular-features .features .category.active {
    color: var(--primary-dark-text-color);
    border-left: solid 4px var(--primary-dark-text-color);
}

.section.popular-features .features .category-content {
    background-color: var(--features-category-content-background-color);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 25px;
    row-gap: 30px;
    column-gap: 40px;
    border-radius: 8px;
}

.section.popular-features .features .category-element .element-text {
    color: var(--primary-dark-text-color);
    font-weight: 700;
}

.section.popular-features .features .all-plugins {
    grid-area: c;
    text-align: right;
    color: var(--primary-dark-text-color);
    font-weight: 500;
    font-size: 14px;
}

.section.popular-features .features .all-plugins:visited {
    color: var(--primary-dark-text-color);
}

.section.popular-features .features .all-plugins .icon-external-link {
    transform: translateY(5px);
}

.section.servers {
    background-color: var(--bots-working-background-color);
    padding-top: 40px;
    padding-bottom: 30px;
}

.section.servers .servers-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.section.servers .servers-list .server {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section.supported-versions {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section.supported-versions .section-title {
    text-align: left;
}

.section.supported-versions .versions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 15px;
    column-gap: 100px;
}

.section.supported-versions .versions .column {
    position: relative;
}

.section.supported-versions .versions .column:nth-of-type(-n+2)::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 80px);
    background-color: var(--supported-versions-border-color);
    position: absolute;
    top: calc((100% - (100% - 80px)) / 2);
    right: -50px;
}

.section.supported-versions .versions .row {
    display: grid;
    grid-template-areas:
        "a b"
        "a c";
    column-gap: 12px;
    margin: 30px 0;
}

.section.supported-versions .versions .row .row-title {
    color: var(--primary-dark-text-color);
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    grid-area: b;
}

.section.supported-versions .versions .row .row-description {
    color: var(--supported-versions-row-description-color);
    font-size: 12px;
    grid-area: c;
}

.section.supported-versions .versions .row .support-state {
    grid-area: a;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border: solid 3px var(--supported-versions-row-state-border-color);
    margin-top: 2px;
}

.section.supported-versions .versions .row .support-state.green {
    background-color: var(--supported-versions-row-state-green);
}

.section.supported-versions .versions .row .support-state.yellow {
    background-color: var(--supported-versions-row-state-yellow);
}

.section.supported-versions .versions .row .support-state.red {
    background-color: var(--supported-versions-row-state-red);
}

.section.measure-success {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section.measure-success .promises {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: max-content;
    column-gap: 80px;
    row-gap: 25px;
    margin-top: 50px;
}

.section.measure-success .promises .promise-title {
    color: var(--primary-dark-text-color);
    font-weight: 500;
    font-size: 24px;
    margin: 0;
}

.section.measure-success .promises .promise-text {
    color: var(--promises-text-color);
    font-size: 14px;
}

.section.testimonials {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--testimonials-background-color);
}

.section.testimonials .reviews {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    column-gap: 25px;
}

.section.testimonials .reviews-list {
    background-color: green;
    width: 550px;
    background-color: var(--testimonials-reviews-background-color);
    border-radius: 8px;
    overflow: hidden;
    padding: 30px 35px;
}

.section.testimonials .reviews .review {
    display: grid;
    column-gap: 8px;
    margin-bottom: 25px;
}

.section.testimonials .reviews .review:last-of-type {
    margin-bottom: 0;
}

.section.testimonials .reviews .review:first-of-type {
    grid-template-areas:
        "a b"
        "a c"
        "a d";
}

.section.testimonials .reviews .review:last-of-type {
    grid-template-areas:
        "b a"
        "c a"
        "d a";
}

.section.testimonials .reviews .review-avatar {
    height: 49px;
    width: 49px;
    border: solid 4px var(--testimonials-reviews-avatar-border-color);
    grid-area: a;
}

.section.testimonials .reviews .review-username {
    color: var(--testimonials-reviews-username-color);
    font-weight: 700;
    font-size: 14px;
    grid-area: b;
}

.section.testimonials .reviews .review-sub-count, .section.testimonials .reviews .review-sub {
    color: var(--testimonials-reviews-sub-count-color);
    grid-area: c;
}

.section.testimonials .reviews .review-sub-count::after {
    content: " subscribers";
}

.section.testimonials .reviews .review-content {
    color: var(--testimonials-reviews-content-color);
    font-weight: 700;
    font-size: 14px;
    margin: 0;
    margin-left: 20px;
    position: relative;
    margin-top: 10px;
    grid-area: d;
}

.section.testimonials .reviews .review-content::before {
    content: open-quote;
    font-weight: 700;
    font-size: 36px;
    position: absolute;
    left: -20px;
    top: -10px;
    color: var(--testimonials-reviews-quote-color);
}

.section.testimonials .reviews .review-content::after {
    content: close-quote;
    font-weight: 700;
    font-size: 36px;
    line-height: 0;
    display: inline-block;
    transform: translate(2px, 25px);
    color: var(--testimonials-reviews-quote-color);
}

.section.testimonials .reviews .review:last-of-type .review-content,
.section.testimonials .reviews .review:last-of-type .review-sub-count,
.section.testimonials .reviews .review:last-of-type .review-sub,
.section.testimonials .reviews .review:last-of-type .review-username {
    text-align: right;
}

.section.testimonials .reviews .review:last-of-type .review-content {
    margin-left: 27px;
}

.section.testimonials .reviews .review:last-of-type .review-content::after {
    margin-right: -20px;
}

.section.testimonials .reviews .arrow {
    display: flex;
    align-items: center;
}

.section.testimonials .reviews .arrow:hover {
    animation: arrow-right 1s infinite;
    cursor: pointer;
}

.section.testimonials .reviews .arrow:first-of-type {
    margin-left: auto;
}

.section.testimonials .reviews .arrow:first-of-type:hover {
    animation: arrow-left 1s infinite;
}

.section.testimonials .pages {
    text-align: center;
    margin-top: 22px;
}

.section.testimonials .page {
    background-color: var(--testimonials-reviews-page-background-color);
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 3px;
}

.section.testimonials .page.active {
    background-color: var(--testimonials-reviews-page-active-background-color);
}

.section.testimonials .trustpilot-widget {
    margin-top: 45px;
}

.section.purchase-now {
    padding-top: 95px;
    padding-bottom: 95px;
    background-image: url("../img/landing-background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    text-align: center;
}

.section.purchase-now .get-started-title {
    color: var(--get-started-title-color);
    font-weight: 700;
    font-size: 36px;
    text-align: center;
    margin: 0 0 20px 0;
}

.section.purchase-now .purchase-button {
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    background-color: var(--get-started-purchase-button-background-color);
    color: var(--get-started-purchase-button-color);
    padding: 10px 70px;
    border-radius: 5px;
    transition: ease opacity .2s;
}

.section.purchase-now .purchase-button:hover {
    opacity: .9;
}

.section.purchase-now .purchase-button:visited {
    color: var(--get-started-purchase-button-color);
}

.section.footer {
    background-color: var(--footer-background-color);
    display: grid;
    grid-template-columns: max-content repeat(3, auto);
    column-gap: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.section.footer .branding .footer-logo {
    margin: 0 10px -20px 0;
}

.section.footer .branding .powered-by {
    font-weight: 500;
    font-size: 36px;
    color: var(--footer-powered-by-color);
    display: inline;
}

.section.footer .branding .footer-description {
    color: var(--footer-description-color);
    font-size: 12px;
    max-width: 300px;
    margin-left: 60px;
}

.section.footer .links .links-title {
    font-weight: 500;
    font-size: 20px;
    color: var(--footer-links-title-color);
    margin: 0 0 10px 0;
}

.section.footer .links a {
    display: block;
    color: var(--footer-links-color);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    padding: 3px 0;
}

.section.footer .links a:visited {
    color: var(--footer-links-color);
}

.section.footer .links a:hover {
    text-decoration: underline;
}

.section.footer .links .note {
    font-weight: 300;
    font-size: 14px;
    color: var(--footer-note-color);
}

.supported-versions .versions .issue {
    padding: 3px;
    border-radius: 3px;
    background: var(--primary-dark-text-color);
    color: var(--bots-working-background-color);
    font-size: x-small;
    position: relative;
    cursor: pointer;
}
.supported-versions .versions .issue .notice {
    position: absolute;
    display: none;
    width: 300px;
    padding: 12px;
    border-radius: 6px;
    margin-top: 10px;
}
.supported-versions .versions .issue:hover .notice {
    display: flex;
    background: var(--primary-dark-text-color);
    color: var(--bots-working-background-color);
}


.supported-versions .versions .row-title:has(.issue) {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

@keyframes arrow-right {
    0% {
        transform: translateX(0px);
    }

    90% {
        transform: translateX(7px);
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes arrow-left {
    0% {
        transform: translateX(0px);
    }

    90% {
        transform: translateX(-7px);
    }

    100% {
        transform: translateX(0px);
    }
}


@media screen and (max-width: 800px) {
    .section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section.landing {
        grid-template-columns: none;
    }

    .section.landing .register {
        display: none;
    }

    .servers-list {
        grid-template-columns: 1fr !important;
        grid-auto-rows: max-content;
        margin-top: 30px;
    }

    .section.popular-features {
        display: none;
    }

    .section.bots-working {
        grid-template-columns: none;
        grid-template-rows: max-content;
    }

    .section.supported-versions .versions {
        grid-template-columns: 1fr;
    }

    .section.supported-versions .versions .column:nth-of-type(-n+2)::after {
        display: none;
    }

    .section.measure-success .promises {
        grid-template-columns: 1fr;
    }

    .section.measure-success .promises .promise .promise-icon {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5px;
    }

    .section.popular-features .features .categories {
        flex-direction: row;
        border-left: none;
    }

    .section.popular-features .features .category {
        border-left: none;
        border-top: solid 4px var(--features-category-inactive-border-color);
        font-size: 14px;
    }

    .section.popular-features .features .category.active {
        border-left: none;
        border-top: solid 4px var(--primary-dark-text-color);
    }

    .section.popular-features .features .category-content {
        grid-template-columns: 1fr 1fr;
        width: auto;
    }

    .section.footer {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .section.footer .branding .powered-by {
        font-size: 28px;
    }

    .section.testimonials .reviews-list {
        width: unset;
        padding: 10px;
    }

    .section.testimonials .reviews-list .review {
        grid-template-areas: 
        "a b"
        "a c"
        "d d" !important;
    }

    .section.testimonials .reviews-list .review .review-sub-count {
        font-size: 12px;
    }

    .section.testimonials .reviews-list .review .review-content {
        margin: 10px 0 0 0;
    }

    .section.testimonials .reviews-list .review .review-content::before {
        display: none;
    }

    .section.testimonials .reviews-list .review .review-content::after {
        display: none;
    }

    .section.testimonials .reviews {
        grid-template-columns: max-content auto max-content;
    }
}