/* ============================================================
   alsoknown.net — Complete Stylesheet
   Dark theme · Neon green accents · guns.lol inspired
   ============================================================ */

/* ─────────────────────────────────────────────
   1. RESET & CUSTOM PROPERTIES
   ───────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #050505;
    --bg2: #0d0d0d;
    --bg3: #141414;
    --bg4: #1c1c1c;
    --text: #ffffff;
    --text2: #a0a0a0;
    --text3: #555555;
    --border: rgba(255,255,255,0.06);
    --border2: rgba(255,255,255,0.12);
    --accent: #22c55e;
    --accent2: #16a34a;
    --accent-glow: rgba(34,197,94,0.15);
    --danger: #ef4444;
    --radius: 16px;
    --radius-sm: 12px;
    --neon: 0 0 20px rgba(34,197,94,0.15), 0 0 60px rgba(34,197,94,0.05);
    --neon-strong: 0 0 20px rgba(34,197,94,0.25), 0 0 80px rgba(34,197,94,0.1);
    --grad-green: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.03));
    --grad-dark: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

::selection { background: rgba(255,255,255,.9); color: #000; }
::-moz-selection { background: rgba(255,255,255,.9); color: #000; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* ─────────────────────────────────────────────
   2. BASE STYLES
   ───────────────────────────────────────────── */
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: #4ade80; }

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -.02em;
    line-height: 1.2;
}

img, svg {
    display: block;
    max-width: 100%;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, textarea, select {
    font-family: inherit;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.18); }

/* ─────────────────────────────────────────────
   3. BUTTONS
   ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: .82rem;
    border-radius: 10px;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: var(--neon);
}
.btn-primary:hover {
    background: #4ade80;
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--neon-strong);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
}
.btn-discord:hover {
    background: #4752c4;
    color: #fff;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-danger {
    background: rgba(239,68,68,.1);
    color: var(--danger);
    border: 1px solid rgba(239,68,68,.15);
}
.btn-danger:hover {
    background: rgba(239,68,68,.2);
}

.btn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text3);
    cursor: pointer;
    transition: all .2s;
    font-size: .8rem;
}
.btn-icon:hover {
    border-color: var(--text2);
    color: var(--text);
}
.btn-icon.danger:hover {
    border-color: var(--danger);
    color: var(--danger);
}

.btn-premium {
    background: linear-gradient(135deg, #f9a825, #ff6f00);
    color: #000;
}
.btn-premium:hover {
    box-shadow: 0 4px 24px rgba(249,168,37,.3);
    transform: translateY(-2px);
    color: #000;
}

/* ─────────────────────────────────────────────
   4. NAVBAR
   ───────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(13,13,13,.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 100px;
    width: calc(100% - 32px);
    max-width: 700px;
}
.nav-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 8px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -.04em;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    padding: 0 12px;
}
.logo img {
    height: 22px;
    width: auto;
    border-radius: 5px;
}
.auth-logo img {
    height: 24px;
    width: auto;
    border-radius: 5px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-link {
    color: var(--text2);
    font-size: .8rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
    transition: all .2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link:hover {
    color: var(--text);
    background: rgba(255,255,255,.06);
    transform: perspective(400px) rotateX(2deg) translateY(-1px);
}
.nav-link i {
    font-size: .75rem;
    opacity: .7;
}
.nav-link-out {
    color: var(--text3);
}
.nav-link-out:hover {
    color: var(--danger);
    background: rgba(239,68,68,.06);
}
.btn-nav {
    background: var(--accent);
    color: #000;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
}
.btn-nav:hover {
    background: #4ade80;
    color: #000;
    transform: perspective(400px) rotateX(2deg) translateY(-1px);
    box-shadow: 0 0 20px rgba(34,197,94,.2);
}
.nav-mobile-btn {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text2);
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .9rem;
}
.nav-mobile-btn:hover {
    border-color: var(--text2);
    color: var(--text);
}
@media (max-width: 640px) {
    .navbar {
        top: 8px;
        width: calc(100% - 16px);
        border-radius: 20px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(13,13,13,.95);
        backdrop-filter: blur(24px);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 12px;
        flex-direction: column;
        gap: 4px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-link, .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 10px;
    }
    .nav-mobile-btn {
        display: flex;
    }
}

/* ─────────────────────────────────────────────
   5. HERO / LANDING PAGE
   ───────────────────────────────────────────── */
