:root {
  --ink: #0e0e12;
  --ink-soft: #2a2a35;
  --ink-muted: #6b6b7e;
  --gold: #c9922a;
  --gold-light: #f0c060;
  --gold-pale: #fdf3dc;
  --cream: #faf7f2;
  --white: #ffffff;
  --accent: #e84d3d;
  --surface: #f5f2ec;
  --border: #e2ddd4;
  --primary: #c9922a;
  --primary-hover: #b8862a;
  --secondary: #64748b;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --bg: #ffffff;
  --bg-secondary: #f5f2ec;
  --text: #0e0e12;
  --text-secondary: #6b6b7e;
  --shadow: 0 4px 24px rgba(14,14,18,.08);
  --shadow-lg: 0 8px 40px rgba(14,14,18,.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans SC', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 24px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--border);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  <!--padding: 16px 20px;-->
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  /*  font-weight: 600;*/
}

.logo em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin: 5 0;
}
.logo img {
  height: 60px;
}

.logo [name="logoSlogan"] {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,146,42,.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '✦';
  font-size: 10px;
}

.hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-left: 50px;
  margin-bottom: 10px;
}

.hero-title-row [name="logoSlogan"] {
font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 2 0;  
  line-height: 2.5;
  flex-shrink: 0;
  
}
.hero-slogan {
  font-family: 'Noto Serif SC, serif';
  font-size: clamp(1.5rem, 2vw, 2rem); 
  line-height: 2.5;
  color: var(--ink);
}
.hero h1 {
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 2.5;
  color: var(--ink);
  margin: 5 0;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  padding: 0px 20px;
  margin: 0px 20px;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-card-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.name-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.name-tag {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  transition: var(--transition);
  cursor: pointer;
}

.name-tag.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.name-tag.gold {
  background: linear-gradient(135deg, var(--gold), #e8a020);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(201,146,42,.3);
}

.domain-list {
  margin: 0px 10px;
}

.domain-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 6px;
  background: var(--surface);
}

.domain-item.avail {
  background: linear-gradient(90deg, #f0faf4, #e8f7ed);
  border: 1px solid #c3e6cb;
}

.domain-item.avail .domain-name {
  color: #1a6b3a;
  font-weight: 600;
}

.domain-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.badge-avail {
  background: #c3e6cb;
  color: #1a6b3a;
}

.badge-taken {
  background: #f5d0cd;
  color: #9b2c2c;
}

.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  animation: float 2s ease-in-out infinite;
  z-index: 10;
}

.float-card-1 {
  top: -20px;
  right: -45px;
  animation-delay: 2.5s;
}

.float-card-2 {
  bottom: -35px;
  left: -75px;
  animation-delay: 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-label {
  font-size: 11px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.float-value {
  font-weight: 700;
  color: var(--ink);
}

.hero-features {
  display: none;
}

.section {
  padding: 30px 20px 10px 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how-it-works {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background: var(--surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 32px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  animation: float 3s ease-in-out infinite;
}

.step-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.step-icon:nth-child(3) {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.circle-float {
  animation: float 3s ease-in-out infinite;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: var(--text-secondary);
  font-size: 14px;
}

.name-generator {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
  color: var(--white);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.name-generator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(201, 146, 42, 0.15), transparent);
  pointer-events: none;
}

.name-generator .section-title {
  color: var(--white);
}

.name-generator .hero-sub,
.name-generator p {
  color: rgba(255,255,255,.6);
}

.generator-form {
  max-width: 800px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.input-group input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  font-size: 15px;
  color: var(--white);
  transition: var(--transition);
}

.input-group input::placeholder {
  color: rgba(255,255,255,.35);
}

.input-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(201,146,42,.15);
}

.options-group {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

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

.option-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  margin: 0;
}

.option-buttons {
  display: flex;
  gap: 8px;
}

.option-btn {
  padding: 8px 16px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  font-weight: 500;
}

.option-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.option-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 32px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 0;
  border-bottom: none;
}

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

.footer-brand .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer-slogans {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.footer-slogan-primary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.footer-slogan-secondary {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.5;
}

.footer-nav-group {
  display: flex;
  gap: 48px;
  margin-left: auto;
}

.footer-nav-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col a {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav-col a:hover {
  color: var(--gold);
}

.footer-copyright {
  width: 100%;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  color: rgba(255,255,255,.25);
  text-align: center;
}

.advanced-options {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
}

.advanced-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.advanced-toggle:hover {
  background: rgba(255,255,255,.08);
}

.toggle-icon {
  font-size: 10px;
  transition: transform 0.3s;
}

.advanced-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.advanced-fields {
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  gap: 8px;
}

.field-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.field-hint {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}

.field-label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-label-wrapper .field-label {
  margin: 0;
}

.field-label-wrapper .field-hint {
  margin: 0;
}

.field-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.field-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: var(--transition);
}

.field-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.field-chip input:checked + span,
.field-chip input:checked {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.field-chip input[type="checkbox"]:checked,
.field-chip input[type="radio"]:checked {
  accent-color: var(--gold);
}

.field-chip input[type="checkbox"]:checked::before,
.field-chip input[type="radio"]:checked::before {
  content: '✓';
  margin-right: 4px;
}

.field-input{
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  font-size: 14px;
  color: white;
  transition: var(--transition);
}

.field-input::placeholder {
  color: rgba(255,255,255,.35);
}

.field-input:focus{
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}

.field-input-inline {
  padding: 6px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: 13px;
  color: white;
  transition: var(--transition);
  width: 100px;
}

.field-input-inline::placeholder {
  color: rgba(255,255,255,.35);
}

.field-input-inline:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
  width: 140px;
}

.field-chip input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.field-chip:has(input:checked){
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.modal{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 20px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
}

.modal-body {
  padding: 24px;
}

.toast-message {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, -20px); }
}

.domain-checker {
  padding: 40px 20px;
}

.checker-form {
  max-width: 800px;
  margin: 0 auto;
}

.domain-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.domain-input-group input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 18px;
}

.domain-input-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.zones-section {
  margin-bottom: 24px;
}

.zones-section h3 {
  margin-bottom: 16px;
  font-size: 16px;
}

.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.zone-btn {
  padding: 8px 16px;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.zone-btn:hover {
  border-color: var(--primary);
}

.zone-btn.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.zone-btn .remove-zone {
  margin-left: 8px;
  color: inherit;
  opacity: 0.7;
}

.zone-btn .remove-zone:hover {
  opacity: 1;
}

.add-zone {
  display: flex;
  gap: 8px;
}

.add-zone input {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 120px;
}

.add-zone button {
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

.results-section {
  margin-top: 32px;
}

.check-results {
  margin-top: 24px;
}

.result-section {
  margin-bottom: 24px;
}

.result-section h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.domain-list {
  display: grid;
  gap: 8px;
}

.domain-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}

.domain-item.available {
  background: #ecfdf5;
  border: 1px solid #10b981;
}

.domain-item.taken {
  background: #fef2f2;
  border: 1px solid #ef4444;
}

.domain-name {
  font-weight: 500;
}

.register-btn, .whois-btn, .retry-btn {
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.register-btn {
  background: var(--success);
  color: white;
  border: none;
}

.whois-btn, .retry-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}

.history-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.history-section h3 {
  margin-bottom: 16px;
}

.history-list {
  display: grid;
  gap: 8px;
}

.history-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
}

.history-item .domain-name {
  flex: 1;
}

.checked-time {
  color: var(--text-secondary);
  font-size: 12px;
}

.checking-state {
  text-align: center;
  padding: 48px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px;
}

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

.empty-state {
  text-align: center;
  color: var(--text-secondary);
  padding: 32px;
}

.name-results {
  max-height: 400px;
  overflow-y: auto;
}

.language-section {
  margin-bottom: 24px;
}

.language-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.type-section {
  margin-bottom: 16px;
}

.type-section h4 {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.names-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.name-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  cursor: pointer;
}

.name-item.locked {
  opacity: 0.6;
}

.lock-icon {
  font-size: 12px;
}

.check-domain-btn {
  padding: 4px 8px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

.unlock-section {
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  margin-top: 24px;
  text-align: center;
}

.unlock-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.unlock-btn {
  padding: 16px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.unlock-btn small {
  font-size: 12px;
  opacity: 0.8;
}

.payment-header {
  text-align: center;
  margin-bottom: 24px;
}

.payment-header .price {
  font-size: 24px;
  color: var(--primary);
}

.payment-id {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.payment-id .name-id {
  color: var(--primary);
  font-size: 16px;
}

.copy-btn {
  padding: 4px 8px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.payment-qrcodes {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.qrcode-item {
  text-align: center;
}

.qrcode-item img {
  width: 150px;
  height: 150px;
  border-radius: var(--radius);
  margin-bottom: 8px;
}

.payment-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

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

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .options-group {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .domain-input-group {
    flex-direction: column;
  }

  .payment-qrcodes {
    flex-direction: column;
    align-items: center;
  }
}
