* {
    box-sizing: border-box;
}

:root {
    --pink: #ffb6d9;
    --pink2: #ffd6e8;
    --hot: #ff7fbd;
    --dark: #0f0f0f;
    --panel: rgba(0, 0, 0, 0.84);
    --line: rgba(255, 255, 255, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 86% 8%, rgba(255, 182, 217, 0.22), transparent 28%),
        radial-gradient(circle at 8% 35%, rgba(255, 182, 217, 0.13), transparent 25%),
        #020202;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
    z-index: -1;
}

.page {
    width: min(1650px, calc(100% - 42px));
    margin: 18px auto 32px;
}

/* NAV */
.navbar {
    height: 68px;
    padding: 0 32px;
    background: rgba(3, 3, 3, 0.88);
    border: 1px solid var(--line);
    border-radius: 16px 16px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 38px rgba(255, 182, 217, 0.12);
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand img {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 0 18px rgba(255, 182, 217, 0.85);
}

.brand span {
    color: var(--pink);
    font-family: Georgia, serif;
    font-size: 40px;
    font-style: italic;
    text-shadow: 0 0 18px rgba(255, 182, 217, 0.7);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 46px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: 0.25s;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--pink);
    text-decoration: underline;
    text-underline-offset: 6px;
}

.invite-nav {
    color: black !important;
    background: linear-gradient(135deg, #ff7fbd, #ffc6e1);
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none !important;
    box-shadow: 0 0 25px rgba(255, 127, 189, 0.55);
}

/* HERO */
.hero {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 4px 4px 18px 18px;
    background: #030303;
    display: grid;
    grid-template-columns: 45% 4% 51%;
    align-items: center;
    padding: 45px 60px;
}

.hero-left {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right img {
    width: 720px;
    max-width: 100%;
    filter:
        drop-shadow(0 0 20px #ff8fc8)
        drop-shadow(0 0 45px rgba(255,182,217,.6));
}

.hero-divider {
    height: 280px;
    width: 1px;
    background: linear-gradient(transparent, #ff8fc8, transparent);
    margin: auto;
    position: relative;
}

.hero-divider span {
    position: absolute;
    top: 50%;
    left: -12px;
    color: #ffb6d9;
    background: #030303;
    padding: 4px;
}

.hero-decor {
    position: absolute;
    left: 35px;
    top: 50px;
    bottom: 50px;
    color: #ff8fc8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-shadow: 0 0 15px #ff8fc8;
}

.tagline {
    margin: 18px auto;
    max-width: 420px;
    color: #f4f4f4;
    font-size: 20px;
    line-height: 1.55;
    text-align: center;
    display: block;
}

.icon-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.hero-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff8fc8;
    box-shadow:
        0 0 15px #ff8fc8,
        0 0 40px rgba(255,182,217,.8);
}

.label {
    margin: 12px 0 0;
    color: var(--pink);
    letter-spacing: 18px;
    font-size: 22px;
    font-weight: 900;
}

.divider {
    width: 475px;
    max-width: 90%;
    margin: 18px auto;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--pink);
}

.divider span {
    height: 1px;
    flex: 1;
    background: rgba(255, 182, 217, 0.45);
}

.divider b {
    font-size: 22px;
    text-shadow: 0 0 10px var(--pink);
}

.heart {
    margin: 4px 0 8px;
    color: var(--hot);
    font-size: 26px;
    text-shadow: 0 0 15px var(--hot);
}

.hero-actions {
    margin-top: 6px;
}

.btn {
    display: inline-block;
    margin: 8px 12px;
    padding: 16px 34px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.25s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn.primary {
    color: black;
    background: linear-gradient(135deg, #ff7fbd, #ffc5df);
    box-shadow: 0 0 25px rgba(255, 127, 189, 0.5);
}

.btn.outline {
    color: var(--pink);
    border: 2px solid var(--pink);
    background: rgba(0, 0, 0, 0.42);
}

/* PANELS */
main {
    margin-top: 16px;
}

.top-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 0.75fr 1.6fr;
    gap: 10px;
}

.panel,
.mini-panel,
.stat-card,
.system-card,
.profile-card-demo {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 0 25px rgba(255, 182, 217, 0.05);
}

.panel h2,
.mini-panel h3 {
    margin: 0 0 18px;
    color: var(--hot);
    letter-spacing: 2px;
    font-size: 16px;
}

.icon-panel,
.alt-panel {
    text-align: center;
}

.icon-panel img {
    width: 200px;
    height: 200px;
    max-width: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 32px rgba(255, 127, 189, 0.5);
}

.alt-panel img {
    width: 220px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 14px;
    opacity: 0.95;
}

.swatch {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 13px 0;
    font-size: 18px;
}

.swatch i {
    width: 42px;
    height: 42px;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.24);
}

.palette-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-card {
    min-height: 86px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 10px;
    background: rgba(255,255,255,0.045);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--hot);
    font-size: 34px;
    text-decoration: none;
    transition: 0.25s;
}

.feature-card:hover {
    border-color: var(--pink);
    box-shadow: 0 0 20px rgba(255, 182, 217, 0.18);
    transform: translateY(-3px);
}

.feature-card span {
    margin-top: 8px;
    color: white;
    font-size: 15px;
    font-weight: 800;
}

/* BOTTOM */
.bottom-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 18px;
}

