@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===================
   1. CSS Variables
   =================== */
:root {
	/* Brand Gradient */
	--grad-primary:   linear-gradient(135deg, #7C3AED 0%, #4F46E5 50%, #06B6D4 100%);
	--grad-text:      linear-gradient(135deg, #E2E8F0 0%, #A5B4FC 100%);
	--grad-card:      linear-gradient(135deg, rgba(99,102,241,.08), rgba(6,182,212,.04));
	--grad-glow:      radial-gradient(circle at 50% 0%, rgba(99,102,241,.2) 0%, transparent 60%);

	/* Colors */
	--c-indigo:       #6366F1;
	--c-violet:       #7C3AED;
	--c-cyan:         #06B6D4;
	--c-emerald:      #10B981;
	--c-amber:        #F59E0B;
	--c-red:          #EF4444;
	--c-pink:         #EC4899;

	/* Background */
	--bg-base:        #020817;
	--bg-surface:     #0D1526;
	--bg-elevated:    #141E30;
	--bg-glass:       rgba(255,255,255,.03);
	--bg-glass-hover: rgba(255,255,255,.06);

	/* Text */
	--text-primary:   #F1F5F9;
	--text-secondary: #94A3B8;
	--text-muted:     #475569;

	/* Border */
	--border:         rgba(255,255,255,.07);
	--border-hover:   rgba(255,255,255,.15);
	--border-accent:  rgba(99,102,241,.4);

	/* Legacy aliases (used in mypage / components) */
	--db-bg:             var(--bg-base);
	--db-bg-card:        var(--bg-surface);
	--db-bg-card-hover:  var(--bg-elevated);
	--db-bg-light:       #1E293B;
	--db-text:           var(--text-primary);
	--db-text-sub:       var(--text-secondary);
	--db-text-dark:      #0F172A;
	--db-primary:        #1E3A5F;
	--db-primary-light:  var(--c-indigo);
	--db-accent:         var(--c-violet);
	--db-accent-hover:   #6D28D9;
	--db-border:         var(--border);
	--db-border-light:   var(--border);
	--db-success:        var(--c-emerald);
	--db-warning:        var(--c-amber);
	--db-error:          var(--c-red);
	--db-info:           var(--c-cyan);

	/* Typography */
	--font-base:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--font-mono:  'IBM Plex Mono', 'Courier New', monospace;

	/* Spacing (4px base) */
	--sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
	--sp-6: 24px;  --sp-8: 32px;  --sp-12: 48px; --sp-16: 64px;

	/* Radius */
	--radius-sm:   4px;   --radius-md:  8px;
	--radius-lg:   12px;  --radius-xl:  20px;
	--radius-2xl:  28px;  --radius-full: 9999px;

	/* Shadow */
	--shadow-sm:    0 1px 4px rgba(0,0,0,.4);
	--shadow-card:  0 4px 32px rgba(0,0,0,.5);
	--shadow-glow:  0 0 0 1px var(--border-accent), 0 0 40px rgba(99,102,241,.2);
	--shadow-cyan:  0 0 40px rgba(6,182,212,.2);

	/* Transition */
	--transition: .22s cubic-bezier(.4,0,.2,1);
}

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

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

body {
	background: var(--bg-base);
	color: var(--text-primary);
	font-family: var(--font-base);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--c-indigo);
	text-decoration: none;
	transition: color var(--transition);
}
a:hover { color: var(--c-cyan); }

img, video { max-width: 100%; height: auto; display: block; }
code, pre  { font-family: var(--font-mono); font-size: .875em; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; color: var(--text-primary); }

/* ===================
   3. Layout
   =================== */
.container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: var(--sp-6);
}

.site-main {
	min-height: 60vh;
	padding-block: var(--sp-12);
}

