:root {
  --gold: #d4af37;
  --purple: #4b0082;
  --pink: #ff69b4;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "MS Mincho", serif;
  margin: 0;
  overflow-x: hidden;
}

/* ページ全体の枠線（集中線のような緊張感） */
.container {
  border: 4px double var(--gold);
  margin: 20px;
  padding: 40px;
  min-height: 80vh;
  position: relative;
}

h1 {
  font-size: 3rem;
  color: var(--gold);
  text-shadow: 3px 3px 0px var(--purple);
  text-transform: uppercase;
}

/* 共通の「ゴゴゴ」演出 */
.gogogo {
  position: fixed;
  bottom: 10%;
  right: 5%;
  font-size: 5rem;
  opacity: 0.2;
  font-weight: bold;
  pointer-events: none;
}

.stand-name {
  color: var(--pink);
  font-weight: bold;
  border-bottom: 2px solid var(--pink);
}

a {
  color: #00bfff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--gold);
}