/* ══════════════════════════════════════════════
   LxDevs Store — Dark UI / Red Accent
   ══════════════════════════════════════════════ */

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #1a1a1e;
    --bg-card: #141416;
    --bg-hover: #1e1e22;
    --border: #2a2a2e;
    --border-light: #333338;
    --text-primary: #f0f0f2;
    --text-secondary: #a0a0a8;
    --text-muted: #666670;
    --accent: #e63946;
    --accent-hover: #ff4d5a;
    --accent-soft: rgba(230, 57, 70, 0.15);
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
    --font-main: 'Space Grotesk', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.85rem; }
.mono { font-family: var(--font-mono); font-size: 0.85rem; }
.accent { color: var(--accent); }

/* ── Navbar ── */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.5rem; font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.brand-icon { font-size: 1.4rem; }
.brand-text { letter-spacing: -0.02em; }
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; transition: color var(--transition); }
.nav-link:hover { color: var(--text-primary); }
.nav-link-admin { color: var(--accent) !important; }
.nav-user { display: flex; align-items: center; gap: 0.75rem; }
.nav-username { color: var(--text-secondary); font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: var(--transition); }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-secondary); padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
    .nav-menu.active { display: flex; }
}

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.65rem 1.5rem; border-radius: var(--radius); font-weight: 600;
    font-size: 0.9rem; border: none; cursor: pointer; transition: all var(--transition);
    text-decoration: none; font-family: var(--font-main); line-height: 1.4;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(230,57,70,0.3); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c0392b; color: #fff; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── Alerts ── */
.alert {
    padding: 0.85rem 1.25rem; border-radius: var(--radius); margin: 1rem 0;
    font-size: 0.9rem; border: 1px solid;
}
.alert-success { background: rgba(46,204,113,0.1); border-color: rgba(46,204,113,0.3); color: var(--success); }
.alert-error { background: rgba(231,76,60,0.1); border-color: rgba(231,76,60,0.3); color: var(--danger); }

/* ── Badges ── */
.badge {
    display: inline-block; padding: 0.2rem 0.65rem; border-radius: 100px;
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
    background: var(--bg-tertiary); color: var(--text-secondary); border: 1px solid var(--border);
}
.badge-free { background: rgba(46,204,113,0.12); color: var(--success); border-color: rgba(46,204,113,0.3); }
.badge-premium { background: var(--accent-soft); color: var(--accent); border-color: rgba(230,57,70,0.3); }
.badge-admin { background: var(--accent-soft); color: var(--accent); border-color: rgba(230,57,70,0.3); }
.badge-login { background: rgba(52,152,219,0.12); color: var(--info); }
.badge-logout { background: rgba(241,196,15,0.12); color: var(--warning); }
.badge-failed_login { background: rgba(231,76,60,0.12); color: var(--danger); }
.badge-register { background: rgba(46,204,113,0.12); color: var(--success); }