.presence {
    display: flex;
    align-items: center;
    gap: 18px;
}

.presence img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.presence p {
    margin: 7px 0;
    font-size: 20px;
}

.presence b {
    background: var(--hot);
    color: white;
    border-radius: 7px;
    padding: 3px 8px;
    font-size: 13px;
}

.playing span {
    color: var(--hot);
    font-weight: 900;
}

.quote {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 28px;
    line-height: 1.4;
    color: white;
}

.note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.note p {
    margin: 0;
    color: #eee;
    font-size: 17px;
    line-height: 1.45;
}

.cat-face {
    flex: 0 0 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--hot);
    color: var(--hot);
    display: grid;
    place-items: center;
    font-size: 46px;
    box-shadow: 0 0 25px rgba(255, 127, 189, 0.45);
}

/* EXTRA SECTIONS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    text-align: center;
}

.stat-card h2 {
    margin: 0;
    font-size: 42px;
    color: var(--pink);
    text-shadow: 0 0 15px rgba(255,182,217,.5);
}

.stat-card p {
    margin-top: 8px;
    color: #ddd;
}

.section-head {
    text-align: center;
    padding: 40px 20px;
}

.section-head h1 {
    font-size: 42px;
    margin: 15px 0;
}

.section-head p {
    max-width: 800px;
    margin: auto;
    color: #ddd;
    line-height: 1.6;
}

.systems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.system-card h3 {
    color: var(--pink);
    margin-top: 0;
}

.system-card p {
    color: #ddd;
    line-height: 1.6;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.command-list p {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 12px 0;
    margin: 0;
}

.command-list b {
    color: var(--pink);
}

.command-list span {
    color: #eee;
}

.placeholder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.placeholder-tags span {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--pink);
}

.placeholder-example {
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.profile-showcase {
    margin-top: 20px;
}

.profile-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.profile-top img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

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

.profile-demo-grid p {
    background: rgba(255,255,255,.03);
    border-radius: 10px;
    padding: 12px;
    margin: 0;
}

.profile-demo-grid span {
    display: block;
    margin-top: 6px;
    color: var(--pink);
}

.profile-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-badges span {
    background: rgba(255,182,217,.08);
    border: 1px solid rgba(255,182,217,.2);
    border-radius: 999px;
    padding: 8px 14px;
}

/* DOCS */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.docs-grid .panel {
    background: #161616;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 24px;
}

.docs-grid h2 {
    color: #ffb6d9;
    margin-bottom: 12px;
}

.docs-grid p {
    line-height: 1.9;
    color: #e8e8e8;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .nav-links {
        gap: 22px;
    }

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

    .top-grid,
    .bottom-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-panel {
        grid-column: span 2;
    }

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

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

@media (max-width: 1000px) {
    .stats-grid,
    .systems-grid,
    .preview-grid {
        grid-template-columns: 1fr;
    }

    .profile-demo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {

    body {
        overflow-x: hidden;
    }

    .page {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 18px;
        height: auto;
        border-radius: 0;
    }

    .brand {
        justify-content: center;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .hero,
    .inner-hero {
        padding: 35px 22px;
        border-radius: 0;
        min-height: auto;
    }

    .top-grid,
    .bottom-grid,
    .systems-grid,
    .stats-grid,
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
    }

    .feature-panel {
        grid-column: auto;
    }

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

    .panel,
    .mini-panel,
    .system-card,
    .stat-card,
    .profile-card-demo {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .icon-panel img,
    .invite-icon {
        width: 190px;
        height: 190px;
        display: block;
        margin: 20px auto;
        object-fit: cover;
    }

    .tagline {
        width: 100%;
        max-width: 100%;
        text-align: center;
        font-size: 17px;
        line-height: 1.6;
        overflow-wrap: break-word;
    }

    .btn {
        display: block;
        width: 90%;
        max-width: 320px;
        margin: 10px auto;
        text-align: center;
    }

    .command-list p {
        flex-direction: column;
        gap: 5px;
    }

    .note {
        flex-direction: column;
        text-align: center;
    }

    .setup-list p {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 15px 0;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .setup-list b {
        width: 28px;
        height: 28px;
        border: 2px solid var(--hot);
        border-radius: 50%;
        display: grid;
        place-items: center;
        color: var(--hot);
        font-size: 15px;
    }

    .setup-list span {
        color: white;
        font-size: 18px;
    }

    .quote {
        font-size: 34px;
    }

    h1,
    .section-head h1 {
        font-size: 44px;
    }

}


