/* ========================================
   CSS Variables & Design System
   ======================================== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-card-hover: #1a1a25;
    --bg-input: #1e1e2a;
    --bg-input-focus: #22223a;
    
    --text-primary: #f0f0f5;
    --text-secondary: #8888a0;
    --text-muted: #55556a;
    
    --accent-primary: #6c5ce7;
    --accent-secondary: #a78bfa;
    --accent-glow: rgba(108, 92, 231, 0.3);
    --accent-gradient: linear-gradient(135deg, #6c5ce7, #a78bfa, #c084fc);
    
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.3);
    --error: #ef4444;
    --error-glow: rgba(239, 68, 68, 0.3);
    --warning: #f59e0b;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(108, 92, 231, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.15);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Background Effects
   ======================================== */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-secondary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    50% { transform: translateY(-10vh) scale(1); }
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: #6c5ce7;
    top: -100px;
    right: -100px;
    animation: orbFloat 15s infinite ease-in-out;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: #a78bfa;
    bottom: -50px;
    left: -80px;
    animation: orbFloat 12s infinite ease-in-out reverse;
}

.glow-orb-3 {
    width: 250px;
    height: 250px;
    background: #c084fc;
    top: 50%;
    left: 50%;
    animation: orbFloat 18s infinite ease-in-out 3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}

/* ========================================
   Container
   ======================================== */
.container {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 32px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   Header
   ======================================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    animation: fadeSlideDown 0.6s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-secondary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ========================================
   Main Card
   ======================================== */
.main-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: fadeSlideUp 0.7s ease;
    flex: 1;
    backdrop-filter: blur(20px);
}

/* ========================================
   Steps Indicator
   ======================================== */
.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-normal);
}

.step.active {
    color: var(--accent-secondary);
}

.step.completed {
    color: var(--success);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all var(--transition-normal);
}

.step.active .step-number {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
}

.step.completed .step-number {
    border-color: var(--success);
    background: var(--success);
    color: white;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--border-color);
    margin: 0 16px;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.step-line.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    animation: lineProgress 1s ease forwards;
}

@keyframes lineProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* ========================================
   Card Header
   ======================================== */
.card-header {
    text-align: center;
    margin-bottom: 28px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title-icon {
    font-size: 1.3rem;
}

.card-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ========================================
   Instructions Accordion
   ======================================== */
.instructions-accordion {
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-normal);
}

.instructions-accordion:hover {
    border-color: var(--border-hover);
}

.accordion-trigger {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition-fast);
}

.accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.04);
}

.accordion-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-icon {
    font-size: 1.1rem;
}

.chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.chevron.rotated {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.accordion-content.open {
    max-height: 600px;
    padding: 0 20px 20px;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.instruction-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.instruction-number {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    margin-top: 2px;
}

.instruction-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.instruction-text a {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.instruction-text a:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.instruction-text code {
    background: rgba(108, 92, 231, 0.1);
    color: var(--accent-secondary);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Fira Code', 'Cascadia Code', monospace;
}

.url-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.url-box code {
    flex: 1;
    font-size: 0.75rem;
    word-break: break-all;
    background: none;
    padding: 0;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    color: var(--accent-secondary);
    background: rgba(108, 92, 231, 0.1);
}

.tip-box {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.tip-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ========================================
   Input Area
   ======================================== */
.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.input-label svg {
    color: var(--accent-secondary);
}

.textarea-wrapper {
    position: relative;
    border-radius: var(--radius-md);
}

.textarea-wrapper textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    color: var(--text-primary);
    font-family: 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    resize: vertical;
    min-height: 140px;
    transition: all var(--transition-normal);
    outline: none;
}

.textarea-wrapper textarea::placeholder {
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.8rem;
}

.textarea-wrapper textarea:focus {
    border-color: var(--accent-primary);
    background: var(--bg-input-focus);
    box-shadow: 0 0 0 3px var(--accent-glow), var(--shadow-sm);
}

.textarea-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-normal);
    filter: blur(4px);
}

.textarea-wrapper textarea:focus + .textarea-glow {
    opacity: 0.15;
}

.input-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.token-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: background var(--transition-normal);
}

