@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {
    --bg: #06050a;
    --bg-2: #09070f;
    --surface: rgba(18, 15, 27, 0.72);
    --surface-solid: #12101a;
    --surface-light: rgba(255, 255, 255, 0.045);

    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);

    --text: #f7f5fb;
    --text-soft: #c3bfcc;
    --muted: #898392;

    --purple: #9b6cff;
    --purple-light: #bd9cff;
    --purple-dark: #6f42d9;
    --purple-soft: rgba(155, 108, 255, 0.16);

    --green: #43df96;
    --red: #f06473;
    --blue: #7280ff;

    --container: 1180px;

    --radius: 22px;
    --radius-small: 14px;

    --shadow:
        0 25px 80px rgba(0, 0, 0, 0.45);

    --purple-shadow:
        0 25px 90px rgba(111, 66, 217, 0.18);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 70% 10%,
            rgba(125, 76, 255, 0.08),
            transparent 28%
        ),
        var(--bg);

    color: var(--text);

    font-family: "Inter", sans-serif;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::selection {
    background: rgba(155, 108, 255, 0.35);
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}


/* =========================================================
   BACKGROUND
========================================================= */

.background {
    position: fixed;
    inset: 0;

    pointer-events: none;

    overflow: hidden;

    z-index: -10;

    background:
        linear-gradient(
            135deg,
            rgba(155, 108, 255, 0.025),
            transparent 45%
        );
}

.background-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.18;
}

.background-glow-one {
    top: -300px;
    right: -150px;

    background: var(--purple);
}

.background-glow-two {
    bottom: -400px;
    left: -250px;

    background: #4d25a6;
}

.background-grid {
    position: absolute;
    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
}

.background-noise {
    position: absolute;
    inset: 0;

    opacity: 0.035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");

    mix-blend-mode: overlay;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    padding: 18px 0;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        padding 0.35s ease;

    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 13px 0;

    background: rgba(6, 5, 10, 0.72);

    border-color: var(--border);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.navbar-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.logo-mark {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: white;

    font-size: 18px;
    font-weight: 900;

    background:
        linear-gradient(
            145deg,
            #a77cff,
            #7043d8
        );

    box-shadow:
        0 0 28px rgba(155, 108, 255, 0.28),
        inset 0 1px rgba(255, 255, 255, 0.22);
}

.logo-text {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--purple-light);
    font-weight: 600;
}


/* NAV LINKS */

.nav-links {
    display: flex;

    align-items: center;

    gap: 6px;

    margin-left: auto;
}

.nav-link {
    position: relative;

    padding: 9px 12px;

    color: var(--muted);

    font-size: 13px;
    font-weight: 600;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav-link:hover {
    color: white;

    background: rgba(255, 255, 255, 0.045);

    border-radius: 9px;
}


/* NAV ACTIONS */

.nav-actions {
    display: flex;

    align-items: center;

    gap: 9px;
}

.nav-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 40px;

    padding: 0 17px;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
}

.nav-discord {
    border: 1px solid var(--border-light);

    background: rgba(255, 255, 255, 0.035);

    color: var(--text-soft);
}

.nav-discord:hover {
    background: rgba(255, 255, 255, 0.07);
    color: white;
}

.nav-download {
    background: var(--purple);

    color: white;

    box-shadow:
        0 8px 28px rgba(155, 108, 255, 0.22);
}

.nav-download:hover {
    background: var(--purple-light);

    box-shadow:
        0 10px 32px rgba(155, 108, 255, 0.35);
}


/* MOBILE MENU BUTTON */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.04);

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.mobile-menu-button span {
    width: 18px;
    height: 2px;

    border-radius: 2px;

    background: white;

    transition: transform 0.25s ease;
}


/* MOBILE MENU */

