:root {
  --bg: #070707;
  --panel: #101113;
  --panel-2: #17181b;
  --gold: #d4a139;
  --gold-light: #f6d47a;
  --text: #ffffff;
  --muted: #a7a7a7;
  --border: rgba(212, 161, 57, 0.38);
  --green: #25d366;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(212, 161, 57, 0.18), transparent 35%),
    linear-gradient(145deg, #020202, #111111 50%, #050505);
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.phone-screen {
  width: min(100%, 390px);
  min-height: 820px;
  border: 2px solid #232323;
  border-radius: 34px;
  padding: 18px 16px 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 14%),
    linear-gradient(180deg, #08090b, #0d0e10 55%, #070707);
  box-shadow: 0 24px 70px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}

.phone-screen::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 22px;
  border-radius: 0 0 18px 18px;
  background: #020202;
  z-index: 2;
}

.top-header {
  text-align: center;
  padding-top: 26px;
}

.status-light {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  margin: 0 auto 9px;
  background: #111;
  box-shadow: 0 0 10px rgba(255,255,255,0.35);
}

.top-header h1 {
  margin: 0;
  color: var(--gold-light);
  font-size: 24px;
  letter-spacing: 2px;
}

.top-header p {
  margin: 5px 0 0;
  color: #e7e7e7;
  font-size: 13px;
}

.hero-stage {
  height: 165px;
  margin: 18px -6px 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 217, 136, 0.32), transparent 22%),
    linear-gradient(180deg, #18120b, #0a0a0b 60%, #111111);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 18px 12px;
  overflow: hidden;
}

.spotlight {
  position: absolute;
  top: -50px;
  width: 250px;
  height: 170px;
  background: radial-gradient(circle, rgba(247, 209, 125, 0.28), transparent 70%);
}

.showcase-card {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 110px;
  border: 1px solid var(--border);
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: perspective(400px) rotateY(-6deg);
}

.trophy-main {
  width: 104px;
  height: 130px;
  border-color: rgba(246, 212, 122, 0.55);
  transform: translateY(-8px);
}

.glass-award {
  background: linear-gradient(145deg, rgba(80, 165, 255, 0.28), rgba(255,255,255,0.04));
}

.memento-card {
  transform: perspective(400px) rotateY(6deg);
}

.award-icon {
  font-size: 42px;
  filter: drop-shadow(0 8px 10px rgba(0,0,0,0.55));
}

.showcase-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.quick-actions,
.studio-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.category,
.action-btn {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--text);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 11px 6px 10px;
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}

.category span,
.action-btn span {
  color: var(--gold-light);
  font-size: 26px;
  line-height: 1;
}

.category strong,
.action-btn strong {
  font-size: 11px;
  line-height: 1.15;
  font-weight: 600;
}

.category.active {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,161,57,0.22), #121212);
}

.detail-panel {
  margin: 14px 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(212, 161, 57, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(212, 161, 57, 0.15);
  color: var(--gold-light);
  font-size: 24px;
  flex: 0 0 auto;
}

.detail-panel h2 {
  margin: 0;
  font-size: 16px;
  color: var(--gold-light);
}

.detail-panel p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #d8d8d8;
}

.inquiry-box {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: #101113;
}

.inquiry-box h2 {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--gold-light);
}

label {
  display: block;
  margin-bottom: 10px;
  color: #e9e9e9;
  font-size: 12px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 5px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 11px;
  background: #0b0b0c;
  color: var(--text);
  padding: 10px;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.whatsapp-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  color: #071106;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
}

.contact-footer {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 8px;
}

.footer-btn,
.save-btn {
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--gold-light);
  border-radius: 999px;
  background: transparent;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.save-btn {
  background: rgba(212, 161, 57, 0.12);
}

@media (max-width: 380px) {
  .phone-screen {
    min-height: auto;
    border-radius: 26px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .quick-actions,
  .studio-actions {
    gap: 6px;
  }

  .category,
  .action-btn {
    min-height: 68px;
    padding: 9px 4px;
  }

  .category strong,
  .action-btn strong {
    font-size: 10px;
  }
}