.hero {
    padding: 120px 24px 50px;
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .75rem;
    color: var(--text2);
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 14px;
    letter-spacing: -.04em;
}
.highlight {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(34,197,94,0.3);
}
.hero-desc {
    font-size: .95rem;
    color: var(--text2);
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-desc strong { color: var(--text); }

/* Claim Box */
.claim-box { max-width: 440px; margin: 0 auto 28px; }
.claim-row {
    display: flex;
    align-items: center;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px;
    transition: all .3s;
}
.claim-row:focus-within {
    border-color: var(--accent);
    box-shadow: var(--neon);
}
.claim-pre {
    padding: 0 4px 0 12px;
    color: var(--text3);
    font-size: .82rem;
    font-weight: 500;
    white-space: nowrap;
}
.claim-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: .88rem;
    font-weight: 500;
    font-family: inherit;
    padding: 9px 4px;
}
.claim-input::placeholder { color: var(--text3); }
.claim-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: var(--radius-sm);
    font-size: .82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s;
}
.claim-btn:hover {
    background: #4ade80;
    box-shadow: var(--neon);
}
.claim-feedback {
    margin-top: 8px;
    font-size: .78rem;
    font-weight: 500;
    text-align: left;
    padding-left: 14px;
    min-height: 20px;
}
.claim-feedback.success { color: var(--accent); }
.claim-feedback.error { color: var(--danger); }
.claim-feedback i { margin-right: 5px; }

/* Hero Stats */
.hero-stats { display: flex; justify-content: center; gap: 40px; }
.hs-item { text-align: center; }
.hs-num { display: block; font-size: 1.3rem; font-weight: 700; }
.hs-lbl {
    font-size: .7rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ─────────────────────────────────────────────
   6. FEATURES / PRICING / DISCORD SECTIONS
   ───────────────────────────────────────────── */
.features, .pricing, .discord {
    padding: 60px 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.sec-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: -.02em;
}
.sec-sub {
    text-align: center;
    color: var(--text2);
    margin-bottom: 36px;
    font-size: .85rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}
.f-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.f-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.f-card:hover { border-color: var(--border2); }
.f-card:hover::before { opacity: .5; }
.f-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,.08);
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--accent);
}
.f-card h3 { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.f-card p { font-size: .78rem; color: var(--text2); line-height: 1.6; }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 12px;
    align-items: start;
}
.p-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 22px;
    position: relative;
}
.p-card.popular {
    border-color: rgba(34,197,94,.3);
    background: linear-gradient(180deg, rgba(34,197,94,.04), var(--bg2));
    box-shadow: var(--neon);
}
.p-popular {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 14px;
    background: var(--accent);
    color: #000;
    font-size: .68rem;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.p-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.p-price { margin-bottom: 16px; }
.p-amount { font-size: 1.8rem; font-weight: 800; }
.p-period { font-size: .78rem; color: var(--text2); margin-left: 3px; }
.p-features { list-style: none; margin-bottom: 18px; }
.p-features li {
    padding: 4px 0;
    font-size: .78rem;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 7px;
}
.p-features li i { font-size: .68rem; }
.p-features li i.fa-check { color: var(--accent); }
.p-features li.muted { color: var(--text3); }
.p-features li.muted i { color: var(--text3); }

/* Discord */
.discord-inner {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
}
.discord-text h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.discord-text p { color: var(--text2); margin-bottom: 18px; font-size: .85rem; }

/* ─────────────────────────────────────────────
   7. FOOTER
   ───────────────────────────────────────────── */
.site-footer {
    position: relative;
    padding: 0 28px 32px;
}
.footer-gradient-line {
    height: 1px; margin-bottom: 48px;
    background: linear-gradient(90deg, transparent, rgba(34,197,94,.3), rgba(88,101,242,.2), rgba(34,197,94,.3), transparent);
}
.footer-inner {
    max-width: 1100px; margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}
.footer-logo {
    font-weight: 700; font-size: 1rem; color: var(--text);
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 12px;
}
.footer-logo img {
    height: 22px;
    width: auto;
    border-radius: 5px;
    vertical-align: middle;
}
.footer-tagline { color: var(--text3); font-size: .78rem; line-height: 1.6; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    color: var(--text3); font-size: .85rem; text-decoration: none;
    transition: all .25s;
}
.footer-socials a:hover { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.2); color: var(--accent); transform: translateY(-2px); }
.footer-col h4 {
    font-size: .75rem; font-weight: 600; color: var(--text);
    text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.footer-col a {
    display: block; color: var(--text3); font-size: .8rem; text-decoration: none;
    padding: 4px 0; transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.04);
}
.footer-copy { color: var(--text3); font-size: .72rem; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: var(--text3); font-size: .72rem; text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--text2); }
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand-col { grid-column: 1 / -1; text-align: center; }
    .footer-socials { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col { border-bottom: 1px solid rgba(255,255,255,.03); padding-bottom: 16px; }
}

