:root {
  --gold: #d4af37;
  --gold-soft: #f0d789;
  --gold-deep: #b8860b;
  --coral: var(--gold);
  --coral-dark: var(--gold-deep);
  --ink: #f3e6c4;
  --muted: #b8a574;
  --line: #3a3118;
  --bg: #0a0a0a;
  --soft: #16120a;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --nav-h: 72px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  background: #000000;
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, sans-serif;
  color-scheme: dark;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

#app {
  max-width: 430px;
  min-height: 100dvh;
  margin: 0 auto;
  background:
    radial-gradient(ellipse at top, #2a2110 0%, #0a0a0a 42%, #000 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.12);
}

.screen {
  min-height: 100dvh;
  padding-bottom: 12px;
}

.brand {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 44px;
  line-height: 1.1;
  color: var(--gold);
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.35);
  padding: 20px 8px 8px;
}

.brand-tagline {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin: 0 16px 18px;
}

.home-search {
  display: grid;
  gap: 14px;
}

.home-search .btn {
  margin-top: 4px;
}

.top {
  background: var(--bg);
  padding: 8px 16px 12px;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 10px 14px;
  background: var(--soft);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}

.search-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}

.search-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.search-copy span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 16px 6px;
  scrollbar-width: none;
}

.cats::-webkit-scrollbar {
  display: none;
}

.cat {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 10px 10px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.cat.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.grid {
  padding: 8px 20px 20px;
  display: grid;
  gap: 22px;
}

.card {
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.photo-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 0.95;
  background: #1a1a1a;
  border: 1px solid var(--line);
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #111;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.heart.on {
  color: var(--coral);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.card-meta h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.card-meta p,
.muted {
  color: var(--muted);
  font-size: 16px;
  margin-top: 2px;
}

.price {
  margin-top: 4px;
  font-size: 14px;
}

.price b {
  font-weight: 800;
}

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: #050505;
  padding-top: env(safe-area-inset-top);
}

.nav button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav button.active {
  color: var(--coral);
}

.nav svg {
  width: 22px;
  height: 22px;
}

.nav-ico {
  position: relative;
  display: inline-flex;
}

.nav-count {
  position: absolute;
  top: -7px;
  right: -11px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  font-weight: 800;
  text-align: center;
}

.notif-row {
  grid-template-columns: 36px 1fr;
  width: 100%;
  border: 1px solid var(--line);
  background: #111;
  color: inherit;
  text-align: left;
  cursor: pointer;
  padding: 12px;
}

.notif-row.notif-new {
  border-color: var(--gold);
}

.notif-bell {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-bell svg {
  width: 22px;
  height: 22px;
}

.page-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 8px;
  position: sticky;
  top: 0;
  background: #0a0a0a;
  z-index: 10;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #111;
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.heart-detail {
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 0 0 8px;
}

.gallery img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

.gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.detail {
  padding: 8px 22px 110px;
}

.detail h1 {
  font-size: 26px;
  line-height: 1.2;
  margin: 8px 0 6px;
}

.page-kicker {
  flex: 1;
  text-align: center;
  color: var(--gold);
  font-size: 14px;
}

.descriptif {
  margin: 16px 0 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #111;
}

.descriptif h2 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--gold);
}

.descriptif p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.ticket {
  cursor: pointer;
}

.map-open {
  margin-top: 8px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #111;
  color: var(--gold);
  font-weight: 700;
  padding: 6px 10px;
  cursor: pointer;
}

.host-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.booker-list {
  padding: 0 16px 24px;
}

