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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #080b09;
    color: white;
    line-height: 1.6;
}

/* NAVBAR */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 11, 9, 0.85);
    backdrop-filter: blur(10px);
}

.navbar {
    max-width: 1100px;
    margin: auto;
    padding: 18px 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    color: #62d84e;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    color: #62d84e;
}


/* HERO */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 120px 25px 80px;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.90) 0%,
            rgba(0, 0, 0, 0.70) 45%,
            rgba(0, 0, 0, 0.30) 100%
        ),
        url("images/hero_background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    margin: auto;
}

.tag {
    color: #62d84e;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(45px, 8vw, 90px);
    line-height: 0.95;
    max-width: 850px;
    margin-bottom: 25px;
}

.description {
    max-width: 550px;
    color: #bbb;
    font-size: 17px;
}


/* BUTTONS */

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 25px;

    border-radius: 6px;

    text-decoration: none;
    font-weight: bold;

    transition: 0.25s;
}

.primary {
    background: #62d84e;
    color: #061006;
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(98, 216, 78, 0.25);
}

.secondary {
    border: 1px solid #444;
    color: white;
}

.secondary:hover {
    border-color: #62d84e;
    color: #62d84e;
}


/* SECTIONS */

.section {
    max-width: 1100px;
    margin: auto;
    padding: 110px 25px;
}

.section h2 {
    font-size: clamp(35px, 6vw, 60px);
    margin-bottom: 30px;
}


/* CARDS */

.server-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #101511;
    border: 1px solid #202720;
    border-radius: 12px;
    padding: 30px;

    transition: 0.25s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #62d84e;
}

.card span {
    font-size: 30px;
}

.card h3 {
    margin: 15px 0 8px;
}

.card p {
    color: #999;
}


/* COMMUNITY */

.community {
    text-align: center;
}

.community p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #aaa;
}


/* FOOTER */

footer {
    border-top: 1px solid #202720;
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 700px) {

    .nav-links {
        display: none;
    }

    .hero {
        text-align: center;
    }

    .description {
        margin: auto;
    }

    .buttons {
        justify-content: center;
    }

    .server-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 20px;
    }
}
/* GALLERY */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #202720;
    background: #101511;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 700px) {

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 200px;
    }

}

/* MOBILE MENU */

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.menu-btn::before,
.menu-btn::after {
    content: "";
    position: absolute;
    left: 10px;
    width: 20px;
    height: 2px;
    background: white;
}

.menu-btn::before {
    top: 15px;
    box-shadow: 0 7px 0 white;
}

.menu-btn::after {
    top: 29px;
}


/* MOBILE */

@media (max-width: 900px) {

    .navbar {
        position: relative;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;

        flex-direction: column;
        gap: 0;

        width: 190px;
        padding: 8px;

        background: #101511;
        border: 1px solid #202720;
        border-radius: 10px;

        box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 13px 15px;
        border-radius: 6px;
    }

    .nav-links a:hover {
        background: #182019;
    }

}
/* HOW TO JOIN */

.join-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.join-step {
    padding: 30px;
    background: #101511;
    border: 1px solid #202720;
    border-radius: 12px;
    transition: 0.25s;
}

.join-step:hover {
    transform: translateY(-5px);
    border-color: #62d84e;
}

.join-step span {
    color: #62d84e;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.join-step h3 {
    margin: 15px 0 8px;
    font-size: 22px;
}

.join-step p {
    color: #999;
}

.join-button {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 700px) {

    .join-grid {
        grid-template-columns: 1fr;
    }

}
/* REQUIREMENTS */

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.requirement {
    padding: 30px;
    background: #101511;
    border: 1px solid #202720;
    border-radius: 12px;
    transition: 0.25s;
}

.requirement:hover {
    transform: translateY(-5px);
    border-color: #62d84e;
}

.requirement span {
    font-size: 32px;
}

.requirement h3 {
    margin: 15px 0 8px;
    font-size: 21px;
}

.requirement p {
    color: #999;
    max-width: 500px;
}

@media (max-width: 700px) {

    .requirements-grid {
        grid-template-columns: 1fr;
    }

}
/* SERVER STATUS */

.status-card {
    position: relative;
}

.status-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #62d84e;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(98, 216, 78, 0.7);
}

