/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #f0f2f8; line-height: 1.6; }
a { color: #4361ee; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
hr { border: none; border-top: 1px solid #e2e8f0; margin: 1rem 0; }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar { background: #fff; border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 64px; }
.logo { font-size: 22px; font-weight: 700; color: #1a1a2e; letter-spacing: -.5px; }
.logo span { color: #4361ee; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 14px; color: #64748b; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #4361ee; text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.notif-btn { font-size: 18px; position: relative; cursor: pointer; text-decoration: none; }
.notif-badge { position: absolute; top: -4px; right: -6px; background: #ef4444; color: #fff; border-radius: 50%; font-size: 10px; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; }

/* Dropdown */
.dropdown { position: relative; }
.avatar-btn { display: flex; align-items: center; gap: 8px; background: none; border: none; cursor: pointer; padding: 6px 10px; border-radius: 10px; transition: background .15s; }
.avatar-btn:hover { background: #f1f5f9; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #4361ee, #7c3aed); color: #fff; font-weight: 600; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avatar-lg { width: 56px; height: 56px; font-size: 20px; }
.nav-username { font-size: 14px; font-weight: 500; color: #334155; }
.dropdown-menu { display: none; position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 6px; min-width: 190px; box-shadow: 0 8px 30px rgba(0,0,0,.1); z-index: 200; }
.dropdown:hover .dropdown-menu, .dropdown-menu:hover { display: block; }
.dropdown-menu a { display: block; padding: 9px 14px; font-size: 14px; color: #334155; border-radius: 8px; transition: background .1s; }
.dropdown-menu a:hover { background: #f8fafc; text-decoration: none; }
.dropdown-menu .admin-link { color: #4361ee; font-weight: 500; }
.dropdown-menu .logout { color: #ef4444; }
.dropdown-menu hr { margin: 4px 0; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: all .15s; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #4361ee, #7c3aed); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(67,97,238,.3); }
.btn-primary:hover { box-shadow: 0 6px 20px rgba(67,97,238,.4); }
.btn-outline { background: transparent; color: #4361ee; border-color: #4361ee; }
.btn-outline:hover { background: #eff2ff; }
.btn-success { background: linear-gradient(135deg, #059669, #047857); color: #fff; box-shadow: 0 4px 14px rgba(5,150,105,.25); }
.btn-danger { background: linear-gradient(135deg, #ef4444, #dc2626); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-xs { padding: 4px 10px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
.btn-disabled { background: #e2e8f0; color: #94a3b8; cursor: not-allowed; border-color: transparent; box-shadow: none; }
.btn-disabled:hover { transform: none; }

/* ===== ALERTS ===== */
.alert { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-radius: 10px; margin: 12px 0; font-size: 14px; font-weight: 500; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-danger  { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.alert-close   { background: none; border: none; font-size: 20px; cursor: pointer; opacity: .5; line-height: 1; }

/* ===== BADGES ===== */
.badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: .3px; }
.badge-live    { background: #eff2ff; color: #4361ee; }
.badge-success { background: #f0fdf4; color: #166534; }
.badge-warn    { background: #fffbeb; color: #92400e; }
.badge-default { background: #f1f5f9; color: #64748b; }
.badge-info    { background: #eff6ff; color: #1e40af; }
.badge-purple  { background: #f5f3ff; color: #6d28d9; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 80px 0 70px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(67,97,238,.15) 0%, transparent 60%); }
.hero-inner { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(67,97,238,.2); color: #93c5fd; font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; border: 1px solid rgba(67,97,238,.3); }
.hero h1 { font-size: 52px; font-weight: 700; line-height: 1.15; margin-bottom: 16px; color: #fff; letter-spacing: -1px; }
.hero h1 .highlight { background: linear-gradient(135deg, #4361ee, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: #94a3b8; max-width: 540px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #94a3b8; }
.trust-item .ti-icon { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt { background: #fff; }
.section-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.section-subtitle { font-size: 15px; color: #64748b; margin-bottom: 32px; }
.section-more { text-align: center; margin-top: 32px; }

/* ===== DRAW CARDS ===== */
.draws-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.draw-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 18px; overflow: hidden; transition: all .25s; }
.draw-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-3px); }
.draw-img { height: 200px; overflow: hidden; position: relative; background: linear-gradient(135deg, #eff2ff, #f5f3ff); }
.draw-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.draw-card:hover .draw-img img { transform: scale(1.03); }
.featured-badge { position: absolute; top: 12px; left: 12px; background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: .3px; }
.draw-body { padding: 20px; }
.draw-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag { background: #eff2ff; color: #4361ee; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.draw-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: #1a1a2e; }
.draw-prize { font-size: 28px; font-weight: 700; background: linear-gradient(135deg, #4361ee, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 14px; }
.progress-bar { height: 8px; background: #f1f5f9; border-radius: 8px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #4361ee, #7c3aed); border-radius: 8px; transition: width .3s; }
.progress-label { display: flex; justify-content: space-between; font-size: 12px; color: #94a3b8; margin: 5px 0 14px; font-weight: 500; }
.draw-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

/* ===== COUNTDOWN ===== */
.draw-countdown { margin: 12px 0; }
.cd-label { font-size: 12px; color: #94a3b8; font-weight: 500; margin-bottom: 6px; }
.countdown-boxes { display: flex; gap: 8px; }
.cd-box { background: linear-gradient(135deg, #1a1a2e, #16213e); border-radius: 10px; padding: 8px 12px; text-align: center; min-width: 52px; }
.cd-box span { display: block; font-size: 20px; font-weight: 700; color: #fff; line-height: 1.2; }
.cd-box small { font-size: 10px; color: #94a3b8; font-weight: 500; }
.countdown-inline { font-size: 15px; font-weight: 700; color: #4361ee; }
.countdown-mini { font-size: 12px; color: #4361ee; font-weight: 600; margin-top: 4px; }

/* ===== WINNERS SECTION ===== */
.winners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
.winner-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 20px 16px; text-align: center; transition: all .2s; }
.winner-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.winner-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #4361ee, #7c3aed); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 18px; }
.winner-name { font-weight: 700; font-size: 14px; color: #1a1a2e; }
.winner-prize { font-size: 12px; color: #64748b; margin-top: 3px; }
.winner-value { font-size: 20px; font-weight: 700; color: #059669; margin-top: 4px; }
.winner-date { font-size: 11px; color: #94a3b8; margin-top: 4px; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.step { text-align: center; padding: 32px 24px; background: #fff; border-radius: 18px; border: 1px solid #e2e8f0; position: relative; transition: all .2s; }
.step:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.step-icon { font-size: 40px; margin-bottom: 12px; }
.step-num { position: absolute; top: 16px; right: 16px; width: 26px; height: 26px; background: linear-gradient(135deg, #4361ee, #7c3aed); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 700; line-height: 26px; text-align: center; }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.step p { font-size: 13px; color: #64748b; line-height: 1.6; }

/* ===== CHECKOUT ===== */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 40px 24px; }
.page-title { font-size: 26px; font-weight: 700; margin-bottom: 24px; color: #1a1a2e; }
.card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; }
.mb-4 { margin-bottom: 20px; }
.card h2 { font-size: 16px; font-weight: 700; margin-bottom: 18px; color: #1a1a2e; }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.qty-btn { width: 40px; height: 40px; border: 2px solid #e2e8f0; border-radius: 10px; background: #fff; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #4361ee; font-weight: 700; transition: all .15s; }
.qty-btn:hover { border-color: #4361ee; background: #eff2ff; }
.qty-val { font-size: 26px; font-weight: 700; min-width: 40px; text-align: center; color: #1a1a2e; }
.qty-note { font-size: 14px; color: #64748b; font-weight: 500; }
.helper-text { font-size: 12px; color: #94a3b8; margin-bottom: 10px; }
.info-box { background: #eff2ff; color: #4361ee; border-radius: 10px; padding: 12px 16px; font-size: 13px; font-weight: 500; border: 1px solid #c7d2fe; }

/* PayPal only section */
.paypal-section { margin-top: 16px; }
.paypal-note { text-align: center; font-size: 12px; color: #94a3b8; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* Crypto section */
.crypto-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.crypto-divider span { font-size: 12px; color: #94a3b8; white-space: nowrap; font-weight: 500; }
.crypto-divider::before, .crypto-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.crypto-btn { width: 100%; padding: 14px; border: 2px solid #f59e0b; border-radius: 12px; background: linear-gradient(135deg, #fffbeb, #fef3c7); color: #92400e; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .15s; }
.crypto-btn:hover { background: linear-gradient(135deg, #fef3c7, #fde68a); transform: translateY(-1px); }

/* Order summary */
.summary-draw { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f1f5f9; }
.summary-img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: #f1f5f9; }
.summary-title { font-weight: 700; font-size: 15px; color: #1a1a2e; }
.summary-sub { font-size: 12px; color: #94a3b8; margin-top: 3px; }
.summary-lines { margin-bottom: 16px; }
.summary-line { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; border-bottom: 1px solid #f8fafc; color: #64748b; }
.summary-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 700; padding-top: 12px; color: #1a1a2e; }
.summary-prize-box { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-radius: 10px; padding: 12px 14px; font-size: 13px; color: #166534; margin-top: 16px; border: 1px solid #bbf7d0; font-weight: 500; }
.secure-note { text-align: center; font-size: 12px; color: #94a3b8; margin-top: 10px; }
.mt-3 { margin-top: 12px; }
.text-muted { color: #94a3b8; font-size: 13px; }

/* ===== ACCOUNT ===== */
.account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; padding: 36px 24px; }
.account-profile { text-align: center; background: linear-gradient(135deg, #1a1a2e, #16213e); border-radius: 16px; padding: 24px 20px; margin-bottom: 12px; }
.account-name { font-weight: 700; font-size: 15px; margin-top: 12px; color: #fff; }
.account-email { font-size: 13px; color: #94a3b8; }
.verify-banner { background: rgba(245,158,11,.15); color: #fbbf24; font-size: 12px; padding: 8px 12px; border-radius: 8px; margin-top: 10px; border: 1px solid rgba(245,158,11,.2); }
.account-nav { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; }
.account-nav a { display: flex; align-items: center; gap: 8px; padding: 12px 18px; font-size: 14px; font-weight: 500; color: #64748b; border-bottom: 1px solid #f8fafc; transition: all .1s; }
.account-nav a:last-child { border-bottom: none; }
.account-nav a:hover { background: #f8fafc; color: #4361ee; text-decoration: none; }
.account-nav a.active { background: #eff2ff; color: #4361ee; font-weight: 600; }
.notif-badge-sm { display: inline-block; background: #ef4444; color: #fff; border-radius: 10px; font-size: 10px; padding: 1px 6px; margin-left: auto; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px; }
.stat-label { font-size: 12px; color: #94a3b8; font-weight: 500; margin-bottom: 6px; }
.stat-value { font-size: 26px; font-weight: 700; color: #1a1a2e; }
.stat-value.green { color: #059669; }
.section-block { margin-bottom: 32px; }
.section-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.section-hdr h2 { font-size: 18px; font-weight: 700; color: #1a1a2e; }
.link-more { font-size: 13px; color: #4361ee; font-weight: 500; }
.ticket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.ticket-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; padding: 16px; transition: all .2s; }
.ticket-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.ticket-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.ticket-draw-name { font-size: 13px; font-weight: 700; color: #1a1a2e; }
.ticket-prize { font-size: 22px; font-weight: 700; background: linear-gradient(135deg, #4361ee, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.ticket-no { font-size: 12px; color: #94a3b8; margin-top: 8px; font-family: monospace; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid #e2e8f0; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; padding: 12px 16px; background: #f8fafc; border-bottom: 1px solid #e2e8f0; color: #64748b; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; color: #334155; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #f8fafc; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 6px; }
.form-control { width: 100%; padding: 10px 14px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 14px; font-family: inherit; background: #fff; color: #1a1a2e; transition: border-color .15s; }
.form-control:focus { outline: none; border-color: #4361ee; box-shadow: 0 0 0 3px rgba(67,97,238,.1); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.form-checkboxes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; color: #334155; }
.checkbox-label input[type=checkbox] { width: 17px; height: 17px; cursor: pointer; accent-color: #4361ee; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.form-control-file { font-size: 14px; color: #64748b; }
.current-image { max-width: 100px; margin-top: 8px; border-radius: 10px; }
.form-layout { max-width: 880px; }
.admin-form { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; }
.form-error { color: #ef4444; font-size: 13px; margin-top: 4px; font-weight: 500; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 48px 20px; color: #94a3b8; background: #fff; border-radius: 16px; border: 2px dashed #e2e8f0; }
.empty-state p { font-size: 15px; }

/* ===== PAYMENT PAGES ===== */
.payment-result { max-width: 500px; margin: 60px auto; text-align: center; background: #fff; border-radius: 20px; padding: 52px 36px; border: 1px solid #e2e8f0; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.payment-result .icon { font-size: 64px; margin-bottom: 20px; }
.payment-result h1 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: #1a1a2e; }
.payment-result p { font-size: 15px; color: #64748b; margin-bottom: 28px; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: #1a1a2e; margin-top: 60px; padding: 48px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: start; gap: 40px; }
.footer-brand .logo { color: #fff; font-size: 20px; }
.footer-brand p { font-size: 13px; color: #64748b; margin-top: 6px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: #64748b; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid #334155; margin-top: 36px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: #475569; }
.footer-badges { display: flex; gap: 10px; }
.footer-badge { background: rgba(255,255,255,.05); border: 1px solid #334155; color: #64748b; font-size: 11px; padding: 4px 10px; border-radius: 6px; font-weight: 500; }

/* ===== AUTH PAGES ===== */
.auth-wrap { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-layout { width: 100%; max-width: 460px; }
.auth-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-card h1 { font-size: 26px; font-weight: 700; margin-bottom: 6px; color: #1a1a2e; }
.auth-card .auth-sub { font-size: 14px; color: #64748b; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: #64748b; }

/* ===== MISC ===== */
.text-center { text-align: center; }
.text-muted { color: #94a3b8; }
.mt-4 { margin-top: 24px; }
.mb-3 { margin-bottom: 12px; }
.green { color: #059669; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .draws-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .countdown-boxes { gap: 5px; }
  .cd-box { min-width: 44px; padding: 6px 8px; }
}

/* ===== POOL AMOUNT BOX ===== */
.pool-amount-box { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1px solid #bbf7d0; border-radius: 12px; padding: 14px 16px; margin: 10px 0; }
.pool-label { font-size: 11px; font-weight: 700; color: #166534; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.pool-value { font-size: 28px; font-weight: 700; color: #166534; }
.pool-sub { font-size: 12px; color: #94a3b8; margin-top: 3px; }

/* ===== PAYMENT TABS ===== */
.pay-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; border-bottom: 2px solid #f1f5f9; padding-bottom: 0; }
.pay-tab { padding: 10px 16px; border: none; background: none; cursor: pointer; font-size: 13px; font-weight: 600; color: #94a3b8; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .15s; border-radius: 8px 8px 0 0; }
.pay-tab:hover { color: #4361ee; background: #f8fafc; }
.pay-tab.active { color: #4361ee; border-bottom-color: #4361ee; background: #eff2ff; }

/* ===== PAYMENT METHOD INFO ===== */
.pay-method-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.pay-fee { font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 8px; background: #f8fafc; color: #64748b; }
.pay-fee.good { background: #f0fdf4; color: #166534; }
.pay-fee.warn { background: #fffbeb; color: #92400e; }

/* ===== BANK DETAILS ===== */
.bank-details-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; }
.bank-row { display: flex; flex-direction: column; padding: 12px 16px; border-bottom: 1px solid #f1f5f9; }
.bank-row:last-child { border-bottom: none; }
.bank-label { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.bank-value-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bank-value { font-size: 14px; font-weight: 600; color: #1a1a2e; font-family: monospace; word-break: break-all; }
.copy-btn { flex-shrink: 0; padding: 4px 12px; border: 1px solid #e2e8f0; border-radius: 6px; background: #fff; font-size: 12px; font-weight: 600; color: #4361ee; cursor: pointer; transition: all .15s; white-space: nowrap; }
.copy-btn:hover { background: #eff2ff; border-color: #4361ee; }

/* ===== KO-FI ===== */
.kofi-amounts { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.kofi-amount-btn { padding: 8px 16px; border: 2px solid #e2e8f0; border-radius: 10px; background: #fff; font-size: 13px; font-weight: 600; cursor: pointer; color: #64748b; transition: all .15s; }
.kofi-amount-btn:hover { border-color: #FF5E5B; color: #FF5E5B; }
.kofi-amount-btn.active { border-color: #FF5E5B; background: #fff5f5; color: #FF5E5B; }

/* ===== CRYPTO ===== */
.crypto-coins { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.coin-btn { padding: 7px 14px; border: 2px solid #e2e8f0; border-radius: 10px; background: #fff; font-size: 13px; font-weight: 600; cursor: pointer; color: #64748b; transition: all .15s; }
.coin-btn:hover { border-color: #f59e0b; color: #92400e; }
.coin-btn.active { border-color: #f59e0b; background: #fffbeb; color: #92400e; }
.coin-address-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px; }
.coin-network-badge { display: inline-block; background: #fffbeb; color: #92400e; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.qr-placeholder { width: 100px; height: 100px; background: #f1f5f9; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 14px; }
.coin-address-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 10px 14px; }
.coin-address-row code { font-size: 12px; word-break: break-all; flex: 1; color: #334155; }
.crypto-warning { background: #fef2f2; border: 1px solid #fecaca; border-radius: 10px; padding: 12px 14px; font-size: 12px; color: #991b1b; margin-top: 14px; font-weight: 500; }