.booker-row {
  padding: 14px 0;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #2a2414;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}

.avatar-lg {
  width: 72px;
  height: 72px;
}

.avatar-btn {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}

.avatar-btn:hover .avatar,
.avatar-btn:focus-visible .avatar {
  box-shadow: 0 0 0 3px var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.facts {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.facts li {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 15px;
}

.facts span {
  color: var(--muted);
  font-size: 14px;
}

.event-stats {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.event-stats li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #111;
}

.screen-detail {
  padding-bottom: 88px;
}

.owner-bookings-btn {
  width: 100%;
  margin: 12px 0 4px;
}

.cta-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: min(430px, 100%);
  bottom: 0;
  background: #050505;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 16px 22px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
}

.btn-coral {
  background: linear-gradient(90deg, #f0d789 0%, #d4af37 50%, #b8860b 100%);
  color: #111;
}

.btn-dark {
  background: var(--gold);
  color: #111;
  width: 100%;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 100%;
}

.profile-screen {
  display: flex;
  flex-direction: column;
}

.profile-logout {
  margin-top: auto;
  padding: 16px 16px 24px;
}

.form {
  padding: 8px 20px 24px;
  display: grid;
  gap: 14px;
}

.form h1 {
  font-size: 26px;
  margin-bottom: 4px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
}

.home-search label,
.when-label {
  font-size: 20px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--gold-deep);
  border-radius: 12px;
  padding: 16px 14px;
  font-size: 18px;
  background: #111;
  color: var(--gold-soft);
  box-sizing: border-box;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

textarea {
  min-height: 56px;
  height: 56px;
  resize: none;
}

.cat-picker {
  position: relative;
}

.cat-trigger {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--gold-deep);
  border-radius: 12px;
  padding: 16px 40px 16px 14px;
  font-size: 18px;
  font-weight: 700;
  background: #111;
  color: var(--gold-soft);
  text-align: left;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.cat-menu {
  margin-top: 8px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: #111;
  overflow: hidden;
  max-height: 280px;
  overflow-y: auto;
}

.cat-option {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #111;
  color: var(--gold-soft);
  text-align: left;
  padding: 14px 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.cat-option:last-child {
  border-bottom: 0;
}

.cat-option:hover,
.cat-option.on {
  background: #1a1508;
  color: var(--gold);
}

.post-form {
  padding: 8px 16px 24px;
}

.post-form textarea {
  min-height: 140px;
  height: 140px;
  resize: vertical;
}

.yesno {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.yesno-btn {
  min-height: 56px;
  border: 1px solid var(--gold-deep);
  border-radius: 12px;
  background: #111;
  color: var(--gold-soft);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.yesno-btn.on {
  border-color: var(--gold);
  background: #1a1508;
  color: var(--gold);
}

.share-box {
  margin: 8px 0 16px;
  padding: 14px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: #111;
}

.share-box textarea {
  width: 100%;
  margin: 10px 0;
  min-height: 120px;
  font-size: 13px;
  line-height: 1.45;
  resize: none;
}

.share-box .btn {
  width: 100%;
}

.priv-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  vertical-align: middle;
}

.page-title {
  font-size: 22px;
  padding: 0 16px 8px;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
}

.empty {
  padding: 48px 24px;
  text-align: center;
}

.empty h2 {
  margin: 8px 0;
}

.list {
  padding: 8px 16px 24px;
  display: grid;
  gap: 14px;
}

.row-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.row-card img {
  width: 92px;
  height: 88px;
  object-fit: cover;
}

.row-fav {
  grid-template-columns: 1fr auto;
  cursor: default;
  padding-right: 6px;
}

.row-open {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
  min-width: 0;
}

.mine-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 8px 6px 0;
  align-items: stretch;
}

.mine-edit {
  border: 1px solid var(--gold);
  background: #111;
  color: var(--gold);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}

.heart-row {
  position: static;
  color: var(--gold);
  text-shadow: none;
  flex-shrink: 0;
}

.file-btn {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--gold-deep);
  border-radius: 12px;
  background: #111;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.file-name {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.file-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.photo-picks {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.photo-pick-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  background: #111;
  color: var(--gold-soft);
  font-size: 14px;
}

.photo-pick-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.cancel-x {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: #111;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  background: var(--gold);
  color: #111;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 13px;
  z-index: 50;
}

.overlay {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  z-index: 30;
  padding: 16px;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ticket {
  margin: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.ticket img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.ticket .body {
  padding: 14px;
}

.map-toggle {
  margin-top: 10px;
  width: 100%;
  border: 1px solid var(--gold);
  background: transparent;
  border-radius: 24px;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: var(--gold);
}

.map-toggle.on {
  background: #1a1508;
}

.map-toggle svg {
  width: 16px;
  height: 16px;
}

.map-panel {
  padding: 4px 16px 8px;
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gold-deep);
  background: #111;
}

.leaflet-host {
  width: 100%;
  height: 240px;
  background: #0b0b0b;
}

.leaflet-container {
  background: #0b0b0b;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: #111;
  color: #f0d789;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.leaflet-popup-content-wrapper a {
  color: var(--gold);
}

.leaflet-control-zoom a {
  background: #111 !important;
  color: var(--gold) !important;
  border-color: var(--line) !important;
}

.leaflet-control-attribution {
  background: rgba(0, 0, 0, 0.75) !important;
  color: var(--muted) !important;
}

.leaflet-control-attribution a {
  color: var(--gold) !important;
}

.map-iframe-dark,
.map-wrap iframe {
  filter: invert(1) hue-rotate(180deg) brightness(0.9) contrast(0.95);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.map-link {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: underline;
  background: #111;
}

.overlay-scroll {
  overflow-y: auto;
}

.suggest-list {
  display: grid;
  gap: 2px;
  margin-top: -8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.suggest-item {
  border: 0;
  background: #111;
  color: var(--gold-soft);
  text-align: left;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
}

.when-label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.calendar {
  border: 1px solid var(--gold-deep);
  border-radius: 14px;
  padding: 12px;
  background: #111;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.cal-title {
  text-transform: capitalize;
  color: var(--gold);
  font-size: 18px;
}

.cal-week,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.cal-week {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cal-empty {
  min-height: 42px;
}

.cal-day {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--gold-soft);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.cal-day:hover {
  background: #1a1508;
}

.cal-day.selected {
  background: var(--gold);
  color: #111;
}

.cal-chosen {
  margin-top: 8px;
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
}

.cal-date {
  text-transform: capitalize;
  color: var(--gold-soft);
}

.admin-screen {
  padding-bottom: 32px;
}

.admin-url {
  margin: 0 16px 8px;
  font-size: 13px;
}

.admin-h {
  color: var(--gold);
  font-size: 16px;
  margin: 20px 16px 8px;
}

.admin-search-label {
  display: grid;
  gap: 6px;
  margin: 8px 16px 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.admin-search-label input {
  width: 100%;
}

.admin-picked {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.admin-rank-open {
  grid-template-columns: 36px 72px 1fr;
}

.admin-rank-n {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  text-align: center;
}

.admin-user {
  padding: 10px 8px 10px 12px;
  align-items: center;
}

.admin-user-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font: inherit;
}

.admin-user-main .admin-rank-n {
  flex: 0 0 36px;
}

.admin-user-info {
  padding: 8px 0 8px 4px;
  min-width: 0;
}

.auth-screen {
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

.lang-picker {
  display: grid;
  grid-template-columns: repeat(3, 56px);
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding: 28px 0 8px;
}

.lang-flag {
  width: 56px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-flag.on {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

.auth-title {
  text-align: center;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 16px;
}

.auth-error {
  background: #2a1208;
  border: 1px solid #c45c2a;
  color: #f0d789;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 15px;
}

#app.wide {
  max-width: none;
  overflow: auto;
}

.gallery-board {
  min-height: 100dvh;
  padding: 20px 16px 32px;
  background: #000;
}

.gallery-hint {
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 16px;
}

.gallery-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.gallery-col {
  flex: 0 0 390px;
}

.gallery-col h2 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 8px;
  text-align: center;
}

.gallery-col iframe {
  width: 390px;
  height: 760px;
  border: 1px solid var(--gold-deep);
  border-radius: 18px;
  background: #0a0a0a;
}

.cal-clear {
  margin-top: 6px;
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