.status-live {
    color: #62d84e;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.status-card h3 {
    font-size: 28px;
    margin: 0 0 8px;
}

.status-card > p {
    margin-bottom: 25px;
}

.status-info {
    display: flex;
    gap: 35px;
    padding-top: 20px;
    border-top: 1px solid #202720;
}

.status-info div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.status-info small {
    color: #666;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.status-info strong {
    color: #ddd;
    font-size: 14px;
}
/* LIVE SERVER STATUS */

.status-dot {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.status-dot.online {
    background: #62d84e;
    box-shadow: 0 0 12px rgba(98, 216, 78, 0.8);
    animation: statusPulse 1.8s infinite;
}

.status-dot.offline {
    background: #ff4d4d;
    box-shadow: 0 0 12px rgba(255, 77, 77, 0.7);
}

.status-card:has(.status-dot.offline) .status-live {
    color: #ff4d4d;
}

.status-card:has(.status-dot.online) .status-live {
    color: #62d84e;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(98, 216, 78, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(98, 216, 78, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(98, 216, 78, 0);
    }
}
/* =========================
   SERVER STATUS DISCORD BUTTON
========================= */

.status-discord-btn {
    display: block;

    width: 100%;

    margin-top: 25px;

    padding: 13px 18px;

    background: #5865f2;
    color: white;

    text-align: center;

    text-decoration: none;

    font-size: 13px;
    font-weight: bold;

    border-radius: 7px;

    transition: 0.25s;
}

.status-discord-btn:hover {
    transform: translateY(-2px);

    background: #4752c4;

    box-shadow:
        0 8px 20px rgba(88, 101, 242, 0.25);
}


/* STATUS MESSAGE */

#statusMessage {
    margin-bottom: 20px;
    color: #999;
}


/* OFFLINE STATUS */

.status-dot.offline {
    background: #ff4d4d;
    box-shadow: 0 0 12px rgba(255, 77, 77, 0.7);
}


/* ONLINE STATUS */

.status-dot.online {
    background: #62d84e;
    box-shadow: 0 0 12px rgba(98, 216, 78, 0.8);

    animation: statusPulse 1.8s infinite;
}


/* STATUS ANIMATION */

@keyframes statusPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(98, 216, 78, 0.7);
    }

    70% {
        box-shadow:
            0 0 0 8px rgba(98, 216, 78, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(98, 216, 78, 0);
    }

}
/* =========================
   COMMUNITY SECTION
========================= */

.community-section {
    text-align: center;
}

.community-description {
    max-width: 650px;
    margin: 0 auto;

    color: #999;

    font-size: 17px;
}


.community-grid {
    display: grid;

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

    gap: 20px;

    margin-top: 45px;

    text-align: left;
}


.community-card {
    padding: 30px;

    background: #101511;

    border: 1px solid #202720;

    border-radius: 12px;

    transition: 0.25s;
}


.community-card:hover {
    transform: translateY(-5px);

    border-color: #62d84e;

    box-shadow:
        0 10px 30px rgba(98, 216, 78, 0.08);
}


.community-card span {
    font-size: 32px;
}


.community-card h3 {
    margin: 15px 0 8px;

    font-size: 21px;
}


.community-card p {
    color: #999;
}


.community-button {
    margin-top: 40px;
}


/* MOBILE */

@media (max-width: 700px) {

    .community-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
   NEWS SECTION
========================= */

.news-grid {
    display: grid;

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

    gap: 20px;

    margin-top: 40px;
}


.news-card {
    background: #101511;

    border: 1px solid #202720;

    border-radius: 12px;

    padding: 30px;

    transition: 0.25s;

    position: relative;

    overflow: hidden;
}


.news-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #62d84e;

    transform: scaleX(0);

    transform-origin: left;

    transition: 0.3s;
}


.news-card:hover {
    transform: translateY(-5px);

    border-color: #62d84e;
}


.news-card:hover::before {
    transform: scaleX(1);
}


.news-icon {
    font-size: 35px;

    margin-bottom: 20px;
}


.news-content {
    display: flex;

    flex-direction: column;
}


.news-date {
    color: #62d84e;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.news-card h3 {
    font-size: 21px;

    margin-bottom: 10px;
}


