* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0f1117;
    --surface: #16181f;
    --surface2: #1e2029;
    --surface3: #252833;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #e8e9ef;
    --text-sec: #9a9bab;
    --text-muted: #5c5e72;
    --accent: #5865f2;
    --accent2: #7289da;
    --accent-soft: rgba(88, 101, 242, 0.12);
    --accent-border: rgba(88, 101, 242, 0.3);
    --accent-glow: rgba(88, 101, 242, 0.25);
    --green: #57f287;
    --green-soft: rgba(87, 242, 135, 0.1);
    --yellow: #fee75c;
    --nitro: #f47fff;
    --nitro-soft: rgba(244, 127, 255, 0.1);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 17, 23, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-logo-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.nav-logo-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-sec);
    text-decoration: none;
    font-size: 13px;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
    background: var(--surface2);
    color: var(--text);
}

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 0.4rem 1rem !important;
    font-weight: 500 !important;
    border-radius: 7px !important;
}

.nav-cta:hover {
    background: #4752c4 !important;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    padding: 7rem 2rem 5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(88, 101, 242, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: #a5aaff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: clamp(32px, 6vw, 58px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero h1 .accent-word {
    background: linear-gradient(135deg, #5865f2, #a5aaff, #7289da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: var(--text-sec);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    border-radius: 9px;
    transition: background 0.15s, transform 0.15s;
}

.btn-primary:hover {
    background: #4752c4;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface2);
    border: 1px solid var(--border-strong);
    color: var(--text-sec);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0.7rem 1.4rem;
    border-radius: 9px;
    transition: all 0.15s;
}

.btn-secondary:hover {
    border-color: var(--accent-border);
    color: var(--text);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── PREVIEW MOCKUP ─── */
.preview-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.preview-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.preview-browser {
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.browser-bar {
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.bd-red {
    background: #ff5f57;
}

.bd-yellow {
    background: #febc2e;
}

.bd-green {
    background: #28c840;
}

.browser-url {
    flex: 1;
    background: var(--surface3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-url::before {
    content: '🔒';
    font-size: 10px;
}

/* Discord mockup inside browser */
.discord-mock {
    display: flex;
    height: 380px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* glassmorphism overlay glow */
.discord-mock::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 30%;
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(88, 101, 242, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.dm-sidebar-left {
    width: 72px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(0px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 8px;
    flex-shrink: 0;
    z-index: 2;
}

.dm-server-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-radius 0.2s;
    font-size: 18px;
    flex-shrink: 0;
}

.dm-server-icon:hover {
    border-radius: 14px;
}

.dm-server-icon.active {
    border-radius: 14px;
}

.dm-server-icon.nitro {
    background: linear-gradient(135deg, #f47fff, #8b5cf6);
}

.dm-server-icon.green {
    background: #3ba55d;
}

.dm-server-icon.orange {
    background: #ed7732;
}

.dm-server-icon.img {
    background: none;
    overflow: hidden;
}

.dm-server-icon.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.dm-sep {
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0;
}

.dm-channel-list {
    width: 220px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(0px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 8px;
    flex-shrink: 0;
    z-index: 2;
    overflow: hidden;
}

.dm-server-name {
    font-size: 13px;
    font-weight: 700;
    color: #e8e9ef;
    padding: 4px 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.dm-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
    margin-bottom: 2px;
}

.dm-ch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.1s, color 0.1s;
}

.dm-ch:hover,
.dm-ch.active {
    background: rgba(255, 255, 255, 0.07);
    color: #dcddde;
}

.dm-ch.active {
    color: white;
}

.dm-ch-hash {
    font-size: 15px;
    opacity: 0.5;
}

.dm-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0, 0.75);
    backdrop-filter: blur(0px);
    z-index: 2;
    min-width: 0;
}

.dm-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.dm-header-hash {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
}

.dm-header-name {
    font-size: 14px;
    font-weight: 600;
    color: #e8e9ef;
}

.dm-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.dm-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.dm-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.dm-msg-content {
    min-width: 0;
}

.dm-username {
    font-size: 13px;
    font-weight: 600;
    color: #e8e9ef;
    margin-bottom: 2px;
}

.dm-username .role-badge {
    display: inline-block;
    background: rgba(88, 101, 242, 0.2);
    color: #a5aaff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
}

.dm-text {
    font-size: 13px;
    color: #dcddde;
    line-height: 1.5;
}

.dm-glass-panel {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    z-index: 10;
    min-width: 180px;
}

.dm-glass-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 8px;
}

.dm-glass-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    gap: 10px;
}

.dm-glass-row:last-child {
    margin-bottom: 0;
}

.dm-slider {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

.dm-slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}

.dm-theme-dots {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.dm-theme-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
}

/* Right panel with theme switcher */
.dm-right-panel {
    width: 200px;
    background: rgba(0,0,0, 0.85);
    backdrop-filter: blur(0px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 10px;
    flex-shrink: 0;
    z-index: 2;
    overflow: hidden;
}

.dm-panel-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 10px;
}

.dm-preset {
    padding: 8px 10px;
    border-radius: 7px;
    margin-bottom: 5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s;
}

.dm-preset:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.dm-preset.active {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.dm-preset-name {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.dm-preset-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1px;
}

.dm-preset-swatch {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.swatch {
    width: 12px;
    height: 5px;
    border-radius: 3px;
}

/* ─── SECTION WRAPPER ─── */
.section {
    max-width: 960px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 40px;
    height: 1px;
    background: var(--accent-border);
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 750;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 16px;
    color: var(--text-sec);
    max-width: 540px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* ─── FEATURES GRID ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 101, 242, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.feature-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-2px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 1rem;
}

.feature-icon.purple {
    background: rgba(88, 101, 242, 0.15);
}

.feature-icon.pink {
    background: rgba(244, 127, 255, 0.12);
}

.feature-icon.green {
    background: rgba(87, 242, 135, 0.1);
}

.feature-icon.blue {
    background: rgba(0, 168, 255, 0.12);
}

.feature-icon.yellow {
    background: rgba(254, 231, 92, 0.1);
}

.feature-icon.orange {
    background: rgba(237, 119, 50, 0.12);
}

.feature-title {
    font-size: 15px;
    font-weight: 650;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.6;
}

.feature-tag {
    display: inline-flex;
    margin-top: 0.75rem;
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: #a5aaff;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ─── SCREENSHOT CAROUSEL ─── */
.screenshots-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
}

.screenshots-inner {
    max-width: 960px;
    margin: 0 auto;
}

.screenshots-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--surface2);
    border: 1px solid var(--border);
    color: var(--text-sec);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.15s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-soft);
    border-color: var(--accent-border);
    color: #a5aaff;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.screenshot-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface2);
    transition: border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.screenshot-card:hover {
    border-color: var(--accent-border);
    transform: scale(1.02);
}

.screenshot-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--surface3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

/* Placeholder discord mockup for images */
.screenshot-img .mock-discord {
    position: absolute;
    inset: 0;
    display: flex;
}

.mock-sb {
    width: 48px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.4);
}

.mock-ch {
    width: 120px;
    flex-shrink: 0;
}

.mock-main {
    flex: 1;
}

.screenshot-cap {
    padding: 10px 12px;
    font-size: 12px;
    color: var(--text-sec);
    font-weight: 500;
    border-top: 1px solid var(--border);
}

/* ─── HOW IT WORKS ─── */
.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.how-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
}

.how-num {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(88, 101, 242, 0.90);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.how-title {
    font-size: 15px;
    font-weight: 650;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.how-desc {
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.6;
}

/* ─── NITRO THEMES ─── */
.nitro-section {
    padding: 5rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.nitro-themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.nitro-theme-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.nitro-theme-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
}

.nitro-theme-preview {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
    overflow: hidden;
}

.nitro-theme-name {
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-sec);
}

.nitro-theme-sub {
    padding: 0 10px 8px;
    font-size: 11px;
    color: var(--text-muted);
}

/* ─── GLASSMORPHISM HIGHLIGHT ─── */
.glass-section {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.06) 0%, rgba(114, 137, 218, 0.04) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
}

.glass-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.glass-demo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.glass-demo::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 40%, rgba(88, 101, 242, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(244, 127, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.glass-panel-demo {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.glass-panel-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.glass-slider-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.glass-slider-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    width: 80px;
    flex-shrink: 0;
}

.glass-slider-track {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    position: relative;
}

.glass-slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), #a5aaff);
}

.glass-slider-thumb {
    position: absolute;
    top: 50%;
    right: -1px;
    transform: translate(50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 0 2px var(--accent);
}

.glass-val {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    width: 30px;
    text-align: right;
}

/* ─── DEVELOPER SECTION ─── */
.dev-section {
    padding: 5rem 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.dev-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dev-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.dev-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dev-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dev-icon img {
    width: 20px;
    height: 20px;
}

.dev-card-title {
    font-size: 15px;
    font-weight: 650;
    color: var(--text);
}

.dev-card-desc {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.6;
}

.dev-card-link {
    font-size: 12px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

/* Code block */
.code-block {
    background: #0a0b10;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #a5aaff;
    overflow-x: auto;
    margin-top: 1rem;
}

.code-block .c-keyword {
    color: #f47fff;
}

.code-block .c-string {
    color: #57f287;
}

.code-block .c-comment {
    color: var(--text-muted);
}

/* ─── CONTACT (same as privacy page) ─── */
.contact-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 5rem 2rem;
}

.contact-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
    text-align: left;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-sec);
    font-size: 13.5px;
    transition: all 0.15s;
}

.contact-card:hover {
    border-color: var(--border-strong);
    color: var(--text);
    background: var(--surface);
}

.contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 500;
    color: var(--text);
    font-size: 13px;
}

.contact-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.discord-badges {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-left: auto;
}

.discord-badges img {
    width: 25px;
    height: 25px;
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    max-width: 860px;
    margin: 0 auto;
}

footer a {
    color: var(--text-sec);
    text-decoration: none;
}

footer a:hover {
    color: var(--text);
}

/* ─── MISC ─── */
.divider {
    height: 1px;
    background: var(--border);
    max-width: 960px;
    margin: 0 auto;
}

.highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--nitro-soft);
    border: 1px solid rgba(244, 127, 255, 0.2);
    color: #f47fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 6px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
    }

    .preview-wrap {
        padding: 0 1rem 3rem;
    }

    .discord-mock {
        height: 260px;
    }

    .dm-right-panel {
        display: none;
    }

    .dm-channel-list {
        width: 160px;
    }

    .glass-inner {
        grid-template-columns: 1fr;
    }

    .dev-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .glass-section {
        padding: 3rem 1.5rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}