/* ─────────────────────────────────────────────
   8. MODAL
   ───────────────────────────────────────────── */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.modal.active { opacity: 1; pointer-events: all; }
.modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(4px);
}
.modal-box {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    max-width: 380px;
    width: 90%;
}
.modal-x {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text3);
    font-size: 1.2rem;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.modal-x:hover { background: var(--bg3); color: var(--text); }
.claim-step { display: none; text-align: center; }
.claim-step.active { display: block; }
.modal-icon { font-size: 1.8rem; color: var(--accent); margin-bottom: 10px; }
.claim-step h2 { font-size: 1.05rem; margin-bottom: 4px; }
.claim-step p { color: var(--text2); font-size: .82rem; margin-bottom: 16px; }
.form-grp { margin-bottom: 10px; text-align: left; }
.form-grp label {
    display: block;
    font-size: .78rem;
    font-weight: 500;
    color: var(--text2);
    margin-bottom: 3px;
}
.form-inp {
    width: 100%;
    padding: 9px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: .85rem;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}
.form-inp:focus {
    border-color: var(--accent);
    box-shadow: var(--neon);
}
.form-inp::placeholder { color: var(--text3); }
.form-foot { margin-top: 10px; font-size: .78rem; color: var(--text3); }
.form-foot a { color: var(--accent); font-weight: 500; }
.success-icon { font-size: 2.4rem; color: var(--accent); margin-bottom: 10px; animation: pop .4s ease-out; }
@keyframes pop { 0% { transform: scale(0); } 50% { transform: scale(1.15); } 100% { transform: scale(1); } }
.modal-actions { display: flex; gap: 7px; justify-content: center; margin-top: 16px; }

/* ─────────────────────────────────────────────
   9. AUTH PAGES (Login / Register)
   ───────────────────────────────────────────── */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    background-color: var(--bg);
    position: relative;
}
.auth-page::before {
    content: ''; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none; z-index: 0;
}
.auth-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(34,197,94,.06) 0%, transparent 60%);
    pointer-events: none;
}
.auth-card {
    background: linear-gradient(180deg, rgba(13,13,13,.95), rgba(10,10,10,.98));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 28px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.auth-card h1 { font-size: 1.3rem; margin-bottom: 5px; letter-spacing: -.02em; }
.auth-card p { color: var(--text2); margin-bottom: 22px; font-size: .85rem; }
.auth-error {
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.15);
    color: var(--danger);
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    font-size: .8rem;
}
.auth-footer { margin-top: 18px; font-size: .8rem; color: var(--text3); }
.auth-logo {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.auth-logo img { vertical-align: middle; }
.auth-logo i { color: var(--accent); text-shadow: 0 0 20px rgba(34,197,94,0.4); }

/* ─────────────────────────────────────────────
   10. PROFILE PAGE
   ───────────────────────────────────────────── */
.profile-page {
    min-height: 100vh;
    background: var(--bg);
    scroll-snap-type: y mandatory;
    overflow-y: auto;
}

/* Background layer */
.profile-bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.profile-bg-layer img,
.profile-bg-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-bg-layer .bg-solid,
.profile-bg-layer .bg-gradient,
.profile-bg-layer .bg-default {
    width: 100%;
    height: 100%;
}
.profile-bg-layer .bg-default { background: var(--bg); }

/* Main section — centered card */
.profile-main {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.profile-card-wrapper {
    width: 100%;
    max-width: 420px;
    perspective: 1200px;
}

.profile-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 36px 28px 24px;
    text-align: center;
    position: relative;
    transition: transform .15s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}
.profile-card.card-3d {
    cursor: default;
}

/* Avatar */
.pf-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.pf-avatar.ring {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(34,197,94,0.2);
}
.pf-avatar-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 700;
    color: #000;
}

/* Badges */
.pf-badges { display: flex; justify-content: center; gap: 5px; margin-bottom: 10px; }
.pf-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    border: 2px solid rgba(0,0,0,.2);
}