.mobile-menu {
    position: fixed;

    top: 76px;
    left: 16px;
    right: 16px;

    z-index: 999;

    display: none;

    padding: 10px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: rgba(12, 10, 18, 0.94);

    backdrop-filter: blur(25px);

    box-shadow: var(--shadow);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;

    padding: 14px;

    border-radius: 10px;

    color: var(--text-soft);

    font-size: 14px;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 920px;

    display: flex;
    align-items: center;

    padding-top: 130px;

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    top: 15%;
    left: -250px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background: rgba(112, 66, 217, 0.08);

    filter: blur(90px);

    pointer-events: none;
}

.hero-container {
    position: relative;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 50px;
}


/* HERO CONTENT */

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 600px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 12px;

    margin-bottom: 24px;

    border: 1px solid rgba(155, 108, 255, 0.22);

    border-radius: 999px;

    background: rgba(155, 108, 255, 0.07);

    color: var(--purple-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.4px;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px rgba(67, 223, 150, 0.7);

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.78);
    }
}


.hero-title {
    max-width: 720px;

    font-size: clamp(
        58px,
        7vw,
        94px
    );

    line-height: 0.96;

    letter-spacing: -5px;

    font-weight: 900;
}

.hero-title-main {
    display: block;
}

.hero-title-accent {
    display: block;

    margin-top: 10px;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            #8d61ef,
            #c1a3ff 55%,
            #8151e8
        );

    background-clip: text;
    -webkit-background-clip: text;

    text-shadow:
        0 0 45px rgba(155, 108, 255, 0.15);
}

.hero-description {
    max-width: 540px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* HERO BUTTONS */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 34px;
}

.primary-button,
.secondary-button {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 0 21px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.primary-button {
    background:
        linear-gradient(
            135deg,
            #a276ff,
            #7747db
        );

    color: white;

    box-shadow:
        0 15px 40px rgba(119, 71, 219, 0.28);
}

.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 45px rgba(119, 71, 219, 0.42);
}

.button-arrow {
    font-size: 18px;
    line-height: 1;
}

.secondary-button {
    border: 1px solid var(--border-light);

    background: rgba(255, 255, 255, 0.035);

    color: var(--text-soft);
}

.secondary-button:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.07);

    color: white;
}


/* HERO META */

.hero-meta {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-top: 48px;
}

.hero-meta-item {
    display: flex;

    align-items: center;

    gap: 9px;
}

.hero-meta-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.035);

    color: var(--purple-light);

    font-size: 11px;
}

.hero-meta-item div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-meta-item strong {
    font-size: 11px;
    font-weight: 700;
}

.hero-meta-item span:not(.hero-meta-icon) {
    color: var(--muted-2);

    font-size: 9px;
}

.hero-meta-divider {
    width: 1px;
    height: 27px;

    background: var(--border);
}


/* =========================================================
   HERO CLIENT PREVIEW
========================================================= */

.hero-visual {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit {
    position: absolute;

    border: 1px solid rgba(155, 108, 255, 0.09);

    border-radius: 50%;

    transform: rotate(-18deg);
}

.hero-orbit-one {
    width: 650px;
    height: 280px;
}

.hero-orbit-two {
    width: 560px;
    height: 240px;

    transform: rotate(25deg);
}

.client-preview {
    position: relative;

    width: min(650px, 100%);

    transform:
        perspective(1200px)
        rotateY(-7deg)
        rotateX(3deg)
        rotateZ(1deg);

    transition:
        transform 0.6s cubic-bezier(.2,.8,.2,1);
}

.client-preview:hover {
    transform:
        perspective(1200px)
        rotateY(-2deg)
        rotateX(1deg)
        rotateZ(0deg)
        translateY(-8px);
}

.client-preview-glow {
    position: absolute;

    inset: 10%;

    border-radius: 30px;

    background: rgba(128, 78, 230, 0.28);

    filter: blur(80px);

    z-index: -1;
}

.client-window {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(29, 25, 39, 0.96),
            rgba(10, 9, 15, 0.97)
        );

    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(111, 66, 217, 0.14),
        inset 0 1px rgba(255, 255, 255, 0.08);
}