/* ─── LIGHTBOX ─── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lightbox-caption {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.16);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1001;
  line-height: 1;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.18);
}

.lightbox-nav.left  { left: 20px; }
.lightbox-nav.right { right: 20px; }

/* screenshot cards clickable */
.screenshot-card { cursor: pointer; }

/* nitro theme cards clickable */
.nitro-theme-card { cursor: pointer; }

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--surface3);
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--surface3) var(--bg);
}
/* ==========================================================
   Responsive Discord Preview
   ========================================================== */

/* Tablet */
@media (max-width: 992px) {

.discord-mock {
  height: 320px;
}

.dm-right-panel {
  display: none;
}

.preview-browser {
  border-radius: 18px;
}
  .browser-url {
     font-size: 11px;
  }
}
/* Mobile */
@media (max-width:768px) {

    .preview-wrap {
        padding: 0 1rem 3rem;
    }

    .discord-mock {
        height: 280px;
    }

    .dm-right-panel {
        display: none;
    }

    .dm-channel-list {
        width: 170px;
    }

    .dm-server-name {
        font-size: 12px;
    }

    .dm-cat {
        font-size: 9px;
    }

    .dm-ch {
        font-size: 12px;
        padding: 4px 6px;
    }

    .dm-header {
        padding: 10px 12px;
    }

    .dm-header-name {
        font-size: 13px;
    }

    .dm-messages {
        padding: 12px;
        gap: 10px;
    }

    .dm-avatar {
        width: 30px;
        height: 30px;
    }

    .dm-username {
        font-size: 12px;
    }

    .dm-text {
        font-size: 12px;
        line-height: 1.45;
    }

    .browser-bar {
        padding: 8px 12px;
    }

}


/* Small Mobile */
@media (max-width:480px) {

    .discord-mock {
        height: 240px;
    }

    .dm-sidebar-left {
        width: 58px;
        gap: 6px;
    }

    .dm-server-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .dm-sep {
        width: 24px;
    }

    .dm-channel-list {
        display: none;
    }

    .dm-main {
        min-width: 0;
    }

    .dm-header {
        padding: 8px 10px;
    }

    .dm-header-name {
        font-size: 12px;
    }

    .dm-header-hash {
        font-size: 15px;
    }

    .dm-messages {
        padding: 10px;
        gap: 8px;
    }

    .dm-avatar {
        width: 28px;
        height: 28px;
    }

    .dm-username {
        font-size: 11px;
    }

    .dm-text {
        font-size: 11px;
        line-height: 1.4;
    }

    .browser-bar {
        padding: 8px;
        gap: 8px;
    }

    .browser-url {
        font-size: 10px;
        padding: 4px 8px;
    }

    .browser-dot {
        width: 9px;
        height: 9px;
    }

}