/* =========================================================
   MODDINGXZ
   MAIN STYLESHEET
========================================================= */

:root {

    --bg: #050509;
    --bg-2: #090912;

    --surface: rgba(18,18,30,.72);
    --surface-strong: #11111c;

    --border: rgba(255,255,255,.08);

    --purple: #8b5cf6;
    --purple-light: #a78bfa;

    --blue: #3b82f6;
    --cyan: #22d3ee;

    --pink: #ec4899;

    --green: #22c55e;

    --text: #ffffff;
    --muted: #9292a8;

    --radius: 22px;

    --shadow:
        0 25px 80px rgba(0,0,0,.45);
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}


body {

    margin: 0;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(139,92,246,.12),
            transparent 30rem
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(34,211,238,.07),
            transparent 30rem
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        system-ui,
        sans-serif;

    overflow-x: hidden;

    padding-bottom: 0;
}


a {
    text-decoration: none;
    color: inherit;
}


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


/* =========================================================
   BACKGROUND
========================================================= */

.background-effects {

    position: fixed;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: -2;
}


.background-effects::after {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .15;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}


.orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .35;

    animation:
        floatOrb 12s ease-in-out infinite alternate;
}


.orb-purple {

    width: 450px;
    height: 450px;

    background: var(--purple);

    top: -250px;
    left: -200px;
}


.orb-blue {

    width: 400px;
    height: 400px;

    background: var(--blue);

    right: -200px;
    top: 25%;
}


.orb-pink {

    width: 350px;
    height: 350px;

    background: var(--pink);

    bottom: -200px;
    left: 40%;

}


@keyframes floatOrb {

    from {
        transform: translate(0,0) scale(.9);
    }

    to {
        transform: translate(50px,30px) scale(1.1);
    }
}


/* =========================================================
   LOADER
========================================================= */

#loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: grid;

    place-items: center;

    background: var(--bg);

    transition:
        opacity .5s,
        visibility .5s;
}


#loader.hide {

    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


.loader-content {
    text-align: center;
}


.loader-logo {

    font-family: Orbitron;

    font-weight: 900;

    font-size: 2rem;

    letter-spacing: 2px;
}


.loader-logo span {
    color: var(--purple);
}


.loader-bar {

    width: 180px;

    height: 3px;

    margin: 18px auto 10px;

    border-radius: 99px;

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

    overflow: hidden;
}


.loader-bar span {

    display: block;

    height: 100%;

    width: 0;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--cyan)
        );

    animation:
        loading 1.5s ease forwards;
}


.loader-content small {

    color: var(--muted);

    font-size: .55rem;

    letter-spacing: .15em;
}


@keyframes loading {

    to {
        width: 100%;
    }
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    top: 12px;

    padding: 8px 0;

    z-index: 1000;

    background:
        rgba(5,5,9,.72);

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

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);
}


.navbar-brand {

    display: flex;

    align-items: center;

    gap: 10px;
}


.brand-logo {

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    font-family: Orbitron;

    font-weight: 900;

    font-size: .7rem;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    box-shadow:
        0 0 35px
        rgba(139,92,246,.3);
}


.brand-text strong {

    display: block;

    font-family: Orbitron;

    font-size: .9rem;

    letter-spacing: .5px;
}


.brand-text strong span {
    color: var(--purple-light);
}


.brand-text small {

    display: block;

    color: var(--muted);

    font-size: .47rem;

    letter-spacing: .08em;
}


.nav-link {

    color: #aaaabb !important;

    font-size: .7rem;

    font-weight: 700;

    margin: 0 5px;

    transition: .2s;
}


.nav-link:hover,
.nav-link.active {

    color: white !important;
}


.nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 9px 13px;

    border-radius: 12px;

    font-size: .65rem;

    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );
}


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

.hero-section {

    padding-top: 115px;

    padding-bottom: 35px;
}


.hero-card {

    position: relative;

    min-height: 580px;

    overflow: hidden;

    border-radius: 35px;

    padding: 70px;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,.12),
            rgba(255,255,255,.025),
            rgba(34,211,238,.05)
        );

    border:
        1px solid
        var(--border);

    box-shadow:
        var(--shadow);

    backdrop-filter:
        blur(20px);
}


.hero-content {

    position: relative;

    z-index: 3;

    max-width: 760px;
}


