/* ==========================================================
   RAMPAGE GAMING COMMUNITY - SUPPORT PAGE
========================================================== */

.support-page {
    background: #07090b;
    color: #fff;
}

.support-container {
    width: min(1500px, calc(100% - 80px));
    margin: auto;
}


/* HERO */

.support-hero {
    min-height: 470px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        url("/assets/hero-wardogs.jpg")
        center 40% / cover no-repeat;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}

.support-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,5,7,.98),
            rgba(3,5,7,.83) 43%,
            rgba(3,5,7,.38) 75%,
            rgba(3,5,7,.67)
        );
}

.support-hero-content {
    position: relative;
    z-index: 2;
}

.support-label {
    color: #e31932;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}

.support-hero h1 {
    margin: 9px 0 0;

    font-size:
        clamp(72px, 8vw, 125px);

    font-weight: 1000;

    line-height: .80;

    letter-spacing: -5px;
}

.support-hero h1 span {
    color: #e31932;
}

.support-hero h2 {
    margin: 22px 0 0;

    font-size:
        clamp(22px, 2vw, 34px);

    font-weight: 1000;
}

.support-hero p {
    max-width: 640px;

    color: #a0a9ae;

    font-size: 16px;
    line-height: 1.7;
}

.support-buttons {
    margin-top: 25px;

    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


/* BUTTONS */

.support-button {
    min-height: 47px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: .9px;

    border:
        1px solid rgba(255,255,255,.14);

    transition:
        transform .2s ease,
        background .2s ease;
}

.support-button:hover {
    transform: translateY(-2px);
}

.support-button-red {
    background: #e31932;

    border-color: #ed2940;
}

.support-button-red:hover {
    background: #f0203a;
}

.support-button-dark {
    background: #090c0f;
}


/* STRIP */

.support-strip {
    background: #0d1013;

    border-bottom:
        1px solid rgba(255,255,255,.07);
}

.support-strip-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.support-strip-grid > div {
    min-height: 82px;

    padding: 18px 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-right:
        1px solid rgba(255,255,255,.07);
}

.support-strip-grid > div:first-child {
    border-left:
        1px solid rgba(255,255,255,.07);
}

.support-strip strong {
    font-size: 12px;
    font-weight: 900;
}

.support-strip span {
    margin-top: 4px;

    color: #68737a;

    font-size: 11px;
}


/* SECTIONS */

.support-section {
    padding: 85px 0;

    background: #080b0e;
}

.support-dark {
    background: #050709;
}

.support-heading {
    max-width: 780px;

    margin-bottom: 35px;
}

.support-heading h2 {
    margin: 7px 0;

    font-size:
        clamp(38px, 4vw, 60px);

    font-weight: 1000;

    line-height: .9;
}

.support-heading p {
    color: #79848b;

    line-height: 1.65;
}


/* SUPPORT GRID */

.support-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 13px;
}

.support-card {
    min-height: 470px;

    position: relative;

    padding: 27px 27px 80px;

    background:
        linear-gradient(
            145deg,
            #12171b,
            #090c0f
        );

    border:
        1px solid rgba(255,255,255,.08);

    transition:
        transform .2s ease,
        border-color .2s ease;
}

.support-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(227,25,50,.50);
}

.support-card::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

    background: #e31932;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .25s ease;
}

.support-card:hover::after {
    transform: scaleX(1);
}

.support-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.support-number {
    color: #5f696f;

    font-size: 10px;
    font-weight: 900;
}

.support-card-type {
    color: #e31932;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.support-icon {
    width: 50px;
    height: 50px;

    margin-top: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        rgba(227,25,50,.12);

    border:
        1px solid rgba(227,25,50,.32);

    font-size: 22px;
    font-weight: 1000;
}

.support-card h3 {
    margin: 19px 0 8px;

    font-size: 20px;
    font-weight: 1000;
}

.support-card > p {
    min-height: 65px;

    margin: 0;

    color: #79848b;

    font-size: 13px;
    line-height: 1.65;
}


/* BEFORE BOX */

.support-before {
    margin-top: 21px;

    padding-top: 17px;

    border-top:
        1px solid rgba(255,255,255,.07);
}

.support-before > span {
    color: #5f6a71;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.support-before ul {
    margin: 12px 0 0;

    padding-left: 17px;

    color: #8d979d;

    font-size: 11px;
    line-height: 1.8;
}

.support-before li::marker {
    color: #e31932;
}


/* HIGH PING BOX */

.support-alert {
    margin-top: 21px;

    padding: 17px;

    display: flex;
    flex-direction: column;

    background:
        rgba(227,25,50,.08);

    border:
        1px solid rgba(227,25,50,.22);
}

.support-alert span {
    color: #e31932;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.support-alert strong {
    margin-top: 6px;

    font-size: 12px;
}


/* CARD BUTTON */