/* Name with hover pill */
.pf-name-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 4px;
}
.pf-name {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -.02em;
}
.pf-pill {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: white;
    font-size: .7rem;
    padding: 4px 12px;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
    white-space: nowrap;
    margin-top: 6px;
    z-index: 5;
}
.pf-name-wrap:hover .pf-pill {
    opacity: 1;
}

/* Location with hover pill */
.pf-location-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}
.pf-location {
    font-size: .78rem;
    color: var(--text3);
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pf-location-wrap:hover .pf-pill {
    opacity: 1;
}

/* UUID */
.pf-uuid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 100px;
    font-size: .7rem;
    font-family: 'SF Mono','Fira Code',monospace;
    color: var(--text3);
    margin-bottom: 12px;
}
.pf-uuid i { color: var(--accent); font-size: .6rem; }
.pf-uuid-copy {
    background: none;
    border: none;
    color: var(--text3);
    cursor: pointer;
    font-size: .6rem;
    padding: 0 2px;
}
.pf-uuid-copy:hover { color: var(--accent); }

/* Bio */
.pf-bio {
    font-size: .82rem;
    color: var(--text2);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto 14px;
}

/* Divider */
.pf-divider {
    height: 1px;
    background: rgba(255,255,255,.05);
    margin: 12px 0;
}

/* Social links on profile */
.pf-socials { display: flex; flex-direction: column; gap: 6px; }
.pf-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: all .25s;
    text-decoration: none;
}
.pf-social:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.1);
    color: var(--text);
    transform: translateY(-1px);
}
.pf-social .social-icon-wrap {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--accent);
    background: rgba(34,197,94,.08);
    flex-shrink: 0;
    overflow: hidden;
}
.pf-social .social-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}
.pf-social-name { font-weight: 500; font-size: .8rem; min-width: 55px; }
.pf-social-user { flex: 1; text-align: left; color: var(--text3); font-size: .75rem; }
.pf-social-arrow {
    font-size: .6rem;
    color: var(--text3);
    transition: transform .2s;
}
.pf-social:hover .pf-social-arrow {
    transform: translateX(2px);
    color: var(--text2);
}

/* Discord card on profile */
.pf-discord-card {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pf-dc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.pf-dc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pf-dc-info { flex: 1; min-width: 0; }
.pf-dc-name { font-weight: 600; font-size: .82rem; }
.pf-dc-status {
    font-size: .72rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 5px;
}
.pf-dc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #747f8d;
    flex-shrink: 0;
}
.pf-dc-dot.online { background: #23a55a; }
.pf-dc-badges {
    display: flex;
    gap: 3px;
    flex-shrink: 0;
}

/* Music player */
.pf-music {
    background: rgba(0,0,0,.3);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: var(--radius-sm);
    padding: 12px;
}
.pf-music-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.pf-music-cover {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.pf-music-cover img { width: 100%; height: 100%; object-fit: cover; }
.pf-music-cover-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,.08);
    color: var(--accent);
    font-size: .75rem;
}
.pf-music-meta { flex: 1; text-align: left; min-width: 0; }
.pf-music-title {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pf-music-artist {
    display: block;
    font-size: .7rem;
    color: var(--text3);
}
.pf-music-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pf-play-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: .65rem;
    transition: all .2s;
}
.pf-play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--neon);
}
.pf-progress {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}
.pf-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 2px;
    transition: width .1s linear;
}
.pf-music-time {
    font-size: .6rem;
    color: var(--text3);
    min-width: 32px;
    text-align: right;
    font-family: monospace;
}

/* Section navigation dots */
.pf-section-dots {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 50;
}
.pf-section-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    transition: all .3s;
}
.pf-section-dot.active {
    background: #fff;
    box-shadow: 0 0 8px rgba(255,255,255,.3);
}

/* Full-screen profile sections */
.pf-sections-wrap {
    position: relative;
    z-index: 10;
}
.pf-section-full {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.pf-section-inner {
    width: 100%;
    max-width: 500px;
}
.pf-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -.02em;
    text-align: center;
}
.pf-section-content {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}
.pf-section-content p {
    font-size: .85rem;
    color: var(--text2);
    line-height: 1.7;
}