.status-pill {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    border-radius: 99px;

    color: #86efac;

    background:
        rgba(34,197,94,.07);

    border:
        1px solid
        rgba(34,197,94,.18);

    font-size: .57rem;

    font-weight: 900;

    letter-spacing: .1em;
}


.status-pill span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px
        var(--green);

    animation:
        blink 1.5s infinite;
}


@keyframes blink {

    50% {
        opacity: .3;
        transform: scale(.7);
    }
}


.hero-card h1 {

    margin: 24px 0 18px;

    font-family: Orbitron;

    font-size:
        clamp(
            3rem,
            8vw,
            6.5rem
        );

    line-height: .9;

    letter-spacing: -5px;

    font-weight: 900;
}


.hero-card h1 span {

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--purple-light),
            var(--pink)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

    background-size: 200%;

    animation:
        gradientMove 5s linear infinite;
}


.hero-card h1 strong {

    color: var(--purple-light);
}


@keyframes gradientMove {

    to {
        background-position: 200%;
    }
}


.hero-description {

    max-width: 650px;

    color: var(--muted);

    font-size: .88rem;

    line-height: 1.8;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 25px;
}


.btn-xz-primary,
.btn-xz-secondary {

    border-radius: 13px;

    padding: 12px 17px;

    font-size: .68rem;

    font-weight: 900;

    border: 1px solid transparent;

    transition: .25s;
}


.btn-xz-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    box-shadow:
        0 15px 35px
        rgba(99,102,241,.22);
}


.btn-xz-primary:hover {

    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 20px 45px
        rgba(99,102,241,.35);
}


.btn-xz-secondary {

    color: white;

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

    border-color:
        var(--border);
}


.btn-xz-secondary:hover {

    color: white;

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

    transform: translateY(-3px);
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {

    display: grid;

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

    max-width: 650px;

    gap: 8px;

    margin-top: 40px;
}


.stat {

    padding: 14px 8px;

    text-align: center;

    border-radius: 15px;

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

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


.stat strong {

    display: block;

    font-size: 1.05rem;

    font-weight: 900;
}


.stat span {

    color: var(--muted);

    font-size: .48rem;

    text-transform: uppercase;

    letter-spacing: .06em;
}


/* =========================================================
   HERO ART
========================================================= */

.hero-decoration {

    position: absolute;

    inset: 0;

    pointer-events: none;
}


.hero-circle {

    position: absolute;

    width: 500px;
    height: 500px;

    right: -100px;

    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    border:
        1px solid
        rgba(139,92,246,.15);

    box-shadow:
        inset 0 0 100px
        rgba(139,92,246,.08),
        0 0 100px
        rgba(139,92,246,.08);
}


.hero-circle::before,
.hero-circle::after {

    content: "";

    position: absolute;

    inset: 50px;

    border-radius: 50%;

    border:
        1px solid
        rgba(34,211,238,.1);
}


.hero-circle::after {
    inset: 100px;
}


.floating-icon {

    position: absolute;

    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    background:
        rgba(20,20,32,.8);

    border:
        1px solid
        var(--border);

    backdrop-filter: blur(15px);

    font-size: 1.3rem;

    z-index: 3;

    animation:
        floatIcon 4s ease-in-out infinite;
}


.icon-one {

    right: 18%;

    top: 25%;

    color: #60a5fa;
}


.icon-two {

    right: 8%;

    top: 53%;

    color: #4ade80;

    animation-delay: 1s;
}


.icon-three {

    right: 25%;

    bottom: 20%;

    color: var(--purple-light);

    animation-delay: 2s;
}


@keyframes floatIcon {

    50% {
        transform:
            translateY(-15px)
            rotate(4deg);
    }
}


/* =========================================================
   SECTIONS
========================================================= */

.section-space {

    padding:
        55px 0;
}


.section-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.section-heading h2 {

    margin: 5px 0 0;

    font-size: 1.7rem;

    font-weight: 900;
}


.section-heading h2 span {

    color: var(--purple-light);
}


.section-heading p {

    color: var(--muted);

    font-size: .68rem;

    margin: 0;
}


.section-heading > a {

    color: var(--purple-light);

    font-size: .65rem;

    font-weight: 800;
}


.eyebrow {

    color: var(--cyan);

    font-size: .53rem;

    font-weight: 900;

    letter-spacing: .15em;
}


/* =========================================================
   FEATURED
========================================================= */

.featured-card {

    position: relative;

    overflow: hidden;

    padding: 32px;

    border-radius: 27px;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,.18),
            rgba(59,130,246,.08),
            rgba(236,72,153,.06)
        );

    border:
        1px solid
        rgba(139,92,246,.25);

    box-shadow:
        var(--shadow);
}


