:root {
  --card-width: 380px;
  --header-bg: #1a1a1a;
  --text: #111;
  --muted: #666;
  --play-border: #ccc;
}

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

body.smartlink-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text);
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: -20px;
  z-index: 0;
  background: #2a2420 center/cover no-repeat;
  background-image: var(--bg-art, linear-gradient(135deg, #3d3428, #1a1612));
  filter: blur(28px) saturate(1.2);
  transform: scale(1.08);
}

.page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.orcd-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 2rem;
}

.orcd-card {
  width: 100%;
  max-width: var(--card-width);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  animation: cardIn 0.5s ease;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.orcd-art {
  width: 100%;
  aspect-ratio: 1;
  background: #eee;
  overflow: hidden;
}

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

.orcd-art-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #999;
  background: #e8e8e8;
}

.orcd-header {
  background: var(--header-bg);
  color: #fff;
  padding: 1rem 1.15rem 1.1rem;
  text-align: center;
}

.orcd-header h1 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.orcd-header p {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.orcd-services {
  background: #fff;
}

.orcd-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid #eee;
  transition: background 0.15s;
}

.orcd-row:last-child {
  border-bottom: none;
}

.orcd-row:hover {
  background: #f8f8f8;
}

.orcd-row-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orcd-row-icon img {
  max-width: 100%;
  max-height: 100%;
}

.orcd-row-name {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
}

.orcd-row-play {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--play-border);
  border-radius: 4px;
  padding: 0.35rem 0.85rem;
  min-width: 52px;
  text-align: center;
}

.orcd-row:hover .orcd-row-play {
  border-color: #999;
  color: #333;
}

.orcd-empty {
  padding: 2rem 1.15rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.orcd-footer {
  margin-top: 1.25rem;
  text-align: center;
}

.orcd-footer a {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.orcd-footer a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Landing page */
.landing {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
}

.landing .brand-mark {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.landing h1 { font-size: 1rem; opacity: 0.85; margin-bottom: 2rem; }
.landing .btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #ffd700;
  color: #111;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
}