.window-bar {
    height: 49px;

    display: flex;

    align-items: center;

    padding: 0 17px;

    border-bottom: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.025);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.17);
}

.window-title {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.6px;
}

.window-version {
    margin-left: auto;

    color: var(--muted-2);

    font-size: 9px;
    font-weight: 600;
}

.client-interface {
    min-height: 405px;

    display: flex;
}

.client-sidebar {
    width: 76px;

    padding: 20px 12px;

    border-right: 1px solid var(--border);

    background: rgba(255, 255, 255, 0.018);

    display: flex;

    flex-direction: column;
    align-items: center;
}

.client-sidebar-logo {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: linear-gradient(
        145deg,
        #a77cff,
        #6f42d9
    );

    font-size: 17px;
    font-weight: 900;

    box-shadow:
        0 0 24px rgba(155, 108, 255, 0.25);
}

.client-sidebar-items {
    display: flex;

    flex-direction: column;

    gap: 11px;

    margin-top: 32px;
}

.client-sidebar-item {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: var(--muted-2);

    font-size: 11px;
}

.client-sidebar-item.active {
    color: white;

    background: rgba(155, 108, 255, 0.14);

    box-shadow:
        inset 0 0 0 1px rgba(155, 108, 255, 0.12);
}

.client-main {
    flex: 1;

    padding: 25px;
}

.client-main-header {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.client-small-label,
.mini-label {
    display: block;

    color: var(--muted-2);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.client-main-header h3 {
    margin-top: 5px;

    font-size: 19px;

    letter-spacing: -0.6px;
}

.client-status {
    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--green);

    font-size: 9px;
    font-weight: 700;
}

.client-status span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);
}

.client-feature-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr;

    gap: 10px;

    margin-top: 24px;
}

.client-feature-card {
    min-height: 125px;

    padding: 18px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.025);
}

.client-feature-card.large {
    grid-row: span 2;

    justify-content: flex-start;
}

.client-feature-card strong {
    margin-top: 7px;

    font-size: 13px;
}

.client-feature-card small {
    margin-top: 4px;

    color: var(--muted-2);

    font-size: 8px;
}

.mini-icon {
    width: 25px;
    height: 25px;

    display: grid;
    place-items: center;

    border-radius: 7px;

    background: rgba(155, 108, 255, 0.12);

    color: var(--purple-light);

    font-size: 9px;
}

.fake-chart {
    height: 80px;

    display: flex;

    align-items: end;

    gap: 7px;

    margin-top: 18px;

    padding-top: 10px;
}

.fake-chart i {
    display: block;

    flex: 1;

    min-width: 5px;

    border-radius: 4px 4px 1px 1px;

    background:
        linear-gradient(
            to top,
            #7044d5,
            #b292ff
        );

    opacity: 0.75;
}

.fake-chart i:nth-child(1) {
    height: 34%;
}

.fake-chart i:nth-child(2) {
    height: 51%;
}

.fake-chart i:nth-child(3) {
    height: 43%;
}

.fake-chart i:nth-child(4) {
    height: 68%;
}

.fake-chart i:nth-child(5) {
    height: 58%;
}

.fake-chart i:nth-child(6) {
    height: 86%;
}

.client-bottom-panel {
    margin-top: 12px;

    height: 47px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 0 15px;

    border: 1px solid var(--border);

    border-radius: 10px;

    color: var(--muted-2);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.bottom-line {
    height: 1px;

    flex: 1;

    background:
        linear-gradient(
            90deg,
            rgba(155, 108, 255, 0.35),
            transparent
        );
}


/* =========================================================
   HERO SCROLL
========================================================= */

.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 28px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: var(--muted-2);
}

.hero-scroll span {
    width: 18px;
    height: 28px;

    display: block;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 999px;

    position: relative;
}

.hero-scroll span::before {
    content: "";

    position: absolute;

    top: 6px;
    left: 50%;

    width: 3px;
    height: 6px;

    border-radius: 3px;

    background: var(--purple-light);

    transform: translateX(-50%);

    animation: scrollDot 1.7s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
}

