/* HostZone — Main Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0f1e;
  --bg2: #0d1529;
  --card: #111827;
  --border: rgba(255,255,255,0.08);
  --primary: #06b6d4;
  --primary-dark: #0891b2;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --green: #22c55e;
  --red: #ef4444;
  --yellow: #eab308;
  --radius: 12px;
  --font: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 15px; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
ul { list-style: none; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Topbar */
.topbar { background: var(--bg2); border-bottom: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 32px; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(10,15,30,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; height: 64px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 20px; color: var(--text); text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg,#06b6d4,#0284c7); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.logo-accent { color: var(--primary); }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all .2s; text-decoration: none; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(6,182,212,.1); text-decoration: none; }
.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn:hover { text-decoration: none; }
.btn-primary { background: linear-gradient(135deg,#06b6d4,#0284c7); color: #fff; box-shadow: 0 0 20px rgba(6,182,212,.3); }
.btn-primary:hover { box-shadow: 0 0 30px rgba(6,182,212,.5); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: rgba(6,182,212,.1); }
.btn-danger { background: var(--red); color: #fff; }
.btn-success { background: var(--green); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* Cart btn */
.cart-btn { position: relative; font-size: 20px; padding: 6px; border-radius: 8px; color: var(--text); transition: .2s; }
.cart-btn:hover { background: rgba(255,255,255,.05); text-decoration: none; }
.cart-badge { position: absolute; top: -2px; right: -4px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* User menu */
.user-menu { position: relative; }
.user-btn { display: flex; align-items: center; gap: 8px; background: transparent; border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; color: var(--text); cursor: pointer; font-size: 14px; }
.user-btn:hover { border-color: rgba(255,255,255,.2); }
.user-avatar { width: 26px; height: 26px; background: rgba(6,182,212,.2); border: 1px solid rgba(6,182,212,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--primary); }
.dropdown { display: none; position: absolute; right: 0; top: calc(100% + 8px); background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); min-width: 180px; padding: 6px; z-index: 200; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.dropdown.open { display: block; }
.dropdown a { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 8px; color: var(--text); font-size: 14px; }
.dropdown a:hover { background: rgba(255,255,255,.05); text-decoration: none; }
.dropdown a.admin-link { color: var(--primary); }
.dropdown-sep { height: 1px; background: var(--border); margin: 4px 0; }

/* Mobile toggle */
.mobile-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); border-radius: 8px; padding: 7px 11px; cursor: pointer; font-size: 18px; }

/* Flash */
.flash { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 500; }
.flash-success { background: rgba(34,197,94,.15); border-bottom: 1px solid rgba(34,197,94,.3); color: #86efac; }
.flash-error   { background: rgba(239,68,68,.15); border-bottom: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.flash-warning { background: rgba(234,179,8,.15); border-bottom: 1px solid rgba(234,179,8,.3); color: #fde047; }
.flash-close { background: none; border: none; color: inherit; font-size: 20px; cursor: pointer; line-height: 1; }

/* Main */
.main-content { flex: 1; }

/* Hero */
.hero { background: radial-gradient(ellipse at center, rgba(6,182,212,.08) 0%, transparent 70%), linear-gradient(180deg,#0d1529 0%,#0a0f1e 100%); padding: 80px 0 100px; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.2); color: var(--primary); padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: clamp(36px,6vw,64px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { background: linear-gradient(135deg,#06b6d4,#818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 40px; }

/* Search bar */
.search-box { display: flex; max-width: 640px; margin: 0 auto; border: 1px solid rgba(6,182,212,.3); border-radius: 12px; overflow: hidden; background: var(--card); box-shadow: 0 0 40px rgba(6,182,212,.15); }
.search-icon { padding: 0 14px; color: var(--muted); font-size: 18px; display: flex; align-items: center; }
.search-input { flex: 1; background: transparent; border: none; outline: none; color: var(--text); font-size: 15px; padding: 14px 8px; font-family: var(--font); }
.search-input::placeholder { color: var(--muted); }
.search-btn { background: linear-gradient(135deg,#06b6d4,#0284c7); color: #fff; border: none; padding: 14px 24px; font-size: 15px; font-weight: 700; cursor: pointer; transition: .2s; }
.search-btn:hover { background: linear-gradient(135deg,#0891b2,#0369a1); }
.search-hint { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* Stats bar */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.02); padding: 20px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.stat-val { font-size: 26px; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Cards grid */
.section { padding: 64px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-size: 22px; font-weight: 700; }
.section-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* Card */
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); transition: .2s; }
.card:hover { border-color: rgba(6,182,212,.25); }

/* TLD grid */
.tld-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(130px,1fr)); gap: 12px; }
.tld-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 12px; text-align: center; cursor: pointer; transition: all .2s; }
.tld-card:hover { border-color: rgba(6,182,212,.4); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(6,182,212,.1); }
.tld-ext { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.tld-price { font-size: 14px; font-weight: 600; }
.tld-old { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.tld-sale { font-size: 14px; font-weight: 700; color: var(--green); }
.tld-renew { font-size: 11px; color: var(--muted); }
.badge-pop { display: inline-block; background: rgba(6,182,212,.15); color: var(--primary); border: 1px solid rgba(6,182,212,.2); font-size: 10px; padding: 1px 7px; border-radius: 999px; margin-bottom: 4px; }

/* Plans grid */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.plan-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; transition: .2s; position: relative; }
.plan-card:hover { border-color: rgba(6,182,212,.3); }
.plan-card.popular { border-color: rgba(6,182,212,.4); box-shadow: 0 0 30px rgba(6,182,212,.1); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 999px; }
.plan-name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.plan-price { margin-bottom: 20px; }
.plan-price .amount { font-size: 36px; font-weight: 900; color: var(--primary); }
.plan-price .per { font-size: 14px; color: var(--muted); }
.plan-price .annual { font-size: 12px; color: var(--muted); }
.plan-features { flex: 1; margin-bottom: 22px; }
.plan-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 8px; }
.plan-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.feature-icon { width: 44px; height: 44px; background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.feature-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.stars { color: var(--yellow); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; font-style: italic; }
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* CTA section */
.cta-section { position: relative; background: var(--card); border: 1px solid rgba(6,182,212,.2); border-radius: 20px; padding: 60px 40px; text-align: center; overflow: hidden; margin: 0 0 64px; }
.cta-section::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at center, rgba(6,182,212,.08) 0%, transparent 70%); }
.cta-section h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.cta-section p { color: var(--muted); max-width: 440px; margin: 0 auto 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Trust badges */
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 24px; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }

/* Page header */
.page-header { padding: 48px 0 32px; }
.page-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.page-header p { color: var(--muted); }

/* Filter bar */
.filter-bar { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-input { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; color: var(--text); font-size: 14px; outline: none; font-family: var(--font); }
.filter-input:focus { border-color: rgba(6,182,212,.4); }
.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 500; border: 1px solid var(--border); color: var(--muted); cursor: pointer; background: transparent; transition: .2s; }
.chip:hover, .chip.active { background: rgba(6,182,212,.15); color: var(--primary); border-color: rgba(6,182,212,.3); }

/* Search results */
.result-available { border: 1px solid rgba(34,197,94,.25) !important; }
.result-taken { opacity: .55; }
.result-row { display: flex; align-items: center; justify-content: space-between; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; transition: .2s; }
.result-status { font-size: 13px; font-weight: 600; }
.status-available { color: var(--green); }
.status-taken { color: var(--muted); }
.result-price { text-align: right; }
.result-price .sale { color: var(--green); font-weight: 700; font-size: 16px; }
.result-price .old { text-decoration: line-through; font-size: 12px; color: var(--muted); }

/* Cart */
.cart-item { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.item-icon { width: 40px; height: 40px; background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.item-name { font-weight: 600; font-size: 15px; }
.item-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.item-price { font-weight: 700; font-size: 16px; text-align: right; }
.item-price .per-yr { font-size: 12px; color: var(--muted); font-weight: 400; }
.remove-btn { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 18px; padding: 4px; border-radius: 6px; transition: .2s; }
.remove-btn:hover { color: var(--red); background: rgba(239,68,68,.1); }

/* Order summary */
.order-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.summary-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 700; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 6px; margin-bottom: 20px; }
.summary-total span:last-child { color: var(--primary); }
.pay-methods { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pay-method { font-size: 12px; padding: 5px 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; color: var(--muted); }

/* Form */
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-input { width: 100%; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; color: var(--text); font-size: 14px; outline: none; font-family: var(--font); transition: .2s; }
.form-input:focus { border-color: rgba(6,182,212,.4); }
.form-input.has-icon { padding-left: 40px; }
.input-wrap { position: relative; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 16px; pointer-events: none; }
.form-error { color: var(--red); font-size: 12px; margin-top: 4px; }
.form-link { font-size: 13px; color: var(--primary); }
.form-footer { text-align: center; font-size: 14px; color: var(--muted); margin-top: 20px; }
.form-tos { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; }

/* Auth page layout */
.auth-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-box { width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 28px; }

/* 2col auth */
.auth-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%; max-width: 900px; }
.auth-perks h2 { font-size: 30px; font-weight: 800; line-height: 1.2; margin: 20px 0 12px; }
.auth-perks h2 span { color: var(--primary); }
.auth-perks p { color: var(--muted); margin-bottom: 20px; }
.perk-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 10px; }
.perk-check { width: 20px; height: 20px; background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 11px; flex-shrink: 0; }

/* Dashboard */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.stat-card .val { font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-card .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Tables */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; font-size: 12px; font-weight: 600; color: var(--muted); padding: 10px 14px; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: .5px; }
td { padding: 13px 14px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.03); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,.02); }

/* Badges */
.badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.badge-pending  { background: rgba(234,179,8,.15); color: var(--yellow); }
.badge-active   { background: rgba(34,197,94,.15);  color: var(--green); }
.badge-paid     { background: rgba(99,102,241,.15); color: #a5b4fc; }
.badge-cancelled{ background: rgba(239,68,68,.15);  color: var(--red); }
.badge-expired  { background: rgba(148,163,184,.1); color: var(--muted); }
.badge-admin    { background: rgba(6,182,212,.15);  color: var(--primary); }
.badge-user     { background: rgba(148,163,184,.1); color: var(--muted); }

/* Admin layout */
.admin-wrap { display: flex; min-height: calc(100vh - 97px); }
.admin-sidebar { width: 220px; flex-shrink: 0; border-right: 1px solid var(--border); background: rgba(255,255,255,.01); padding: 16px; }
.admin-sidebar h3 { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin: 16px 0 6px 8px; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; color: var(--muted); font-size: 14px; transition: .2s; margin-bottom: 2px; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(6,182,212,.1); color: var(--primary); text-decoration: none; }
.admin-main { flex: 1; padding: 28px; overflow-x: auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.admin-header h1 { font-size: 22px; font-weight: 700; }

/* Alert box */
.alert { padding: 14px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px; }
.alert-warning { background: rgba(234,179,8,.1); border: 1px solid rgba(234,179,8,.25); color: #fde047; }
.alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); color: #86efac; }
.alert-info    { background: rgba(6,182,212,.1); border: 1px solid rgba(6,182,212,.25); color: var(--primary); }
.alert-danger  { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25); color: #fca5a5; }

/* Settings */
.settings-layout { display: flex; gap: 28px; }
.settings-nav { width: 200px; flex-shrink: 0; }
.settings-nav a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; color: var(--muted); font-size: 14px; transition: .2s; margin-bottom: 2px; }
.settings-nav a:hover, .settings-nav a.active { background: rgba(6,182,212,.1); color: var(--primary); text-decoration: none; }
.settings-content { flex: 1; }

/* Hosting detail */
.hosting-detail { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }

/* Order detail */
.order-status-bar { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: var(--radius); margin-bottom: 16px; }

/* Page not found */
.not-found { text-align: center; padding: 100px 20px; }
.not-found .code { font-size: 100px; font-weight: 900; color: var(--primary); opacity: .4; line-height: 1; }
.not-found h2 { font-size: 28px; font-weight: 700; margin: 16px 0 10px; }

/* Pagination */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 24px; }
.pagination a, .pagination span { padding: 7px 13px; border-radius: 8px; border: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 999; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; max-width: 440px; width: 90%; }
.modal h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

/* Footer */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 10px 0; max-width: 280px; }
.footer-badges { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--muted); margin: 10px 0; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a { font-size: 13px; color: var(--muted); border: 1px solid var(--border); padding: 4px 12px; border-radius: 6px; }
.footer-social a:hover { color: var(--primary); border-color: rgba(6,182,212,.3); text-decoration: none; }
.footer-col h4 { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); }
.footer-col ul li a:hover { color: var(--primary); text-decoration: none; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-top: 1px solid var(--border); margin-top: 40px; font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--primary); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px; }
  .nav-links.open { display: flex; }
  .navbar { position: relative; }
  .mobile-toggle { display: block; }
  .user-name { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-2col { grid-template-columns: 1fr; }
  .auth-perks { display: none; }
  .hosting-detail { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .settings-layout { flex-direction: column; }
  .settings-nav { width: 100%; display: flex; gap: 6px; overflow-x: auto; }
  .cta-section { padding: 40px 20px; }
}