/* ===================
   4. Buttons
   =================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	padding: 0 var(--sp-6);
	height: 48px;
	border-radius: var(--radius-lg);
	font-weight: 600;
	font-size: .9375rem;
	letter-spacing: -.01em;
	cursor: pointer;
	transition: all var(--transition);
	border: none;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}
.btn:focus-visible {
	outline: 2px solid var(--c-indigo);
	outline-offset: 3px;
}

.btn--primary {
	background: var(--grad-primary);
	color: #fff;
	box-shadow: 0 0 0 1px rgba(99,102,241,.4), 0 4px 16px rgba(99,102,241,.25);
}
.btn--primary:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 0 0 1px rgba(99,102,241,.6), 0 8px 32px rgba(99,102,241,.4);
}
.btn--primary::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0);
	transition: background var(--transition);
}
.btn--primary:hover::after { background: rgba(255,255,255,.05); }

.btn--secondary {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border-hover);
}
.btn--secondary:hover {
	background: var(--bg-glass-hover);
	border-color: var(--border-accent);
	color: var(--text-primary);
}

.btn--ghost {
	background: transparent;
	color: var(--text-secondary);
	border: 1px solid var(--border);
}
.btn--ghost:hover {
	border-color: var(--border-hover);
	color: var(--text-primary);
}

.btn--lg  { height: 56px; padding: 0 var(--sp-8); font-size: 1rem; border-radius: var(--radius-xl); }
.btn--sm  { height: 36px; padding: 0 var(--sp-4); font-size: .8125rem; border-radius: var(--radius-md); }
.btn--xs  { height: 30px; padding: 0 12px; font-size: .75rem; border-radius: var(--radius-md); }
.btn--full { width: 100%; }

/* ===================
   5. Cards / Glass
   =================== */