.hero-scroll p {
    font-size: 8px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    position: relative;

    padding: 0 0 100px;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    padding: 26px 25px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    color: var(--purple-light);

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -1px;
}

.stat-label {
    color: var(--muted);

    font-size: 10px;
    font-weight: 600;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    position: relative;

    padding: 125px 0;
}

.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.section-eyebrow {
    display: inline-block;

    color: var(--purple-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 14px;

    font-size: clamp(
        39px,
        5vw,
        61px
    );

    line-height: 1;

    letter-spacing: -3px;
}

.section-heading p {
    max-width: 580px;

    margin-top: 19px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.section-heading-row {
    max-width: none;

    display: flex;

    align-items: end;
    justify-content: space-between;
}


/* =========================================================
   FEATURES
========================================================= */

.features-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 13px;
}

.feature-card {
    position: relative;

    min-height: 310px;

    overflow: hidden;

    padding: 26px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);

    border-color: rgba(155, 108, 255, 0.24);

    background:
        linear-gradient(
            145deg,
            rgba(155, 108, 255, 0.08),
            rgba(255, 255, 255, 0.02)
        );
}

.feature-card-large {
    min-height: 430px;

    grid-row: span 2;
}

.feature-card-accent {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(155, 108, 255, 0.18),
            transparent 45%
        ),
        rgba(255, 255, 255, 0.025);
}

.feature-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.feature-number {
    color: var(--muted-2);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.feature-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(155, 108, 255, 0.16);

    border-radius: 12px;

    background: rgba(155, 108, 255, 0.08);

    color: var(--purple-light);

    font-size: 13px;
    font-weight: 800;
}

.feature-card-content h3 {
    font-size: 23px;

    letter-spacing: -1px;
}

.feature-card-content p {
    max-width: 330px;

    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}

.feature-decoration {
    position: absolute;

    right: -70px;
    bottom: -90px;

    width: 240px;
    height: 240px;

    border: 1px solid rgba(155, 108, 255, 0.08);

    border-radius: 50%;
}

.feature-decoration::after {
    content: "";

    position: absolute;

    inset: 28px;

    border: 1px solid rgba(155, 108, 255, 0.06);

    border-radius: 50%;
}


/* =========================================================
   NEBREL+
========================================================= */

.plus-section {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(116, 67, 222, 0.11),
            transparent 35%
        );
}

.plus-wrapper {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    align-items: center;

    gap: 100px;
}

.plus-content h2 {
    margin-top: 16px;

    font-size: clamp(
        50px,
        6vw,
        76px
    );

    line-height: 0.96;

    letter-spacing: -4px;
}

.plus-content > p {
    max-width: 500px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}

.plus-features {
    margin-top: 42px;

    display: flex;

    flex-direction: column;

    gap: 25px;
}

.plus-feature {
    display: flex;

    gap: 15px;
}

.plus-feature-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border: 1px solid rgba(155, 108, 255, 0.15);

    border-radius: 10px;

    background: rgba(155, 108, 255, 0.07);

    color: var(--purple-light);

    font-size: 12px;
    font-weight: 800;
}

.plus-feature h3 {
    font-size: 13px;
}

.plus-feature p {
    margin-top: 5px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.65;
}


/* PLUS CARD */

.plus-visual {
    display: flex;

    justify-content: center;
}

.plus-card {
    position: relative;

    width: min(390px, 100%);
    aspect-ratio: 0.72;

    overflow: hidden;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid rgba(190, 159, 255, 0.25);

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(155, 108, 255, 0.23),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #1a1525,
            #0c0a11 70%
        );

    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.45),
        0 0 80px rgba(119, 71, 219, 0.15);
}

.plus-card::before {
    content: "N";

    position: absolute;

    right: -25px;
    bottom: -70px;

    color: rgba(255, 255, 255, 0.018);

    font-size: 320px;
    font-weight: 900;

    line-height: 1;
}

