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

:root {
    --primary-red: #c9182b;
    --dark-red: #7f0d18;
    --neon-red: #e74655;
    --bg-dark: #07080b;
    --bg-card: rgba(18, 20, 27, 0.78);
    --panel: #151820;
    --text-white: #f8f9fa;
    --text-gray: #adb5bd;
    --text-soft: #d7d9df;
    --line: rgba(255, 255, 255, 0.1);
    --red-line: rgba(201, 24, 43, 0.28);
    --red-soft: rgba(201, 24, 43, 0.1);
    --accent-glow: rgba(232, 25, 42, 0.22);
    --shadow: 0 18px 52px rgba(0, 0, 0, 0.42);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background:
        radial-gradient(circle at 18% 8%, rgba(201, 24, 43, 0.09), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(201, 24, 43, 0.055), transparent 30%),
        linear-gradient(180deg, #0d0f14 0%, var(--bg-dark) 56%, #040507 100%);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: rgba(232, 25, 42, 0.4);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.bg-animation,
.grid-overlay,
.cursor-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-animation {
    background:
        radial-gradient(circle at 25% 30%, rgba(201, 24, 43, 0.055), transparent 42%),
        radial-gradient(circle at 75% 70%, rgba(201, 24, 43, 0.045), transparent 44%);
    opacity: 0.72;
}

.grid-overlay {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.cursor-glow {
    inset: auto;
    left: var(--x, 50vw);
    top: var(--y, 35vh);
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(232, 25, 42, 0.16);
    filter: blur(90px);
    transform: translate(-50%, -50%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

header {
    padding: 1.2rem 0;
    background: rgba(10, 10, 13, 0.94);
    border-bottom: 1px solid rgba(185, 45, 56, 0.18);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary-red);
    text-decoration: none;
    text-shadow: 0 0 20px var(--accent-glow);
    white-space: nowrap;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--red-line);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(232, 25, 42, 0.18), rgba(255, 255, 255, 0.04));
    box-shadow: 0 0 22px rgba(232, 25, 42, 0.22);
}

.logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(232, 25, 42, 0.58));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.45rem;
}

.nav-links a {
    position: relative;
    padding: 0.25rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.35rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    opacity: 0;
    transform: scaleX(0.3);
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 14px var(--accent-glow);
}

.nav-links a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    cursor: pointer;
}

.menu-toggle span {
    position: relative;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, background 0.22s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease;
}

.menu-toggle span::before {
    transform: translateY(-7px);
}

.menu-toggle span::after {
    transform: translateY(7px);
}

header.nav-open .menu-toggle span {
    background: transparent;
}

header.nav-open .menu-toggle span::before {
    transform: rotate(45deg);
}

header.nav-open .menu-toggle span::after {
    transform: rotate(-45deg);
}

.hero {
    padding: 3.5rem 0 5rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: start;
    gap: 3rem;
}

.hero-copy {
    padding-top: 5rem;
    text-align: left;
}

.beta-badge,
.eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--primary-red);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: 'Orbitron', sans-serif;
}

h1 {
    font-size: clamp(4rem, 9vw, 7.2rem);
    font-weight: 900;
    margin: 1.3rem 0 1rem;
    background: linear-gradient(135deg, var(--text-white), #e9c5c9 42%, var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.05;
    letter-spacing: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    max-width: 620px;
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2.4rem;
    animation: fadeInUp 0.8s ease 0.4s both;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.download-btn,
.ghost-btn,
.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 54px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: white;
    padding: 0.95rem 2.3rem;
    border: 1px solid rgba(232, 25, 42, 0.72);
    box-shadow: 0 18px 44px rgba(232, 25, 42, 0.26), 0 10px 30px rgba(0, 0, 0, 0.18);
}

.download-btn.browser-aware {
    padding-left: 1.1rem;
}

.browser-download-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex: 0 0 auto;
}

.browser-download-icon svg {
    width: 23px;
    height: 23px;
    display: block;
}

.ghost-btn {
    color: var(--text-white);
    padding: 0.95rem 1.5rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
}