.featured-glow {

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,.25),
            transparent 70%
        );
}


.featured-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 9px;

    border-radius: 99px;

    color: var(--cyan);

    background:
        rgba(34,211,238,.06);

    border:
        1px solid
        rgba(34,211,238,.12);

    font-size: .52rem;

    font-weight: 900;
}


.featured-card h3 {

    font-size: 1.45rem;

    font-weight: 900;

    margin:
        14px 0
        7px;
}


.featured-card p {

    color: var(--muted);

    font-size: .7rem;
}


.feature-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 16px;
}


.feature-tags span {

    padding: 7px 9px;

    border-radius: 99px;

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

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

    color: #c8c8d4;

    font-size: .51rem;

    font-weight: 700;
}


.featured-price {

    font-size: 3.2rem;

    font-weight: 900;

    font-family: Orbitron;
}


.featured-card small {

    color: var(--muted);

    font-size: .55rem;
}


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

.status-card {

    height: 100%;

    padding: 22px;

    border-radius: 20px;

    background:
        var(--surface);

    border:
        1px solid
        var(--border);

    backdrop-filter:
        blur(18px);

    transition: .25s;
}


.status-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(139,92,246,.3);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.3);
}


.status-icon {

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    margin-bottom: 15px;

    background:
        rgba(139,92,246,.1);

    font-size: 1.2rem;
}


.status-icon.playstation {
    color: #60a5fa;
}


.status-icon.xbox {
    color: #4ade80;
}


.status-icon.pc {
    color: var(--purple-light);
}


.status-card h4 {

    font-size: .85rem;

    font-weight: 900;

    margin-bottom: 5px;
}


.status-card p {

    min-height: 34px;

    color: var(--muted);

    font-size: .58rem;

    line-height: 1.5;
}


.online,
.checking {

    font-size: .48rem;

    font-weight: 900;
}


.online {
    color: #86efac;
}


.checking {
    color: #fde68a;
}


.online i,
.checking i {

    font-size: .35rem;

    margin-right: 5px;
}


/* =========================================================
   SERVICE CONTROLS
========================================================= */

.service-controls {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}


.filter-buttons {

    display: flex;

    gap: 6px;

    overflow-x: auto;

    scrollbar-width: none;
}


.filter-buttons::-webkit-scrollbar {
    display: none;
}


.filter {

    flex-shrink: 0;

    border: 1px solid
        var(--border);

    border-radius: 99px;

    padding: 9px 13px;

    color: var(--muted);

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

    font-size: .57rem;

    font-weight: 800;

    transition: .2s;
}


.filter:hover,
.filter.active {

    color: white;

    border-color:
        rgba(139,92,246,.35);

    background:
        rgba(139,92,246,.14);
}


.search-box {

    position: relative;

    min-width: 220px;
}


.search-box i {

    position: absolute;

    left: 13px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--muted);

    font-size: .65rem;
}


.search-box input {

    width: 100%;

    border-radius: 13px;

    border:
        1px solid
        var(--border);

    outline: none;

    padding:
        10px
        12px
        10px
        34px;

    color: white;

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

    font-size: .62rem;
}


.search-box input::placeholder {
    color: #6d6d7e;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

    position: relative;

    height: 100%;

    padding: 20px;

    border-radius: 21px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.018)
        );

    border:
        1px solid
        var(--border);

    transition:
        transform .25s,
        border-color .25s,
        box-shadow .25s;
}


.service-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(139,92,246,.35);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.4);
}


.service-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 15px;
}


.service-icon {

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--purple-light);

    background:
        rgba(139,92,246,.1);
}


.service-category {

    padding: 5px 8px;

    border-radius: 99px;

    color: var(--muted);

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

    font-size: .45rem;

    font-weight: 900;
}


.service-card h3 {

    font-size: .85rem;

    font-weight: 900;

    margin-bottom: 7px;
}


.service-card p {

    min-height: 60px;

    color: var(--muted);

    font-size: .6rem;

    line-height: 1.6;
}


.service-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-top: 16px;
}