.plus-card-glow {
    position: absolute;

    top: -100px;
    right: -100px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: var(--purple);

    filter: blur(100px);

    opacity: 0.2;
}

.plus-card-header {
    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;
}

.plus-logo {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--purple);

    color: white;

    font-size: 18px;
    font-weight: 900;
}

.plus-card-header div:last-child {
    display: flex;

    align-items: center;

    gap: 5px;
}

.plus-card-header span {
    font-size: 12px;
    font-weight: 800;
}

.plus-card-header strong {
    color: var(--purple-light);

    font-size: 13px;
}

.plus-card-line {
    position: absolute;

    left: 30px;
    right: 30px;
    top: 50%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(155, 108, 255, 0.3),
            transparent
        );
}

.plus-card-body {
    position: relative;
}

.plus-card-label {
    color: var(--muted-2);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.plus-card-body h3 {
    margin-top: 9px;

    font-size: 48px;

    letter-spacing: -3px;
}

.plus-card-body p {
    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
}

.plus-card-footer {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: var(--muted-2);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* =========================================================
   SHOWCASE
========================================================= */

.showcase-preview {
    position: relative;
}

.showcase-preview::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 55%;
    height: 55%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(126, 73, 230, 0.17);

    filter: blur(100px);

    z-index: -1;
}

.showcase-window {
    overflow: hidden;

    border: 1px solid var(--border-light);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #17131f,
            #0a090e
        );

    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.45);
}

.showcase-window-header {
    height: 54px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    padding: 0 20px;

    border-bottom: 1px solid var(--border);

    color: var(--muted-2);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.showcase-window-header > span:last-child {
    text-align: right;
}

.showcase-dots {
    display: flex;
    gap: 6px;
}

.showcase-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
}

.showcase-window-content {
    min-height: 500px;

    position: relative;

    display: flex;

    align-items: center;

    padding: 75px;
}

.showcase-big-logo {
    position: absolute;

    right: 8%;

    color: rgba(255, 255, 255, 0.025);

    font-size: 390px;
    font-weight: 900;

    line-height: 0.7;
}

.showcase-info {
    position: relative;

    max-width: 570px;

    z-index: 2;
}

.showcase-label {
    color: var(--purple-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.showcase-info h3 {
    margin-top: 14px;

    font-size: clamp(
        45px,
        6vw,
        76px
    );

    line-height: 0.95;

    letter-spacing: -4px;
}

.showcase-info p {
    max-width: 420px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.showcase-stats {
    position: absolute;

    left: 75px;
    bottom: 55px;

    display: flex;

    gap: 45px;
}

.showcase-stats div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.showcase-stats strong {
    font-size: 19px;
}

.showcase-stats span {
    color: var(--muted-2);

    font-size: 8px;
}


/* =========================================================
   ANNOUNCEMENTS
========================================================= */

.live-label {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 11px;

    border: 1px solid rgba(67, 223, 150, 0.16);

    border-radius: 999px;

    background: rgba(67, 223, 150, 0.05);

    color: var(--green);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}

.live-label span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 10px rgba(67, 223, 150, 0.65);
}

.announcement-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.announcement-card {
    position: relative;

    display: grid;

    grid-template-columns: 50px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 22px 24px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.025);

    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.announcement-card:hover {
    transform: translateX(4px);

    border-color: rgba(155, 108, 255, 0.2);

    background: rgba(155, 108, 255, 0.035);
}

.announcement-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: rgba(155, 108, 255, 0.09);

    color: var(--purple-light);

    font-size: 12px;
    font-weight: 800;
}

.announcement-content h3 {
    font-size: 14px;
}

.announcement-content p {
    margin-top: 6px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.6;
}

.announcement-label {
    color: var(--muted-2);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.announcement-card[data-type="maintenance"] .announcement-icon {
    color: var(--yellow);

    background: rgba(245, 196, 81, 0.08);
}

.announcement-card[data-type="problem"] .announcement-icon {
    color: var(--red);

    background: rgba(240, 100, 115, 0.08);
}

.announcement-card[data-type="resolved"] .announcement-icon {
    color: var(--green);

    background: rgba(67, 223, 150, 0.08);
}

.announcement-empty {
    padding: 65px 30px;

    text-align: center;

    border: 1px dashed rgba(255, 255, 255, 0.1);

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.015);
}

.empty-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto 15px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: rgba(155, 108, 255, 0.08);

    color: var(--purple-light);

    font-weight: 900;
}