.news-card p {
    color: #999;

    font-size: 15px;

    margin-bottom: 20px;
}


.news-link {
    color: #62d84e;

    text-decoration: none;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 1px;

    transition: 0.25s;
}


.news-link:hover {
    color: white;

    transform: translateX(4px);
}


/* =========================
   NEWS MOBILE
========================= */

@media (max-width: 900px) {

    .news-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
   HOW TO JOIN - UPGRADE
========================= */

.join-step {
    position: relative;
    overflow: hidden;
}

.join-step::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 3px;
    height: 100%;

    background: #62d84e;

    transform: scaleY(0);

    transform-origin: top;

    transition: 0.3s;
}

.join-step:hover::before {
    transform: scaleY(1);
}

.join-step span {
    display: inline-block;

    padding: 6px 10px;

    border: 1px solid #62d84e;

    border-radius: 5px;

    background: rgba(98, 216, 78, 0.06);
}


/* =========================
   JOIN BUTTON
========================= */

.join-button .btn {
    min-width: 190px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .join-step {
        padding: 25px;
    }

}
/* =========================
   HERO UPGRADE
========================= */

.hero-content {
    animation: heroFadeIn 1s ease forwards;
}

.hero .tag {
    animation: heroSlideUp 0.8s ease forwards;
}

.hero h1 {
    animation: heroSlideUp 0.9s ease 0.1s forwards;
    opacity: 0;
}

.hero .description {
    animation: heroSlideUp 0.9s ease 0.2s forwards;
    opacity: 0;
}

.hero .buttons {
    animation: heroSlideUp 0.9s ease 0.3s forwards;
    opacity: 0;
}


/* =========================
   HERO ANIMATIONS
========================= */

@keyframes heroFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes heroSlideUp {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* =========================
   HERO ATMOSPHERE
========================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(98, 216, 78, 0.08),
            transparent 35%
        );

    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}
/* =========================
   HERO CTA UPGRADE
========================= */

.hero .primary {
    box-shadow:
        0 5px 20px rgba(98, 216, 78, 0.12);
}

.hero .primary:hover {
    box-shadow:
        0 10px 35px rgba(98, 216, 78, 0.30);
}

.hero .secondary:hover {
    background: rgba(98, 216, 78, 0.05);
}
/* =========================
   SERVER STATUS UPGRADE
========================= */

.status-card {
    overflow: hidden;
    border-color: #263026;
}

.status-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #62d84e;

    opacity: 0.8;

    transition: background 0.3s ease;
}


/* STATUS HEADER */

.status-top {
    position: relative;
}

.status-live {
    transition: color 0.3s ease;
}


/* STATUS TEXT */

#serverStatus {
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}

#statusMessage {
    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


/* ONLINE */

.status-card:has(.status-dot.online)::before {
    background: #62d84e;
}


/* OFFLINE */

.status-card:has(.status-dot.offline)::before {
    background: #ff4d4d;
}


/* PLAYER COUNT */

#playerCount {
    transition:
        opacity 0.3s ease;
}


/* DISCORD BUTTON */

.status-discord-btn {
    position: relative;
    overflow: hidden;
}

.status-discord-btn::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255,255,255,0.12);

    transition: 0.4s;
}

.status-discord-btn:hover::after {
    left: 100%;
}
/* =========================
   PLAYER COUNT
========================= */

.status-info strong {
    font-size: 16px;
}

#playerCount {
    color: #62d84e;
}


/* =========================
   MOBILE STATUS
========================= */

@media (max-width: 700px) {

    .status-card {
        padding: 25px;
    }

    .status-info {
        justify-content: space-between;
    }

}
/* =========================
   GALLERY UPGRADE
========================= */

.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: "VIEW";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    padding: 8px 14px;

    border: 1px solid rgba(255,255,255,0.5);

    border-radius: 6px;

    background: rgba(0,0,0,0.65);

    color: white;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 2px;

    opacity: 0;

    transition: 0.3s;

    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    filter: brightness(0.85);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);

    filter: brightness(1);
}


/* =========================
   GALLERY MOBILE
========================= */

@media (max-width: 700px) {

    .gallery-item::after {
        display: none;
    }

}
/* =========================
   FOOTER UPGRADE
========================= */