/* Section cards grid */
.pf-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.pf-link-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    padding: 18px;
    text-decoration: none;
    color: var(--text);
    transition: all .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.pf-link-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    transform: translateY(-3px);
    color: var(--text);
}
.pf-link-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    overflow: hidden;
    background: rgba(34,197,94,.08);
    color: var(--accent);
}
.pf-link-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.pf-link-card-title { font-size: .85rem; font-weight: 600; }
.pf-link-card-desc { font-size: .75rem; color: var(--text3); line-height: 1.4; }

/* Views counter — fixed bottom-left */
.pf-views {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 50;
    background: rgba(0,0,0,.4);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-size: .72rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
}
.pf-views i { font-size: .65rem; }

.pf-views-corner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 50;
    font-size: .72rem;
    color: var(--text3);
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,.4);
    padding: 5px 10px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
.pf-views-corner i { font-size: .65rem; }

/* Views with hover pill */
.pf-views-wrap {
    position: relative;
}
.pf-views-pill {
    position: absolute;
    bottom: 100%;
    top: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: white;
    font-size: .7rem;
    padding: 4px 12px;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
    white-space: nowrap;
    z-index: 5;
}
.pf-views-wrap:hover .pf-views-pill {
    opacity: 1;
}

/* Profile footer */
.profile-footer {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    color: var(--text3);
    font-size: .72rem;
}
.profile-footer a { color: var(--text2); }
.profile-footer a:hover { color: var(--accent); }

/* ─────────────────────────────────────────────
   11. ERROR PAGE
   ───────────────────────────────────────────── */
.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.error-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.error-icon { font-size: 2.2rem; color: var(--text3); margin-bottom: 12px; }
.error-card h1 { font-size: 1.15rem; margin-bottom: 5px; }
.error-card p { color: var(--text2); margin-bottom: 18px; font-size: .85rem; }

/* ─────────────────────────────────────────────
   12. TOAST
   ───────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 18px;
    font-size: .8rem;
    font-weight: 500;
    z-index: 999;
    animation: toastIn .3s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
@keyframes toastIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─────────────────────────────────────────────
   13. FORM ELEMENTS
   ───────────────────────────────────────────── */
.form-group { margin-bottom: 16px; text-align: left; }
.form-group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0,0,0,.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: .9rem;
    font-family: inherit;
    outline: none;
    transition: all .2s;
}
.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(34,197,94,.08);
}
.form-input::placeholder { color: var(--text3); }
textarea.form-input { resize: vertical; min-height: 70px; }
select.form-input { cursor: pointer; }

/* ─────────────────────────────────────────────
   14. DASHBOARD
   ───────────────────────────────────────────── */
.dash-page {
    min-height: 100vh;
    background: var(--bg);
}

.dash-header {
    background: rgba(13,13,13,.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}
.dash-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.dash-logo {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    letter-spacing: -.03em;
    text-decoration: none;
}
.dash-logo i {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(34,197,94,.3);
}
.dash-user { display: flex; align-items: center; gap: 10px; }
.dash-user-info { text-align: right; }
.dash-user-name { font-size: .82rem; font-weight: 600; }
.dash-user-sub { font-size: .7rem; color: var(--text3); }
.dash-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .75rem;
    color: #000;
}

.dash-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    min-height: calc(100vh - 56px);
}

/* Preview bar */
.preview-bar {
    background: linear-gradient(135deg, rgba(34,197,94,.06), rgba(34,197,94,.02));
    border: 1px solid rgba(34,197,94,.1);
    border-radius: var(--radius);
    padding: 10px 18px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.preview-bar span { font-size: .82rem; color: var(--text2); }
.preview-bar strong { color: var(--text); }

/* Dashboard content */
.dash-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -.02em;
}
.dash-content .subtitle {
    color: var(--text2);
    font-size: .82rem;
    margin-bottom: 22px;
}
.dash-panel { display: none; }
.dash-panel.active { display: block; }

/* Form cards */
.form-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 14px;
    transition: border-color .25s;
}
.form-card:hover { border-color: var(--border2); }
.form-card h3 { font-size: .9rem; font-weight: 600; margin-bottom: 2px; }
.form-card .card-sub { font-size: .75rem; color: var(--text3); margin-bottom: 14px; }
.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.form-row .form-group { flex: 1; margin-bottom: 0; }
.form-label {
    display: block;
    font-size: .82rem;
    color: var(--text2);
    margin-bottom: 6px;
    font-weight: 600;
}
.select-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(0,0,0,.3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: inherit;
    font-size: .85rem;
    outline: none;
    cursor: pointer;
    transition: border-color .2s;
}
.select-input:focus { border-color: var(--accent); }