/* ── Status & Priority ── */
.status { font-size: 0.8rem; font-weight: 600; }
.status-open { color: var(--success); }
.status-in_progress { color: var(--warning); }
.status-closed { color: var(--text-muted); }
.priority { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.priority-low { color: var(--info); }
.priority-medium { color: var(--warning); }
.priority-high { color: var(--danger); }

/* ── Hero ── */
.hero {
    position: relative; padding: 6rem 0 4rem; overflow: hidden;
    background: linear-gradient(165deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(230,57,70,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(230,57,70,0.05) 0%, transparent 50%);
}
.hero-content { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.hero-badge {
    display: inline-block; padding: 0.4rem 1rem; border-radius: 100px;
    background: var(--accent-soft); color: var(--accent); font-size: 0.85rem; font-weight: 600;
    border: 1px solid rgba(230,57,70,0.2); margin-bottom: 1.5rem;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.03em; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-value { display: block; font-size: 2rem; font-weight: 700; color: var(--text-primary); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Sections ── */
.section { padding: 4rem 0; }
.section-dark { background: var(--bg-secondary); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.section-title { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; }

/* ── Script Cards Grid ── */
.scripts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.script-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition); display: block; color: var(--text-primary);
}
.script-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--text-primary); }
.script-card-image { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-tertiary); }
.script-card-image img { width: 100%; height: 100%; object-fit: cover; }
.script-card-image .badge { position: absolute; top: 0.75rem; right: 0.75rem; }
.script-card-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3rem; background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary)); }
.script-card-body { padding: 1.25rem; }
.script-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.script-card-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0.75rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.script-card-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2rem; text-align: center; transition: all var(--transition);
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* ── Store Filters ── */
.store-header { margin-bottom: 2rem; }
.store-filters { margin-top: 1.5rem; }
.filter-form { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.filter-tabs { display: flex; gap: 0.5rem; }
.filter-tab {
    padding: 0.5rem 1.25rem; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem;
    color: var(--text-secondary); background: var(--bg-secondary); border: 1px solid var(--border); transition: all var(--transition);
}
.filter-tab.active, .filter-tab:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.search-box { display: flex; gap: 0.5rem; }
.store-count { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ── Pagination ── */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; }
.page-link {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem;
    background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary); transition: all var(--transition);
}
.page-link.active, .page-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── Script Detail ── */
.back-link { display: inline-block; color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.9rem; }
.back-link:hover { color: var(--accent); }
.script-detail { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; }
@media (max-width: 900px) { .script-detail { grid-template-columns: 1fr; } }
.script-detail-header { display: flex; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.script-detail-image { width: 280px; flex-shrink: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-tertiary); }
.script-detail-image img { width: 100%; display: block; }
.script-detail-info { flex: 1; }
.script-detail-info h1 { font-size: 1.75rem; margin: 0.5rem 0; }
.script-meta-row { display: flex; gap: 1.5rem; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; flex-wrap: wrap; }
.script-price { font-size: 2rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; }
.script-card-placeholder.large { height: 200px; }

/* Gallery */
.script-gallery { margin-bottom: 2rem; }
.script-gallery h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.gallery-img { width: 100%; border-radius: var(--radius); cursor: pointer; transition: var(--transition); border: 1px solid var(--border); }
.gallery-img:hover { border-color: var(--accent); transform: scale(1.02); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 1000; align-items: center; justify-content: center; cursor: pointer; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--radius); }

/* Description & Changelog */
.script-description, .script-changelog { margin-bottom: 2rem; }
.script-description h2, .script-changelog h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.content-block { color: var(--text-secondary); line-height: 1.8; font-size: 0.95rem; }
.changelog-list { display: flex; flex-direction: column; gap: 1rem; }
.changelog-entry { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.changelog-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.changelog-version { font-weight: 700; color: var(--accent); font-family: var(--font-mono); }
.changelog-date { color: var(--text-muted); font-size: 0.85rem; }
.changelog-body { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* Sidebar */
.script-detail-sidebar {}
.sidebar-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.5rem; margin-bottom: 1.5rem;
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.info-list { list-style: none; }
.info-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.info-list li:last-child { border-bottom: none; }
.info-list li span { color: var(--text-muted); }

/* ── Auth ── */
.auth-container { display: flex; align-items: center; justify-content: center; min-height: 60vh; }
.auth-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg);
}
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header .brand-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.auth-header h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.auth-header p { color: var(--text-muted); font-size: 0.9rem; }
.auth-form { display: flex; flex-direction: column; gap: 1.25rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-muted); }

/* ── Forms ── */
.form-container { max-width: 800px; }
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-row .form-group { min-width: 0; }
.flex-2 { flex: 2; }

.input {
    padding: 0.7rem 1rem; border-radius: var(--radius); font-size: 0.95rem;
    background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-primary);
    font-family: var(--font-main); transition: border-color var(--transition);
}
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.input::placeholder { color: var(--text-muted); }
.input-sm { padding: 0.35rem 0.6rem; font-size: 0.8rem; }
.textarea { resize: vertical; min-height: 80px; }
.input-file { padding: 0.5rem; }
.input-file::file-selector-button {
    padding: 0.4rem 1rem; border-radius: var(--radius); border: 1px solid var(--border);
    background: var(--bg-tertiary); color: var(--text-primary); font-family: var(--font-main);
    cursor: pointer; margin-right: 0.75rem;
}
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }
.preview-thumb { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius); margin-top: 0.5rem; border: 1px solid var(--border); }
.inline-form { display: inline-block; }