.download-btn:hover,
.ghost-btn:hover,
.discord-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.download-btn:hover {
    box-shadow: 0 20px 52px rgba(232, 25, 42, 0.36), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.download-btn > svg,
.discord-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.spin-shell {
    position: relative;
    display: grid;
    place-items: center;
    width: min(430px, 86vw);
    height: min(430px, 86vw);
    border-radius: 999px;
    background:
        radial-gradient(circle at center, rgba(232, 25, 42, 0.18), transparent 33%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.045), transparent 58%);
}

.spin-shell::before {
    content: "";
    position: absolute;
    inset: 32px;
    border-radius: inherit;
    border: 1px solid rgba(232, 25, 42, 0.16);
    background: rgba(21, 23, 30, 0.16);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.35), 0 0 80px rgba(232, 25, 42, 0.14);
}

.orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid transparent;
    pointer-events: none;
}

.orbit-one {
    inset: 4px;
    border-top-color: rgba(255, 51, 72, 0.9);
    border-right-color: rgba(232, 25, 42, 0.26);
    animation: orbit 7s linear infinite;
}

.orbit-two {
    inset: 42px;
    border-left-color: rgba(255, 255, 255, 0.22);
    border-bottom-color: rgba(232, 25, 42, 0.62);
    animation: orbitReverse 10s linear infinite;
}

.orbit-three {
    inset: 80px;
    border-top-color: rgba(232, 25, 42, 0.5);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    animation: orbit 13s linear infinite;
}

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitReverse { to { transform: rotate(-360deg); } }

.logo-core {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 154px;
    height: 154px;
    border: 1px solid rgba(255, 51, 72, 0.52);
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(27, 30, 38, 0.92), rgba(10, 11, 15, 0.92));
    box-shadow:
        0 0 0 10px rgba(232, 25, 42, 0.05),
        0 30px 70px rgba(0, 0, 0, 0.52),
        0 0 46px rgba(232, 25, 42, 0.32);
    animation: floatCore 3.8s ease-in-out infinite;
}

.logo-core img {
    width: 116px;
    height: 116px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(232, 25, 42, 0.7));
}