/* Toggle */
.toggle-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.toggle-group:last-child { border-bottom: none; }
.toggle-info h4 { font-size: .85rem; font-weight: 600; }
.toggle-info p { font-size: .75rem; color: var(--text3); }
.toggle {
    position: relative;
    width: 40px;
    height: 22px;
    cursor: pointer;
    flex-shrink: 0;
}
.toggle input { display: none; }
.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.08);
    border-radius: 11px;
    transition: .3s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--text3);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: .3s;
}
.toggle input:checked + .toggle-slider { background: var(--accent); }
.toggle input:checked + .toggle-slider::before {
    transform: translateX(18px);
    background: #000;
}

/* Social items (dashboard) */
.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: border-color .2s;
}
.social-item:hover { border-color: rgba(255,255,255,.1); }
.social-item .social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34,197,94,.1);
    border-radius: 8px;
    color: var(--accent);
    font-size: .85rem;
    flex-shrink: 0;
    overflow: hidden;
}
.social-item .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}
.social-item .social-info { flex: 1; min-width: 0; }
.social-item .social-info .s-platform { font-size: .85rem; font-weight: 600; display: block; }
.social-item .social-info .s-username { font-size: .78rem; color: var(--text3); }
.social-item .social-actions { display: flex; gap: 6px; }

/* File upload */
.file-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 36px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}
.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--accent);
    background: var(--accent-glow);
}
.file-upload-area.dragover {
    transform: scale(1.01);
}
.file-upload-area i { font-size: 1.9rem; color: var(--text3); margin-bottom: 10px; display: block; }
.file-upload-area p { font-size: .88rem; color: var(--text3); }
.file-upload-area .file-types { font-size: .75rem; margin-top: 4px; }
.file-upload-area .upload-preview {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(34,197,94,.06);
    border: 1px solid rgba(34,197,94,.12);
    border-radius: var(--radius-sm);
    font-size: .78rem;
    color: var(--accent);
}
.file-upload-area .upload-preview img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}
.upload-progress {
    margin-top: 10px;
    height: 4px;
    background: var(--bg4);
    border-radius: 2px;
    overflow: hidden;
    display: none;
}
.upload-progress .bar {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width .3s;
    width: 0%;
}
.upload-progress.active { display: block; }

/* Color row */
.color-row { display: flex; gap: 8px; align-items: center; }
.color-swatch {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 2px solid var(--border);
    overflow: hidden;
    position: relative;
}
.color-swatch input[type="color"] {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 46px;
    height: 46px;
    border: none;
    cursor: pointer;
}

/* Style options */
.style-options { display: flex; gap: 6px; flex-wrap: wrap; }
.style-opt {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: none;
    color: var(--text3);
    cursor: pointer;
    font-family: inherit;
    font-size: .75rem;
    transition: all .2s;
}
.style-opt:hover { border-color: var(--text2); color: var(--text); }
.style-opt.active { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

/* Upgrade card */
.upgrade-card {
    background: linear-gradient(135deg, rgba(249,168,37,.05), rgba(255,111,0,.02));
    border: 1px solid rgba(249,168,37,.15);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}
.upgrade-card i { font-size: 2rem; color: #f9a825; margin-bottom: 10px; }
.upgrade-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.upgrade-card p { color: var(--text2); margin-bottom: 18px; font-size: .85rem; }
.upgrade-card .price { font-size: 2rem; font-weight: 800; color: #f9a825; margin-bottom: 2px; }
.upgrade-card .price-label { color: var(--text3); font-size: .78rem; margin-bottom: 18px; }

/* ─────────────────────────────────────────────
   15. RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero { padding: 100px 16px 40px; }
    .hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
    .hero-stats { gap: 24px; }
    .claim-row { flex-direction: column; gap: 0; padding: 6px; }
    .claim-pre { padding: 6px 0 0 12px; }
    .claim-input { width: 100%; padding: 10px 12px; }
    .claim-btn { width: 100%; justify-content: center; }

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

    .dash-content { padding: 18px 0; }
    .form-row { flex-direction: column; gap: 0; }

    .pf-section-dots { display: none; }
    .profile-card-wrapper { max-width: 340px; }

    .nav-inner { padding: 0 16px; }
    .dash-body { padding: 16px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.5rem; }
    .hero-desc { font-size: .88rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────── */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