.db-card {
	background: var(--bg-glass);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: var(--sp-6);
	backdrop-filter: blur(12px);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.db-card:hover {
	border-color: var(--border-accent);
	box-shadow: var(--shadow-glow);
}

/* ===================
   6. Progress Bar
   =================== */
.db-progress { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.db-progress__bar {
	flex: 1; height: 6px;
	background: rgba(255,255,255,.08);
	border-radius: var(--radius-full);
	overflow: hidden;
}
.db-progress__fill {
	height: 100%;
	background: var(--grad-primary);
	border-radius: var(--radius-full);
	transition: width .5s ease;
}
.db-progress__label { font-size: .875rem; color: var(--text-secondary); white-space: nowrap; }

/* ===================
   7. Alerts
   =================== */
.db-alert {
	padding: var(--sp-4) var(--sp-6);
	border-radius: var(--radius-lg);
	border-left: 3px solid;
	margin-bottom: var(--sp-6);
	font-size: .9rem;
}
.db-alert--success { background: rgba(16,185,129,.08);  border-color: var(--c-emerald); color: #6EE7B7; }
.db-alert--info    { background: rgba(6,182,212,.08);   border-color: var(--c-cyan);    color: #67E8F9; }
.db-alert--warning { background: rgba(245,158,11,.08);  border-color: var(--c-amber);   color: #FCD34D; }
.db-alert--error   { background: rgba(239,68,68,.08);   border-color: var(--c-red);     color: #FCA5A5; }

/* ===================
   8. Badges
   =================== */
.db-badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: var(--radius-full);
	font-size: .7125rem;
	font-weight: 600;
	letter-spacing: .03em;
	background: rgba(255,255,255,.07);
	color: var(--text-secondary);
}
.db-badge--success { background: rgba(16,185,129,.12); color: #34D399; }
.db-badge--pending { background: rgba(245,158,11,.12);  color: #FCD34D; }

/* ===================
   9. Tables
   =================== */
.db-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.db-table th,
.db-table td {
	padding: var(--sp-3) var(--sp-4);
	border-bottom: 1px solid var(--border);
	text-align: left;
}
.db-table th {
	color: var(--text-muted);
	font-weight: 600;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .07em;
}
.db-table tbody tr:hover { background: var(--bg-glass); }

/* ===================
   10. Form Controls
   =================== */
.db-form-control {
	width: 100%;
	background: rgba(255,255,255,.04);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	color: var(--text-primary);
	padding: var(--sp-3) var(--sp-4);
	font-size: 1rem;
	font-family: var(--font-base);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.db-form-control:focus {
	outline: none;
	border-color: var(--c-indigo);
	box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.db-form-group { margin-bottom: var(--sp-4); }
.db-form-group label {
	display: block;
	margin-bottom: var(--sp-2);
	font-size: .875rem;
	font-weight: 500;
	color: var(--text-secondary);
}

/* ===================
   11. Misc
   =================== */
.db-txid-link {
	font-family: var(--font-mono);
	font-size: .8125rem;
	color: var(--c-cyan);
}
.db-copy-btn {
	background: none; border: none; cursor: pointer;
	color: var(--text-secondary); transition: color var(--transition); padding: var(--sp-1);
}
.db-copy-btn:hover { color: var(--c-indigo); }
.db-empty {
	text-align: center; color: var(--text-secondary); padding: var(--sp-12) 0;
}

/* ===================
   12. Site Header
   =================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(2,8,23,.85);
	backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid var(--border);
	transition: border-color var(--transition);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--sp-6);
	height: 68px;
}
.site-header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--text-primary);
	text-decoration: none;
	letter-spacing: -.03em;
}
.site-header__logo-icon {
	width: 32px; height: 32px;
	background: var(--grad-primary);
	border-radius: var(--radius-md);
	display: grid;
	place-items: center;
	font-size: .875rem;
	color: #fff;
	font-weight: 900;
	flex-shrink: 0;
}
.site-header__logo-text {
	background: var(--grad-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.site-header__nav { flex: 1; }
.site-nav {
	display: flex;
	list-style: none;
	gap: var(--sp-2);
}
.site-nav a {
	color: var(--text-secondary);
	font-size: .875rem;
	font-weight: 500;
	padding: var(--sp-2) var(--sp-3);
	border-radius: var(--radius-md);
	transition: all var(--transition);
}
.site-nav a:hover {
	color: var(--text-primary);
	background: var(--bg-glass-hover);
}
.site-header__actions { display: flex; gap: var(--sp-2); }
.site-header__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none; border: none;
	cursor: pointer;
	padding: var(--sp-2);
	margin-left: auto;
}
.site-header__hamburger span {
	display: block; width: 22px; height: 2px;
	background: var(--text-primary);
	border-radius: 2px; transition: var(--transition);
}

/* ===================
   13. Site Footer
   =================== */
.site-footer {
	background: var(--bg-surface);
	border-top: 1px solid var(--border);
	padding-block: var(--sp-16) var(--sp-12);
}
.site-footer__inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1.5fr;
	gap: var(--sp-12);
}
.site-footer__logo {
	display: flex; align-items: center; gap: 10px;
	font-size: 1.125rem; font-weight: 800;
	color: var(--text-primary); text-decoration: none;
	letter-spacing: -.03em; margin-bottom: var(--sp-3);
}
.site-footer__tagline {
	color: var(--text-secondary);
	font-size: .875rem;
	line-height: 1.6;
	max-width: 260px;
}
.footer-nav {
	list-style: none;
	display: flex; flex-direction: column;
	gap: var(--sp-3);
}
.footer-nav a {
	color: var(--text-secondary);
	font-size: .875rem;
	transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text-primary); }
.site-footer__faq-title {
	font-size: .875rem;
	font-weight: 600;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: var(--sp-4);
}
.site-footer__bottom {
	grid-column: 1 / -1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: var(--sp-6);
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: .8125rem;
}
.site-footer__bottom a { color: var(--text-muted); margin-left: var(--sp-4); }
.site-footer__bottom a:hover { color: var(--text-secondary); }

/* Footer FAQ mini */
.site-footer .faq-accordion { display: flex; flex-direction: column; gap: 6px; }
.site-footer .faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
}
.site-footer .faq-item__question {
	width: 100%;
	display: flex; justify-content: space-between; align-items: center;
	padding: 10px var(--sp-4);
	background: none; border: none;
	color: var(--text-secondary); font-size: .8125rem; font-weight: 500;
	cursor: pointer; text-align: left; gap: var(--sp-3);
}
.site-footer .faq-item__question:hover { color: var(--text-primary); background: var(--bg-glass); }
.site-footer .faq-item__arrow {
	flex-shrink: 0; width: 14px; height: 14px;
	transition: transform var(--transition);
}
.site-footer .faq-item__question[aria-expanded="true"] .faq-item__arrow { transform: rotate(180deg); }
.site-footer .faq-item__answer { padding: 10px var(--sp-4); color: var(--text-muted); font-size: .8125rem; }

/* ===================
   14. FAQ Section (main)
   =================== */
.faq-accordion { display: flex; flex-direction: column; gap: var(--sp-2); }
.faq-item {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item__question {
	width: 100%;
	display: flex; justify-content: space-between; align-items: center;
	padding: var(--sp-4) var(--sp-6);
	background: none; border: none;
	color: var(--text-primary); font-size: .9375rem; font-weight: 500;
	cursor: pointer; text-align: left; gap: var(--sp-4);
}
.faq-item__question:hover { background: var(--bg-glass); }
.faq-item__arrow {
	flex-shrink: 0; width: 18px; height: 18px;
	transition: transform var(--transition); color: var(--text-secondary);
}
.faq-item__question[aria-expanded="true"] .faq-item__arrow { transform: rotate(180deg); }
.faq-item__answer {
	padding: var(--sp-4) var(--sp-6) var(--sp-6);
	color: var(--text-secondary); font-size: .9rem; line-height: 1.7;
	border-top: 1px solid var(--border);
}

/* ===================
   15. Section Commons
   =================== */
.section-eyebrow {
	display: inline-flex; align-items: center; gap: var(--sp-2);
	font-size: .75rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .1em;
	color: var(--c-indigo);
	background: rgba(99,102,241,.1);
	border: 1px solid rgba(99,102,241,.2);
	padding: 4px 12px;
	border-radius: var(--radius-full);
	margin-bottom: var(--sp-4);
}
.section-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	text-align: center;
	margin-bottom: var(--sp-3);
	letter-spacing: -.03em;
	font-weight: 800;
}
.section-subtitle {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: var(--sp-12);
	font-size: 1.0625rem;
	max-width: 520px;
	margin-inline: auto;
}

/* ===================
   16. Mobile Sticky CTA
   =================== */
.mobile-sticky-cta {
	display: none;
	position: fixed; bottom: 0; left: 0; right: 0;
	z-index: 200;
	padding: var(--sp-3) var(--sp-4);
	background: rgba(2,8,23,.96);
	border-top: 1px solid var(--border);
	backdrop-filter: blur(16px);
}
.mobile-sticky-cta__btn {
	display: block; width: 100%; height: 48px; line-height: 48px;
	text-align: center;
	background: var(--grad-primary);
	color: #fff; font-weight: 700; font-size: .9375rem;
	border-radius: var(--radius-lg); text-decoration: none;
}

/* ===================
   17. Live Signup Banner
   =================== */
.live-signup-banner {
	position: fixed; bottom: 80px; left: var(--sp-4);
	z-index: 150;
	display: flex; align-items: center; gap: var(--sp-2);
	background: rgba(13,21,38,.95);
	border: 1px solid var(--border-hover);
	border-radius: var(--radius-full);
	padding: var(--sp-2) var(--sp-4);
	font-size: .8125rem; color: var(--text-secondary);
	backdrop-filter: blur(20px);
	animation: fadeInLeft .4s ease;
	max-width: 300px;
}
.live-signup-banner__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--c-emerald);
	box-shadow: 0 0 8px var(--c-emerald);
	animation: pulse 2s infinite; flex-shrink: 0;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes fadeInLeft {
	from { opacity: 0; transform: translateX(-12px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ===================
   18. Modal
   =================== */
.db-modal {
	position: fixed; inset: 0; z-index: 300;
	display: flex; align-items: center; justify-content: center;
	padding: var(--sp-4);
}
.db-modal[hidden] { display: none; }
.db-modal__backdrop {
	position: absolute; inset: 0;
	background: rgba(0,0,0,.75);
	backdrop-filter: blur(6px);
}
.db-modal__dialog {
	position: relative;
	background: var(--bg-surface);
	border: 1px solid var(--border-hover);
	border-radius: var(--radius-2xl);
	padding: var(--sp-8);
	width: 100%; max-width: 520px;
	max-height: 90vh; overflow-y: auto;
	box-shadow: 0 0 0 1px var(--border), 0 32px 64px rgba(0,0,0,.6);
}
.db-modal__close {
	position: absolute; top: var(--sp-4); right: var(--sp-4);
	background: var(--bg-glass); border: 1px solid var(--border);
	border-radius: var(--radius-md); width: 32px; height: 32px;
	display: grid; place-items: center;
	font-size: 1.125rem; cursor: pointer;
	color: var(--text-secondary); line-height: 1;
	transition: all var(--transition);
}
.db-modal__close:hover { background: var(--bg-glass-hover); color: var(--text-primary); }
.db-modal__title { margin-bottom: var(--sp-2); font-size: 1.25rem; }
.db-modal__desc  { color: var(--text-secondary); font-size: .9rem; margin-bottom: var(--sp-6); line-height: 1.6; }
.db-modal__status { min-height: 24px; font-size: .875rem; margin-bottom: var(--sp-4); }
.db-modal__status--success { color: #34D399; }
.db-modal__status--error   { color: #FCA5A5; }
.db-modal__status--info    { color: #67E8F9; }
.db-modal__actions { display: flex; gap: var(--sp-3); margin-top: var(--sp-6); }
.db-modal__guide {
	margin-top: var(--sp-6); font-size: .8125rem; color: var(--text-secondary);
	background: var(--bg-glass); border-radius: var(--radius-lg);
	padding: var(--sp-3) var(--sp-4); border: 1px solid var(--border);
}
.db-modal__guide summary { cursor: pointer; font-weight: 600; color: var(--text-primary); }
.db-modal__guide dl {
	margin-top: var(--sp-3);
	display: grid; grid-template-columns: 80px 1fr; gap: var(--sp-2);
}
.db-modal__guide dt { font-weight: 600; color: var(--text-secondary); }

/* ===================
   19. Stat Cards
   =================== */
.db-stat-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-4);
	margin-bottom: var(--sp-8);
}
.db-stat-card {
	background: var(--bg-glass);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: var(--sp-4) var(--sp-6);
	display: flex; flex-direction: column; gap: 4px;
	transition: border-color var(--transition);
}
.db-stat-card:hover { border-color: var(--border-accent); }
.db-stat-card__label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.db-stat-card__value { font-size: 1.625rem; font-weight: 800; letter-spacing: -.03em; }
.db-stat-card__unit  { font-size: .75rem; color: var(--text-secondary); }

/* ===================
   20. Donation Slots
   =================== */
.db-slots { display: flex; flex-direction: column; gap: var(--sp-4); }
.db-slot {
	background: var(--bg-glass);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	overflow: hidden;
	transition: border-color var(--transition);
}
.db-slot--verified { border-color: rgba(16,185,129,.35); }
.db-slot__header {
	display: flex; justify-content: space-between; align-items: center;
	padding: var(--sp-3) var(--sp-6);
	background: rgba(255,255,255,.02);
	border-bottom: 1px solid var(--border);
}
.db-slot__number     { font-weight: 700; font-size: .875rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .05em; }
.db-slot__status-badge {
	font-size: .7125rem; font-weight: 700; padding: 3px 10px;
	border-radius: var(--radius-full);
	background: rgba(255,255,255,.07); color: var(--text-secondary);
	letter-spacing: .04em; text-transform: uppercase;
}
.db-slot--verified .db-slot__status-badge { background: rgba(16,185,129,.12); color: #34D399; }
.db-slot__body   { padding: var(--sp-4) var(--sp-6); }
.db-slot__nickname { font-weight: 600; margin-bottom: 4px; }
.db-slot__wallet { display: flex; align-items: center; gap: var(--sp-2); margin: var(--sp-2) 0; }
.db-slot__wallet code { font-size: .8125rem; color: var(--c-cyan); word-break: break-all; }
.db-slot__amount { font-size: .8125rem; color: var(--text-secondary); }
.db-slot__footer { padding: var(--sp-3) var(--sp-6); border-top: 1px solid var(--border); }

/* ===================
   21. Referral Link
   =================== */
.db-referral-link { margin-bottom: var(--sp-8); }
.db-referral-link h3 { margin-bottom: var(--sp-3); }
.db-referral-link__box {
	display: flex; gap: var(--sp-3); margin-bottom: var(--sp-4);
	background: var(--bg-glass); border: 1px solid var(--border);
	border-radius: var(--radius-lg); padding: 4px 4px 4px var(--sp-4);
	align-items: center;
}
.db-referral-link__box input {
	flex: 1; background: none; border: none;
	color: var(--text-secondary); font-size: .875rem;
	font-family: var(--font-mono);
}
.db-share-btns { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.db-share-btn {
	padding: var(--sp-2) var(--sp-4); border-radius: var(--radius-md);
	font-size: .8125rem; font-weight: 600; text-decoration: none;
	transition: opacity var(--transition), transform var(--transition);
}
.db-share-btn:hover { opacity: .85; transform: translateY(-1px); }
.db-share-btn--facebook { background: #1877F2; color: #fff; }
.db-share-btn--x        { background: #000; color: #fff; border: 1px solid #333; }
.db-share-btn--telegram { background: #0088cc; color: #fff; }
.db-share-btn--whatsapp { background: #25D366; color: #fff; }
.db-share-btn--line     { background: #00C300; color: #fff; }

/* ===================
   22. Earnings
   =================== */
.db-earnings-summary {
	display: flex; align-items: baseline;
	gap: var(--sp-3); margin-bottom: var(--sp-6);
}
.db-earnings-summary__label { color: var(--text-secondary); font-size: .875rem; }
.db-earnings-summary__value { font-size: 2rem; font-weight: 800; letter-spacing: -.04em; }
.db-earnings-filter { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.db-earnings-filter input[type="month"] {
	background: var(--bg-glass); border: 1px solid var(--border);
	border-radius: var(--radius-md); color: var(--text-primary);
	padding: var(--sp-2) var(--sp-4);
}
.db-mypage-section__title {
	font-size: 1.375rem; margin-bottom: var(--sp-6);
	padding-bottom: var(--sp-4); border-bottom: 1px solid var(--border);
	letter-spacing: -.02em;
}

/* ===================
   23. Admin
   =================== */
.db-admin-stats { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-8); }
.db-admin-stat-card {
	background: #fff; border: 1px solid #e2e4e7;
	border-radius: 4px; padding: 16px 20px;
	min-width: 140px; display: flex; flex-direction: column; gap: 4px;
}
.db-admin-stat-card__label { font-size: 12px; color: #888; }
.db-admin-stat-card__value { font-size: 28px; font-weight: 700; color: #1d2327; }
.db-admin-stat-card__sub   { font-size: 11px; color: #aaa; }
.db-admin-stat-card--success .db-admin-stat-card__value { color: #27AE60; }
.db-admin-stat-card--warning .db-admin-stat-card__value { color: #F39C12; }
.db-admin-stat-card--error   .db-admin-stat-card__value { color: #E74C3C; }

/* ===================
   24. Responsive
   =================== */
@media (max-width: 1024px) {
	.db-stat-cards { grid-template-columns: repeat(2, 1fr); }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.site-header__nav,
	.site-header__actions { display: none; }
	.site-header__hamburger { display: flex; }
	.site-header__nav.is-open,
	.site-header__actions.is-open {
		display: flex; position: fixed; top: 68px; left: 0; right: 0;
		flex-direction: column;
		background: rgba(13,21,38,.98); backdrop-filter: blur(20px);
		padding: var(--sp-6); border-bottom: 1px solid var(--border);
		gap: var(--sp-3);
		z-index: 99;
	}
	.site-header__nav.is-open .site-nav { flex-direction: column; gap: var(--sp-1); }
	.mobile-sticky-cta { display: block; }
	.site-footer__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
	.db-stat-cards { grid-template-columns: repeat(2, 1fr); }
	.live-signup-banner { bottom: 70px; }
}

@media (max-width: 480px) {
	.container { padding-inline: var(--sp-4); }
	.db-stat-cards { grid-template-columns: 1fr 1fr; }
	.db-slot__wallet { flex-direction: column; align-items: flex-start; }
	.db-modal__actions { flex-direction: column; }
}