.service-footer strong {

    font-size: 1.1rem;

    font-weight: 900;
}


.details-btn {

    border:
        1px solid
        rgba(139,92,246,.25);

    border-radius: 10px;

    padding: 8px 10px;

    color: var(--purple-light);

    background:
        rgba(139,92,246,.08);

    font-size: .5rem;

    font-weight: 900;

    transition: .2s;
}


.details-btn:hover {

    color: white;

    background:
        var(--purple);

    border-color:
        var(--purple);
}


.mini-prices {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 12px;
}


.mini-prices span {

    padding: 5px 7px;

    border-radius: 7px;

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

    color: #c4c4d0;

    font-size: .48rem;

    font-weight: 700;
}


.featured-service {

    border-color:
        rgba(139,92,246,.25);

    background:
        linear-gradient(
            145deg,
            rgba(139,92,246,.1),
            rgba(255,255,255,.02)
        );
}


/* =========================================================
   NO RESULTS
========================================================= */

#noResults {

    display: none;

    text-align: center;

    padding: 60px 20px;

    color: var(--muted);
}


#noResults i {

    font-size: 2rem;

    margin-bottom: 10px;
}


#noResults h4 {

    color: white;

    font-size: .9rem;
}


#noResults p {

    font-size: .6rem;
}


/* =========================================================
   TOOLS
========================================================= */

.tools-wrapper {

    display: grid;

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

    gap: 10px;
}


.tool-card {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px;

    border-radius: 18px;

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

    border:
        1px solid
        var(--border);

    transition: .25s;
}


.tool-card:hover {

    transform:
        translateX(4px);

    border-color:
        rgba(34,211,238,.25);

    background:
        rgba(34,211,238,.04);
}


.tool-icon {

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--cyan);

    background:
        rgba(34,211,238,.07);
}


.telegram-icon {
    color: #38bdf8;
}


.tool-card h4 {

    margin: 0 0 3px;

    font-size: .7rem;

    font-weight: 900;
}


.tool-card p {

    margin: 0;

    color: var(--muted);

    font-size: .55rem;
}


.tool-arrow {

    margin-left: auto;

    color: #666678;

    font-size: .6rem;
}


/* =========================================================
   COMMUNITY
========================================================= */

.community-banner {

    position: relative;

    overflow: hidden;

    padding: 50px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(34,158,217,.1),
            rgba(139,92,246,.12)
        );

    border:
        1px solid
        rgba(139,92,246,.2);
}


.community-content {

    position: relative;

    z-index: 2;

    max-width: 650px;
}


.community-banner h2 {

    font-size:
        clamp(
            1.8rem,
            4vw,
            2.8rem
        );

    font-weight: 900;

    margin: 8px 0;
}


.community-banner h2 span {

    color: #38bdf8;
}


.community-banner p {

    color: var(--muted);

    font-size: .72rem;

    line-height: 1.7;

    max-width: 580px;
}


.community-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;
}


.community-art {

    position: absolute;

    right: 8%;

    top: 50%;

    transform:
        translateY(-50%);

    font-size: 11rem;

    color:
        rgba(34,158,217,.08);

    animation:
        floatIcon 5s ease-in-out infinite;
}


/* =========================================================
   PAYMENT
========================================================= */

.payment-card {

    padding: 35px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(34,197,94,.06),
            rgba(139,92,246,.08)
        );

    border:
        1px solid
        var(--border);
}


.payment-card h2 {

    font-size: 1.6rem;

    font-weight: 900;

    margin: 7px 0;
}


.payment-card h2 span {
    color: var(--purple-light);
}


.payment-card p {

    color: var(--muted);

    font-size: .65rem;

    max-width: 550px;
}


.payment-grid {

    display: grid;

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

    gap: 7px;
}


.payment-grid div {

    padding: 12px;

    border-radius: 12px;

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

    color: #c8c8d2;

    font-size: .56rem;

    font-weight: 700;
}


.payment-grid i {

    color: var(--purple-light);

    margin-right: 6px;
}


/* =========================================================
   MODAL
========================================================= */

.modal-content {

    border:
        1px solid
        var(--border);

    border-radius: 25px;

    color: white;

    background:
        #10101a;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.7);
}


.modal-header,
.modal-footer {

    border-color:
        var(--border);
}


.modal-header small {

    color: var(--muted);

    font-size: .48rem;
}