footer {
    margin-top: 40px;
    padding: 60px 25px 25px;
}

.footer-content {
    max-width: 1100px;
    margin: auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 0.5fr;

    gap: 40px;

    padding-bottom: 40px;
}

.footer-logo {
    color: #62d84e;

    font-size: 20px;

    font-weight: 900;

    letter-spacing: 1px;
}

.footer-brand p {
    color: #777;

    margin-top: 8px;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links a,
.footer-social a {
    color: #999;

    text-decoration: none;

    font-size: 14px;

    transition: 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #62d84e;
}

.footer-social {
    text-align: right;
}

.footer-bottom {
    max-width: 1100px;

    margin: auto;

    padding-top: 25px;

    border-top: 1px solid #202720;

    text-align: center;
}

.footer-bottom p {
    color: #666;

    font-size: 12px;
}


/* =========================
   FOOTER MOBILE
========================= */

@media (max-width: 700px) {

    footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        text-align: center;
    }

}
/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-visible {
    opacity: 1;

    transform: translateY(0);
}
/* =========================
   MOBILE EXPERIENCE
========================= */

html {
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
}


/* Better tap experience */

a,
button {
    -webkit-tap-highlight-color: transparent;
}


/* Prevent accidental text selection on buttons */

.btn,
.menu-btn,
.news-link,
.footer-links a,
.footer-social a {
    user-select: none;
}


/* Better mobile buttons */

@media (max-width: 700px) {

    .btn {
        min-height: 48px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        padding: 14px 22px;
    }


    .buttons {
        width: 100%;
    }


    .buttons .btn {
        width: 100%;
    }


    .join-button .btn {
        width: 100%;
    }


    .section h2 {
        line-height: 1.05;
    }


    .description {
        font-size: 16px;
    }

}
/* =========================
   DISCORD COPY BUTTON
========================= */

.join-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.discord-copy {
    background: transparent;
    color: #ddd;
    border: 1px solid #444;
    cursor: pointer;
}

.discord-copy:hover {
    border-color: #5865f2;
    color: #5865f2;
}

.discord-copy.copied {
    border-color: #62d84e;
    color: #62d84e;
}

@media (max-width: 700px) {

    .join-button {
        flex-direction: column;
    }

    .join-button .btn {
        width: 100%;
    }

}
/* =========================
   NEWS
========================= */

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.news-card {
    position: relative;
}

.news-date {
    color: #62d84e;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.news-card h3 {
    font-size: 22px;
}

.news-card p {
    margin-bottom: 25px;
}

.news-status {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #283128;
    border-radius: 5px;
    color: #62d84e;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

@media (max-width: 700px) {

    .news-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
   FINAL MOBILE POLISH
========================= */

@media (max-width: 700px) {

    .hero {
        min-height: 100svh;
        padding-top: 110px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 65px);
    }

    .section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .section h2 {
        font-size: clamp(32px, 10vw, 48px);
    }

    .card,
    .join-step,
    .requirement,
    .community-card,
    .news-card {
        padding: 25px;
    }

    .gallery-item img {
        height: 210px;
    }

    .status-info {
        gap: 20px;
    }

}
/* =========================
   PERFORMANCE & SMOOTHNESS
========================= */

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

.gallery-item img {
    will-change: transform;
}

.card,
.join-step,
.requirement,
.community-card,
.news-card {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}
/* =========================
   VISUAL ANIMATIONS
========================= */

/* Section reveal */

.section {
    animation: sectionFade 0.7s ease both;
}

@keyframes sectionFade {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Card hover */

.card,
.join-step,
.requirement,
.community-card,
.news-card {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.card:hover,
.join-step:hover,
.requirement:hover,
.community-card:hover,
.news-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* Button hover */

.btn {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


/* Gallery */

.gallery-item {
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: #62d84e;
}


/* Mobile */

@media (max-width: 700px) {

    .card:hover,
    .join-step:hover,
    .requirement:hover,
    .community-card:hover,
    .news-card:hover,
    .gallery-item:hover {
        transform: none;
    }

}
/* =========================
   SERVER STATUS LOADING
========================= */

.status-dot:not(.online):not(.offline) {
    background: #777;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);

    animation: statusLoading 1.2s ease-in-out infinite;
}

@keyframes statusLoading {

    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

}