/* ── Tables ── */
.table-container { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table th { background: var(--bg-tertiary); padding: 0.85rem 1rem; text-align: left; font-weight: 600; color: var(--text-secondary); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; }
.table td { padding: 0.75rem 1rem; border-top: 1px solid var(--border); }
.table tbody tr:hover { background: var(--bg-hover); }
.table-compact th, .table-compact td { padding: 0.5rem 0.75rem; }
.table-thumb { width: 48px; height: 36px; object-fit: cover; border-radius: 6px; }
.table-thumb-placeholder { width: 48px; height: 36px; border-radius: 6px; background: var(--bg-tertiary); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.actions { display: flex; gap: 0.5rem; align-items: center; }

/* ── Tickets ── */
.ticket-detail { }
.ticket-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.ticket-header h1 { font-size: 1.35rem; }
.ticket-meta { display: flex; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; align-items: center; font-size: 0.85rem; color: var(--text-muted); }
.ticket-messages { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.ticket-message {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.25rem;
}
.ticket-message.admin-reply { border-left: 3px solid var(--accent); }
.message-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.message-date { color: var(--text-muted); font-size: 0.8rem; }
.message-body { color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; }
.ticket-reply-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.ticket-reply-form h3 { margin-bottom: 1rem; }
.ticket-closed-notice { text-align: center; padding: 2rem; color: var(--text-muted); background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); }

/* ── Tabs ── */
.tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.tab {
    padding: 0.6rem 1.25rem; border-radius: var(--radius); font-weight: 600; font-size: 0.9rem;
    background: var(--bg-card); border: 1px solid var(--border); color: var(--text-secondary);
    cursor: pointer; transition: all var(--transition); font-family: var(--font-main);
}
.tab.active, .tab:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state .btn { margin-top: 1rem; }

/* ── Error Page ── */
.error-page { padding: 6rem 0; }
.error-code { font-size: 8rem; font-weight: 700; color: var(--accent); line-height: 1; }
.error-message { font-size: 1.5rem; margin: 1rem 0; }
.error-page p { color: var(--text-muted); margin-bottom: 2rem; }

/* ── Footer ── */
.footer { padding: 3rem 0; border-top: 1px solid var(--border); margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-text { font-size: 1.25rem; }
.footer-tagline { color: var(--text-muted); margin-top: 0.5rem; font-size: 0.9rem; }
.footer-links h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-secondary); }
.footer-links a { display: block; color: var(--text-muted); font-size: 0.9rem; padding: 0.25rem 0; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 0.85rem; }

/* ── Gallery Admin ── */
.gallery-admin { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; }
.gallery-admin-item img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }

/* ── Discord Button ── */
.btn-discord { background: #5865F2; color: #fff; gap: 0.75rem; font-weight: 600; border: none; }
.btn-discord:hover { background: #4752C4; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(88,101,242,0.3); }
.btn-discord svg { flex-shrink: 0; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; color: var(--text-muted); font-size: 0.85rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── License Cards ── */
.licenses-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.license-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: border-color var(--transition); }
.license-card:hover { border-color: var(--border-light); }
.license-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.license-card-header h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.license-key-box { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; margin-bottom: 1rem; }
.license-key-box label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.license-key-row { display: flex; align-items: center; gap: 0.75rem; }
.license-key { font-family: var(--font-mono); font-size: 0.95rem; color: var(--accent); background: none; flex: 1; word-break: break-all; }
.license-server-info { margin-bottom: 1rem; }
.license-server-info h4, .license-activate-form h4 { font-size: 0.95rem; margin-bottom: 0.75rem; color: var(--text-secondary); }
.license-activate-form { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; }
.license-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 0.5rem; }
.mt-1 { margin-top: 0.75rem; }

/* ── Payment Success ── */
.payment-success { text-align: center; padding: 3rem 0; }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.payment-success h1 { font-size: 2rem; margin-bottom: 0.75rem; }
.payment-success > p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 2rem; }

/* ── Code Block ── */
.integration-guide { margin-top: 3rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.integration-guide h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.integration-guide p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.95rem; }
.code-block { background: var(--bg-primary); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; overflow-x: auto; font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.7; color: var(--text-secondary); }