.modal-title {

    margin-top: 4px;

    font-weight: 900;
}


.modal-price {

    font-size: 2.2rem;

    font-weight: 900;

    color: var(--purple-light);
}


.modal-list {

    list-style: none;

    padding: 0;

    margin: 15px 0 0;
}


.modal-list li {

    padding: 9px 0;

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

    color: #c6c6d2;

    font-size: .64rem;
}


.modal-list li i {

    color: var(--green);
}


/* =========================================================
   TOAST
========================================================= */

.xz-toast {

    position: fixed;

    right: 20px;

    bottom: 25px;

    z-index: 99999;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 12px 15px;

    border-radius: 13px;

    background:
        #171721;

    border:
        1px solid
        var(--border);

    box-shadow:
        var(--shadow);

    color: white;

    font-size: .6rem;

    transform:
        translateY(20px);

    opacity: 0;

    pointer-events: none;

    transition: .3s;
}


.xz-toast.show {

    opacity: 1;

    transform:
        translateY(0);
}


.xz-toast i {
    color: var(--green);
}


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

footer {

    padding:
        50px 0 100px;

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

    background:
        rgba(0,0,0,.2);
}


.footer-main {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-brand strong {

    display: block;

    font-family: Orbitron;

    font-size: .8rem;
}


.footer-brand strong span {
    color: var(--purple-light);
}


.footer-brand small {

    display: block;

    color: var(--muted);

    font-size: .43rem;
}


.footer-links {

    display: flex;

    gap: 15px;

    color: var(--muted);

    font-size: .58rem;

    font-weight: 700;
}


.footer-links a:hover {
    color: white;
}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin-top: 30px;

    padding-top: 20px;

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

    color: #5f5f70;

    font-size: .5rem;
}


/* =========================================================
   MOBILE BOTTOM BAR
========================================================= */

.mobile-bottom-bar {

    display: none;

    position: fixed;

    left: 12px;
    right: 12px;
    bottom: 12px;

    z-index: 5000;

    padding: 6px;

    border-radius: 18px;

    background:
        rgba(15,15,24,.88);

    border:
        1px solid
        var(--border);

    backdrop-filter:
        blur(20px);

    box-shadow:
        0 15px 50px
        rgba(0,0,0,.5);
}


.mobile-bottom-bar a {

    flex: 1;

    padding: 11px;

    text-align: center;

    border-radius: 13px;

    font-size: .56rem;

    font-weight: 900;
}


.mobile-bottom-bar a:first-child {

    background:
        #229ed9;
}


.mobile-bottom-bar a:last-child {

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .hero-card {

        padding: 45px 35px;

        min-height: auto;
    }


    .hero-decoration {
        opacity: .35;
    }


    .hero-circle {

        right: -250px;
    }

}


@media(max-width:767px) {

    body {
        padding-bottom: 80px;
    }


    .navbar {
        top: 0;
    }


    .hero-section {
        padding-top: 90px;
    }


    .hero-card {

        padding: 35px 22px;

        border-radius: 25px;
    }


    .hero-card h1 {

        font-size:
            clamp(
                2.7rem,
                15vw,
                4rem
            );

        letter-spacing: -3px;
    }


    .hero-description {
        font-size: .72rem;
    }


    .hero-stats {

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

        margin-top: 30px;
    }


    .hero-decoration {
        display: none;
    }


    .section-space {
        padding: 40px 0;
    }


    .section-heading {

        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 15px;
    }


    .section-heading p {
        display: none;
    }


    .section-heading h2 {
        font-size: 1.35rem;
    }


    .service-controls {

        align-items: stretch;

        flex-direction: column;
    }


    .search-box {
        min-width: 0;
    }


    .tools-wrapper {
        grid-template-columns: 1fr;
    }


    .community-banner {
        padding: 30px 22px;
    }


    .community-art {
        display: none;
    }


    .payment-card {
        padding: 25px 20px;
    }


    .footer-main {

        align-items: flex-start;

        flex-direction: column;
    }


    .footer-bottom {

        flex-direction: column;
    }


    .mobile-bottom-bar {

        display: flex;
    }


    footer {
        padding-bottom: 110px;
    }

}


@media(max-width:450px) {

    .brand-text small {
        display: none;
    }


    .hero-buttons .btn {
        width: 100%;
    }


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


    .footer-links {
        flex-wrap: wrap;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

    }

}