.token-status.valid .status-dot {
    background: var(--success);
    box-shadow: 0 0 8px var(--success-glow);
}

.token-status.valid .status-text {
    color: var(--success);
}

.token-status.invalid .status-dot {
    background: var(--error);
    box-shadow: 0 0 8px var(--error-glow);
}

.token-status.invalid .status-text {
    color: var(--error);
}

.token-status.multi .status-dot {
    background: var(--accent-secondary);
    box-shadow: 0 0 8px var(--accent-glow);
}

.token-status.multi .status-text {
    color: var(--accent-secondary);
}

.clear-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.clear-btn:hover {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

/* ========================================
   Config Display
   ======================================== */
.config-display {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.config-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
}

.config-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.config-value {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.promo-code {
    color: var(--accent-secondary);
    font-family: 'Fira Code', monospace;
    font-size: 0.72rem;
}

/* ========================================
   Submit Button
   ======================================== */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn.loading .btn-content { display: none; }
.submit-btn.loading .btn-loader { display: flex; }
.submit-btn.loading { pointer-events: none; }

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    30% { left: 100%; }
    100% { left: 100%; }
}

/* ========================================
   Processing State
   ======================================== */
.processing-state {
    text-align: center;
    padding: 40px 0;
}

.processing-animation {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
}

.pulse-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s infinite ease-out;
}

.pulse-ring.delay-1 { animation-delay: 0.5s; }
.pulse-ring.delay-2 { animation-delay: 1s; }

@keyframes pulseRing {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

.processing-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    animation: spin 3s linear infinite;
}

.processing-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.processing-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-input);
    border-radius: 2px;
    margin: 24px auto 0;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ========================================
   Success State
   ======================================== */
.success-state {
    text-align: center;
    padding: 40px 0;
}

.checkout-url-preview {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 16px auto 24px;
    max-width: 400px;
    padding: 14px 18px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-md);
    text-align: left;
}

.checkout-url-preview .url-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.checkout-url-preview .url-value {
    font-size: 0.78rem;
    color: var(--success);
    font-family: 'Fira Code', monospace;
    word-break: break-all;
    line-height: 1.5;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--success);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 8px;
}

.success-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.checkout-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    color: var(--success);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.checkout-link:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-1px);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 20px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.back-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

/* ========================================
   Error State
   ======================================== */
.error-state {
    text-align: center;
    padding: 40px 0;
}

.error-icon {
    width: 80px;
    height: 80px;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--error);
    animation: scaleIn 0.5s ease;
}

.error-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--error);
    margin-bottom: 8px;
}

.error-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.error-details {
    max-width: 400px;
    margin: 0 auto 20px;
    padding: 12px 16px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: left;
    word-break: break-all;
    display: none;
}

.error-details.visible {
    display: block;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    animation: fadeSlideUp 0.8s ease 0.3s both;
}

.footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-sub {
    margin-top: 4px;
    font-size: 0.72rem !important;
    opacity: 0.6;
}

/* ========================================
   Toast
   ======================================== */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    z-index: 100;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    color: var(--success);
    font-weight: 700;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none !important;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 640px) {
    .container {
        padding: 20px 16px;
    }

    .main-card {
        padding: 24px 20px;
        border-radius: var(--radius-lg);
    }

    .config-display {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .glow-orb-1 { width: 250px; height: 250px; }
    .glow-orb-2 { width: 200px; height: 200px; }
    .glow-orb-3 { width: 150px; height: 150px; }

    .badge {
        font-size: 0.72rem;
        padding: 5px 10px;
    }
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ========================================
   Selection
   ======================================== */
::selection {
    background: rgba(108, 92, 231, 0.3);
    color: white;
}
