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

body {
    font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #e2e8f0;
    background: #0d0d14;
    line-height: 1.6;
}

a { text-decoration: none; }

/* ===== HEADER ===== */
header {
    background: rgba(13,13,20,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(168,85,247,0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(90deg, #a855f7, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul a {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
    color: #a855f7;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 90px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,85,247,0.18) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 80% 80%, rgba(34,211,238,0.08) 0%, transparent 60%),
                #0d0d14;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.3);
    color: #c084fc;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 22px;
}

.hero h1 .grad {
    background: linear-gradient(90deg, #a855f7 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 520px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(168,85,247,0.35);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #e2e8f0;
    padding: 13px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s, transform 0.2s;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 40px;
}

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

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #a855f7, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item span {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== SECTION SHARED ===== */
.section-label {
    display: inline-block;
    color: #a855f7;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-sub {
    color: #64748b;
    font-size: 0.95rem;
    max-width: 440px;
    margin: 0 auto;
}

/* ===== CATEGORIES ===== */
.categories-section {
    padding: 80px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.categories-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.cat-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.cat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
}

.cat-card:hover {
    background: rgba(168,85,247,0.1);
    border-color: rgba(168,85,247,0.35);
    transform: translateY(-3px);
}

.cat-card .cat-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.cat-card h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 4px;
}

.cat-card span {
    font-size: 0.75rem;
    color: #475569;
}

/* ===== FEATURED LISTINGS ===== */
.listings-section {
    padding: 80px 24px;
    background: rgba(255,255,255,0.015);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.listings-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.listings-wrap {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.listing-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.listing-card:hover {
    background: rgba(168,85,247,0.07);
    border-color: rgba(168,85,247,0.25);
    transform: translateX(4px);
}

.listing-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.listing-icon.purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.listing-icon.cyan   { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.listing-icon.pink   { background: linear-gradient(135deg, #db2777, #f472b6); }
.listing-icon.green  { background: linear-gradient(135deg, #059669, #34d399); }
.listing-icon.orange { background: linear-gradient(135deg, #d97706, #fbbf24); }
.listing-icon.slate  { background: linear-gradient(135deg, #475569, #94a3b8); }

.listing-body {
    flex: 1;
}

.listing-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.listing-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
}

.listing-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.tag-cyan   { background: rgba(34,211,238,0.12); color: #67e8f9; }
.tag-pink   { background: rgba(244,114,182,0.15); color: #f9a8d4; }
.tag-green  { background: rgba(52,211,153,0.12); color: #6ee7b7; }
.tag-orange { background: rgba(251,191,36,0.12); color: #fcd34d; }
.tag-slate  { background: rgba(148,163,184,0.12); color: #cbd5e1; }

.listing-body p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.listing-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.listing-meta span {
    font-size: 0.78rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 80px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.why-grid {
    max-width: 1000px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.why-item .why-icon {
    width: 52px;
    height: 52px;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.why-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.why-item p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(168,85,247,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    position: relative;
}

.cta-section p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 32px;
    position: relative;
}

/* ===== CONTENT PAGES ===== */
.page-hero {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,85,247,0.2) 0%, transparent 70%),
                #0d0d14;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    padding: 70px 24px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-hero p {
    color: #64748b;
    font-size: 0.95rem;
}

.content-wrap {
    max-width: 820px;
    margin: 60px auto;
    padding: 0 24px 60px;
}

.content-wrap h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 36px 0 12px;
    border-left: 3px solid #a855f7;
    padding-left: 14px;
}

.content-wrap p,
.content-wrap li {
    color: #64748b;
    font-size: 0.96rem;
    margin-bottom: 10px;
    line-height: 1.75;
}

.content-wrap ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.content-wrap a {
    color: #a855f7;
}

/* ===== SUPPORT PAGE ===== */
.support-wrap {
    max-width: 760px;
    margin: 60px auto;
    padding: 0 24px 60px;
}

.support-wrap h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2e8f0;
    margin: 36px 0 12px;
}

.support-wrap p,
.support-wrap li {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.7;
}

.support-wrap ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.support-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 16px;
}

.support-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.support-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 0;
}

.support-card a {
    color: #a855f7;
    font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
    background: #080810;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 24px;
    font-size: 0.85rem;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.footer-logo span {
    background: linear-gradient(90deg, #a855f7, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #475569;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #a855f7;
}

.footer-copy {
    color: #334155;
}