@keyframes floatCore {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.stats-strip div {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.stats-strip strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
}

.stats-strip span {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
}

.features,
.install,
.presence,
.developer {
    padding: 6rem 0;
    scroll-margin-top: 20px;
}

.section-head {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-head h2,
.install-card h2,
.presence-copy h2,
.developer h2 {
    margin-top: 1.1rem;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-head p,
.install-card p,
.presence-copy p,
.developer p {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.65;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 1.4rem;
    border: 1px solid rgba(201, 24, 43, 0.22);
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(232, 25, 42, 0.14), transparent 38%),
        rgba(21, 23, 30, 0.72);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto 16px 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(232, 25, 42, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 25, 42, 0.5);
    box-shadow: 0 24px 70px rgba(232, 25, 42, 0.16), 0 24px 70px rgba(0, 0, 0, 0.35);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(180deg, #c83b47, #8a1822);
    color: #fff;
    box-shadow: 0 12px 28px rgba(232, 25, 42, 0.24);
}

.feature-card h3 {
    margin-top: 1.1rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-card p {
    margin-top: 0.55rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.install {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(185, 45, 56, 0.025));
    border-top: 1px solid rgba(185, 45, 56, 0.12);
    border-bottom: 1px solid rgba(185, 45, 56, 0.12);
}

.install-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
    gap: 1.25rem;
}

.install-card,
.steps,
.developer-content {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(21, 23, 30, 0.76);
    box-shadow: var(--shadow);
}

.install-card {
    padding: 1.65rem;
}

.download-btn.compact {
    width: fit-content;
    margin-top: 1.5rem;
}

.steps {
    display: grid;
    gap: 0.75rem;
    padding: 1.65rem;
}

.steps div {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.steps strong {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #fff;
    background: rgba(185, 45, 56, 0.14);
    border: 1px solid var(--red-line);
}

.steps span {
    color: var(--text-soft);
    font-weight: 600;
    line-height: 1.55;
}

code {
    padding: 2px 6px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.26);
    color: #fff;
}

.presence {
    background:
        radial-gradient(circle at 18% 18%, rgba(88, 101, 242, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(185, 45, 56, 0.018));
}

.presence-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(21, 23, 30, 0.76);
    box-shadow: var(--shadow);
}

.presence-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.presence-actions .download-btn.compact {
    margin-top: 0;
}

.presence-meta {
    display: grid;
    gap: 0.75rem;
}

.presence-meta div {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.presence-meta strong,
.presence-meta span {
    display: block;
}

.presence-meta strong {
    color: #fff;
    font-size: 1rem;
}

.presence-meta span {
    margin-top: 0.3rem;
    color: var(--text-gray);
    line-height: 1.45;
    font-weight: 600;
}

.presence-meta .notice {
    border-color: rgba(88, 101, 242, 0.28);
    background: rgba(88, 101, 242, 0.08);
}

.developer {
    text-align: center;
}

.developer-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 2.5rem 1.75rem;
    border-color: var(--red-line);
    background:
        radial-gradient(circle at top, rgba(232, 25, 42, 0.18), transparent 35%),
        rgba(21, 23, 30, 0.72);
}

.developer-content > img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    margin: 1.1rem auto 0;
    display: block;
    filter: drop-shadow(0 0 20px rgba(232, 25, 42, 0.55));
}

.discord-btn {
    margin-top: 1.65rem;
    color: #fff;
    background: linear-gradient(180deg, #5865f2, #3540a8);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 40px rgba(88, 101, 242, 0.26);
    padding: 0.95rem 2rem;
}

footer {
    position: relative;
    z-index: 1;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.footer-left {
    min-width: 1px;
}

.footer-copyright {
    display: grid;
    gap: 0.25rem;
    text-align: center;
}

.footer-policy-link {
    width: fit-content;
    justify-self: center;
}

footer a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

footer a:hover {
    color: var(--neon-red);
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0c0c0c;
    border-radius: 50%;
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.social-link:hover {
    color: var(--primary-red);
    border-color: rgba(185, 45, 56, 0.46);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .install-grid,
    .presence-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero-copy {
        padding-top: 0;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

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

    .stats-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 40px;
    }

    header {
        padding: 0.85rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .features,
    .install,
    .presence,
    .developer,
    footer {
        scroll-margin-top: 20px;
    }

    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .nav-links {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        opacity: 0;
        transition: max-height 0.24s ease, opacity 0.2s ease, padding-top 0.24s ease;
    }

    header.nav-open .nav-links {
        max-height: 360px;
        padding-top: 0.75rem;
        opacity: 1;
    }

    .nav-links a {
        padding: 0.8rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1.05rem;
        text-align: center;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero-actions,
    .presence-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .download-btn,
    .ghost-btn,
    .discord-btn {
        width: 100%;
        min-height: 56px;
        padding: 0.9rem 1.05rem;
        text-align: center;
    }

    .download-btn.compact {
        width: 100%;
    }

    .download-btn.browser-aware {
        padding-left: 1.05rem;
    }

    h1 {
        font-size: clamp(3.2rem, 17vw, 5rem);
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-head h2,
    .install-card h2,
    .presence-copy h2,
    .developer h2 {
        font-size: 2rem;
    }

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

    .hero-visual {
        min-height: 420px;
    }

    .spin-shell {
        width: 330px;
        height: 330px;
    }

    .logo-core {
        width: 126px;
        height: 126px;
        border-radius: 28px;
    }

    .logo-core img {
        width: 94px;
        height: 94px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-left {
        display: none;
    }
}

@media (hover: none), (pointer: coarse), (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.85rem;
    }

    .logo {
        gap: 0.65rem;
        font-size: 1.35rem;
    }

    .logo-mark {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .logo img {
        width: 31px;
        height: 31px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .hero {
        padding: 2.25rem 0 3.4rem;
    }

    .hero-subtitle {
        font-size: 1.08rem;
        margin-bottom: 1.65rem;
    }

    .hero-visual {
        min-height: 340px;
    }

    .spin-shell {
        width: 280px;
        height: 280px;
    }

    .logo-core {
        width: 108px;
        height: 108px;
        border-radius: 24px;
    }

    .logo-core img {
        width: 80px;
        height: 80px;
    }

    .feature-card,
    .install-card,
    .steps,
    .presence-panel,
    .developer-content {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .stats-strip div {
        padding: 1rem;
    }

    .download-btn,
    .ghost-btn,
    .discord-btn {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