.support-card-button {
    position: absolute;

    left: 27px;
    right: 27px;
    bottom: 25px;

    min-height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid rgba(255,255,255,.10);

    text-decoration: none;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .8px;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.support-card-button:hover {
    background: #e31932;

    border-color: #e31932;
}


/* STEPS */

.support-steps {
    border-top:
        1px solid rgba(255,255,255,.08);
}

.support-steps > div {
    min-height: 130px;

    display: grid;

    grid-template-columns:
        75px 1fr;

    align-items: center;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}

.support-steps > div > strong {
    color: #e31932;

    font-size: 11px;
}

.support-steps section {
    display: grid;

    grid-template-columns:
        100px 310px 1fr;

    align-items: center;

    gap: 25px;
}

.support-steps section > span {
    color: #5f696f;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.3px;
}

.support-steps h3 {
    margin: 0;

    font-size: 18px;
    font-weight: 1000;
}

.support-steps p {
    max-width: 600px;

    margin: 0;

    color: #778289;

    line-height: 1.6;
}


/* PING */

.support-ping {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(227,25,50,.18),
            transparent 31%
        ),
        #0b0e11;

    border-top:
        1px solid rgba(255,255,255,.07);

    border-bottom:
        1px solid rgba(255,255,255,.07);
}

.support-ping-grid {
    display: grid;

    grid-template-columns:
        1.25fr .55fr;

    gap: 16px;
}

.support-ping-grid > div {
    padding: 40px;

    background:
        linear-gradient(
            145deg,
            #12171b,
            #090c0f
        );

    border:
        1px solid rgba(255,255,255,.08);
}

.support-ping h2 {
    margin: 7px 0;

    font-size:
        clamp(45px, 5vw, 75px);

    font-weight: 1000;

    line-height: .86;
}

.support-ping h2 strong {
    color: #e31932;
}

.support-ping-grid > div > p {
    max-width: 680px;

    color: #7e898f;

    line-height: 1.7;
}

.support-ping-checks {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 9px;
}

.support-ping-checks > div {
    min-height: 55px;

    padding: 12px;

    display: flex;
    align-items: center;

    color: #9ca5aa;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.07);

    font-size: 11px;
}

.support-ping-checks b {
    margin-right: 11px;

    color: #e31932;

    font-size: 9px;
}


/* PING SIDE */

.support-ping aside {
    min-height: 400px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(227,25,50,.18),
            #080b0e
        );

    border:
        1px solid rgba(227,25,50,.22);
}

.support-ping aside > span {
    color: #747e84;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.support-ping aside > strong {
    margin-top: 10px;

    color: #e31932;

    font-size:
        clamp(80px, 8vw, 125px);

    font-weight: 1000;

    line-height: .8;
}

.support-ping aside h3 {
    margin: 13px 0;

    font-size: 18px;
    font-weight: 1000;
}

.support-ping aside p {
    color: #6f7980;

    font-size: 9px;
}


/* CONTACT */

.support-contact {
    padding: 70px 0;

    background: #07090b;
}

.support-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.support-contact h2 {
    margin: 7px 0;

    font-size:
        clamp(38px, 5vw, 68px);

    font-weight: 1000;

    line-height: .88;
}

.support-contact h2 strong {
    color: #e31932;
}

.support-contact p {
    max-width: 600px;

    color: #7b858c;

    line-height: 1.6;
}


/* FOOTER */

.support-footer {
    padding: 50px 0 20px;

    background: #030506;
}

.support-footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;
}

.support-footer-logo {
    font-size: 19px;
    font-weight: 1000;
}

.support-footer-logo span {
    color: #e31932;
}

.support-footer p {
    color: #5f696f;

    font-size: 11px;
}

.support-footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 23px;
}

.support-footer-links a {
    color: #7e888e;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
}

.support-footer-links a:hover {
    color: #fff;
}

.support-footer-bottom {
    margin-top: 30px;

    padding-top: 17px;

    color: #485158;

    border-top:
        1px solid rgba(255,255,255,.06);

    font-size: 9px;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .support-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .support-ping-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 800px) {

    .support-container {
        width:
            calc(100% - 36px);
    }

    .support-strip-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .support-steps section {
        grid-template-columns: 1fr;

        gap: 6px;

        padding: 22px 0;
    }

}


@media (max-width: 600px) {

    .support-section {
        padding: 60px 0;
    }

    .support-grid,
    .support-strip-grid,
    .support-ping-checks {
        grid-template-columns: 1fr;
    }

    .support-card {
        min-height: 490px;
    }

    .support-steps > div {
        grid-template-columns:
            45px 1fr;
    }

    .support-ping-grid > div {
        padding: 26px;
    }

    .support-contact-inner,
    .support-footer-grid {
        align-items: flex-start;

        flex-direction: column;
    }

    .support-button {
        width: 100%;
    }

}

