:root {
  --bg: #0f1720;
  --panel: #1a1f2b;
  --accent: #ff6b00;
  --white: #ffffff;
  --page-width: 900px;
}

body {
  margin: 40px;
  background: var(--bg);
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--white);
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: var(--page-width);
}

.title {
  text-align: center;
  margin-bottom: 28px;
}

.title h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.title p {
  margin: 6px 0 0;
  color: #dbe6ff;
  opacity: 0.9;
}

.section {
  margin: 28px 0;
  padding: 18px 12px;
}

.section-header {
  color: var(--accent);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.desc {
  color: var(--white);
  opacity: 0.95;
  font-size: 18px;
  margin-bottom: 16px;
}

/* Logo box */
.logo-box {
  width: 400px;
  height: 120px;
  margin: 0 auto;
  background: var(--panel);
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  border: 3px solid var(--accent);
}

/* Cover image */
.cover-wrap {
  width: 600px;
  height: 338px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--accent);
  background: var(--panel);
}

.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Business name section */
.name-wrap {
  text-align: center;
  padding-top: 6px;
}

.business-name {
  font-size: 48px;
  font-weight: 800;
  margin: 6px 0;
}

.tagline {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 12px;
}

.underline {
  width: 120px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .logo-box {
    width: 320px;
    height: 96px;
  }

  .cover-wrap {
    width: 320px;
    height: 180px;
  }

  .business-name {
    font-size: 34px;
  }
}
.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-top: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