.announcement-empty h3 {
    font-size: 14px;
}

.announcement-empty p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   CHANGELOG
========================================================= */

.changelog-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.012),
            transparent
        );
}

.changelog-list {
    border-top: 1px solid var(--border);
}

.changelog-item {
    display: grid;

    grid-template-columns: 180px 1fr;

    gap: 50px;

    padding: 38px 0;

    border-bottom: 1px solid var(--border);
}

.changelog-version {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.changelog-version span {
    color: var(--muted-2);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.changelog-version strong {
    color: var(--purple-light);

    font-size: 20px;
}

.changelog-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.changelog-top h3 {
    font-size: 18px;
}

.changelog-top span {
    color: var(--muted-2);

    font-size: 9px;
}

.changelog-content > p {
    margin-top: 9px;

    color: var(--muted);

    font-size: 11px;
}

.changelog-tags {
    display: flex;

    gap: 7px;

    margin-top: 17px;
}

.changelog-tags span {
    padding: 5px 8px;

    border: 1px solid var(--border);

    border-radius: 6px;

    background: rgba(255, 255, 255, 0.025);

    color: var(--muted);

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 0.7px;
}


/* =========================================================
   DISCORD
========================================================= */

.discord-section {
    padding: 20px 0 125px;
}

.discord-card {
    position: relative;

    min-height: 450px;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 65px;

    border: 1px solid rgba(114, 128, 255, 0.18);

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(88, 101, 242, 0.22),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(22, 19, 34, 0.98),
            rgba(10, 9, 14, 0.98)
        );

    box-shadow:
        var(--shadow);
}

.discord-background {
    position: absolute;

    inset: 0;

    opacity: 0.4;

    background-image:
        linear-gradient(
            115deg,
            transparent 30%,
            rgba(114, 128, 255, 0.05) 30.2%,
            transparent 30.4%
        );

    background-size: 90px 90px;
}

.discord-content {
    position: relative;

    max-width: 570px;

    z-index: 2;
}

.discord-content h2 {
    margin-top: 16px;

    font-size: clamp(
        45px,
        5vw,
        68px
    );

    line-height: 0.96;

    letter-spacing: -4px;
}

.discord-content p {
    max-width: 480px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.discord-button {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    gap: 35px;

    margin-top: 30px;

    padding: 0 19px;

    border-radius: 11px;

    background: #5865f2;

    color: white;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 15px 35px rgba(88, 101, 242, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.discord-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(88, 101, 242, 0.38);
}

.discord-visual {
    position: absolute;

    right: 90px;

    width: 260px;
    height: 260px;

    display: grid;
    place-items: center;
}

.discord-logo {
    width: 170px;
    height: 170px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 45px;

    background:
        linear-gradient(
            145deg,
            rgba(114, 128, 255, 0.25),
            rgba(88, 101, 242, 0.06)
        );

    box-shadow:
        0 0 90px rgba(88, 101, 242, 0.3);

    transform: rotate(8deg);
}

.discord-logo span {
    color: rgba(255, 255, 255, 0.9);

    font-size: 75px;
    font-weight: 900;

    transform: rotate(-8deg);
}


/* =========================================================
   DOWNLOAD
========================================================= */

.download-section {
    padding-top: 40px;
    padding-bottom: 140px;
}

.download-box {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 75px;

    border: 1px solid rgba(155, 108, 255, 0.18);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(155, 108, 255, 0.18),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(25, 20, 35, 0.98),
            rgba(10, 8, 14, 0.98)
        );

    box-shadow:
        0 45px 100px rgba(0, 0, 0, 0.4);
}

.download-glow {
    position: absolute;

    right: 0;
    top: 50%;

    width: 450px;
    height: 450px;

    transform: translate(35%, -50%);

    border-radius: 50%;

    background: var(--purple);

    filter: blur(120px);

    opacity: 0.12;
}

.download-content {
    position: relative;

    z-index: 2;
}

.download-content h2 {
    margin-top: 15px;

    font-size: clamp(
        48px,
        6vw,
        76px
    );

    line-height: 0.95;

    letter-spacing: -4px;
}

.download-content p {
    max-width: 470px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;
}

.download-button {
    margin-top: 29px;
}

.download-meta {
    margin-top: 14px;

    color: var(--muted-2);

    font-size: 9px;
}

.download-logo {
    position: absolute;

    right: 100px;

    width: 260px;
    height: 260px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(155, 108, 255, 0.12);

    border-radius: 50%;

    background: rgba(155, 108, 255, 0.035);
}

.download-logo-ring {
    position: absolute;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(155, 108, 255, 0.12);

    border-radius: 50%;
}

.download-logo span {
    color: rgba(255, 255, 255, 0.12);

    font-size: 115px;
    font-weight: 900;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 30px;

    border-top: 1px solid var(--border);

    background: rgba(0, 0, 0, 0.15);
}

.footer-main {
    display: flex;

    justify-content: space-between;

    gap: 70px;
}

.footer-brand p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 10px;
}

.footer-links {
    display: flex;

    gap: 90px;
}

.footer-column {
    min-width: 110px;

    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-column > span {
    margin-bottom: 4px;

    color: var(--muted-2);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.footer-column a {
    color: var(--muted);

    font-size: 10px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 65px;
    padding-top: 22px;

    display: flex;

    justify-content: space-between;

    border-top: 1px solid var(--border);

    color: var(--muted-2);

    font-size: 8px;
}


/* =========================================================
   SCROLL TOP
========================================================= */

.scroll-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-light);

    border-radius: 11px;

    background: rgba(12, 10, 17, 0.8);

    backdrop-filter: blur(15px);

    color: white;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    border-color: rgba(155, 108, 255, 0.3);

    background: rgba(155, 108, 255, 0.12);
}


/* =========================================================
   COOKIE
========================================================= */

.cookie-banner {
    position: fixed;

    left: 22px;
    bottom: 22px;

    max-width: 480px;

    z-index: 2000;

    padding: 17px;

    border: 1px solid var(--border-light);

    border-radius: 15px;

    background: rgba(13, 11, 18, 0.92);

    backdrop-filter: blur(22px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.cookie-banner.hidden {
    opacity: 0;

    transform: translateY(20px);

    pointer-events: none;
}

.cookie-content {
    display: flex;

    align-items: center;

    gap: 20px;
}

.cookie-content strong {
    font-size: 11px;
}

.cookie-content p {
    max-width: 310px;

    margin-top: 4px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.5;
}

.cookie-button {
    flex-shrink: 0;

    height: 34px;

    padding: 0 13px;

    border: none;

    border-radius: 8px;

    background: var(--purple);

    color: white;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .nav-links {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .hero-content {
        max-width: 720px;

        text-align: center;

        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-meta {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .client-preview {
        max-width: 650px;
    }

    .plus-wrapper {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .plus-content {
        max-width: 700px;
    }

    .plus-visual {
        justify-content: flex-start;
    }

    .discord-visual {
        right: 30px;
    }

    .download-logo {
        right: 50px;
    }
}


@media (max-width: 850px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }

    .nav-actions {
        display: none;
    }

    .hero {
        min-height: auto;

        padding-top: 130px;
        padding-bottom: 100px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-title {
        font-size: clamp(
            50px,
            12vw,
            78px
        );

        letter-spacing: -3.5px;
    }

    .hero-meta {
        flex-wrap: wrap;

        gap: 15px;
    }

    .hero-meta-divider {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-row: auto;

        min-height: 310px;
    }

    .showcase-window-content {
        min-height: 430px;

        padding: 45px;
    }

    .showcase-stats {
        left: 45px;
        bottom: 35px;
    }

    .showcase-big-logo {
        font-size: 280px;
    }

    .discord-card {
        padding: 50px;
    }

    .discord-visual {
        opacity: 0.5;
    }

    .download-box {
        padding: 55px;
    }

    .download-logo {
        right: 15px;

        opacity: 0.5;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        gap: 45px;
    }
}


@media (max-width: 600px) {

    .section {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 39px;

        letter-spacing: -2.5px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 49px;

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-meta {
        align-items: flex-start;

        justify-content: flex-start;

        flex-direction: column;

        margin-top: 35px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-orbit {
        display: none;
    }

    .client-preview {
        transform:
            perspective(900px)
            rotateY(-4deg)
            rotateX(2deg);
    }

    .client-interface {
        min-height: 280px;
    }

    .client-sidebar {
        width: 53px;

        padding: 15px 8px;
    }

    .client-sidebar-logo {
        width: 31px;
        height: 31px;

        font-size: 13px;
    }

    .client-sidebar-item {
        width: 29px;
        height: 29px;
    }

    .client-main {
        padding: 16px;
    }

    .client-feature-grid {
        margin-top: 15px;

        gap: 7px;
    }

    .client-feature-card {
        min-height: 85px;

        padding: 11px;
    }

    .client-feature-card.large {
        min-height: 177px;
    }

    .fake-chart {
        height: 50px;
    }

    .stats-section {
        padding-bottom: 60px;
    }

    .stat {
        padding: 20px 15px;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card-large {
        min-height: 250px;
    }

    .plus-content h2 {
        font-size: 51px;

        letter-spacing: -3px;
    }

    .plus-card {
        max-width: 310px;
    }

    .showcase-window-header {
        grid-template-columns: 1fr auto;

        padding: 0 13px;
    }

    .showcase-window-header > span:nth-child(2) {
        display: none;
    }

    .showcase-window-content {
        min-height: 390px;

        padding: 32px;
    }

    .showcase-info h3 {
        font-size: 49px;

        letter-spacing: -3px;
    }

    .showcase-stats {
        left: 32px;
        bottom: 25px;

        gap: 22px;
    }

    .showcase-stats strong {
        font-size: 15px;
    }

    .showcase-big-logo {
        right: -10px;

        font-size: 220px;
    }

    .announcement-card {
        grid-template-columns: 42px 1fr;

        gap: 12px;

        padding: 17px;
    }

    .announcement-card > .announcement-label {
        display: none;
    }

    .announcement-icon {
        width: 38px;
        height: 38px;
    }

    .changelog-item {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 28px 0;
    }

    .changelog-top {
        flex-direction: column;

        align-items: flex-start;
    }

    .discord-card {
        min-height: 500px;

        padding: 38px;
    }

    .discord-content h2 {
        font-size: 48px;

        letter-spacing: -3px;
    }

    .discord-visual {
        right: -70px;
        bottom: -50px;

        transform: scale(0.75);
    }

    .download-box {
        min-height: 500px;

        padding: 38px;
    }

    .download-content h2 {
        font-size: 50px;

        letter-spacing: -3px;
    }

    .download-logo {
        right: -90px;
        bottom: -40px;

        transform: scale(0.7);
    }

    .footer {
        padding-top: 50px;
    }

    .footer-links {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 35px;
    }

    .footer-bottom {
        margin-top: 45px;

        flex-direction: column;

        gap: 8px;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;

        max-width: none;
    }

    .cookie-content {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

    .cookie-button {
        width: 100%;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@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;
    }

}