
:root{
  --bg:#050505;
  --panel:#111111;
  --gold:#d8a92f;
  --gold-light:#f5d878;
  --text:#fff8e9;
  --muted:#beb5a4;
  --border:rgba(216,169,47,.34);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  min-height:100vh;
  overflow-x:hidden;
  font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  color:var(--text);
  background:#050505;
}

.shell{
  width:min(100%,760px);
  margin:0 auto;
  padding:20px 14px 42px;
}

.card{
  position:relative;
  padding:38px 24px 26px;
  text-align:center;
  background:linear-gradient(180deg,#151515,#101010);
  border:1px solid var(--border);
  border-radius:30px;
  box-shadow:0 28px 90px rgba(0,0,0,.55);
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:10px;
  border:1px solid rgba(216,169,47,.14);
  border-radius:22px;
  pointer-events:none;
}

.hero{
  position:relative;
  z-index:1;
}

.hero .logo{
  display:block;
  width:176px;
  height:176px;
  max-width:48vw;
  max-height:48vw;
  margin:0 auto 18px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid var(--gold);
  box-shadow:0 0 0 8px rgba(216,169,47,.05),0 0 52px rgba(216,169,47,.26);
}

.brand{
  margin:0;
  color:var(--gold-light);
  letter-spacing:.34em;
  font-family:Georgia,serif;
  font-size:.92rem;
}

h1{
  margin:10px 0 6px;
  font-size:clamp(2.1rem,7vw,3.7rem);
  letter-spacing:.07em;
  line-height:1.12;
}

.tagline{
  margin:0;
  color:var(--muted);
  letter-spacing:.18em;
}











.signup{
  margin-top:22px;
}

.section-label{
  margin:0 0 12px;
  color:var(--gold-light);
  letter-spacing:.18em;
  font-size:.82rem;
}

.signup-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.signup-btn{
  min-height:130px;
  padding:20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  text-decoration:none;
  color:#15110a;
  background:linear-gradient(180deg,#f9dc7b,#d6a31f);
  border:1px solid rgba(255,255,255,.32);
  border-radius:20px;
  font-weight:900;
  box-shadow:0 14px 34px rgba(216,169,47,.2),inset 0 1px rgba(255,255,255,.45);
  transition:transform .2s ease,box-shadow .2s ease;
}

.signup-btn:hover{
  transform:translateY(-3px) scale(1.01);
  box-shadow:0 18px 42px rgba(216,169,47,.3),inset 0 1px rgba(255,255,255,.5);
}

.calendar{font-size:1.35rem}
.day{font-size:1.34rem}
.cta{font-size:.88rem;opacity:.82}

.links{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:11px;
  margin-top:18px;
}

.links a{
  min-height:62px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  text-decoration:none;
  color:var(--text);
  background:#1a1a1a;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  transition:.2s ease;
}

.links a:hover{
  transform:translateY(-2px);
  border-color:var(--border);
  background:rgba(216,169,47,.08);
}

.links a:last-child{
  grid-column:1/-1;
}

.info{
  margin-top:18px;
  padding:20px;
  display:grid;
  gap:16px;
  text-align:left;
  background:#0b0b0b;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
}

.info div{
  display:grid;
  gap:5px;
}

.label{
  color:var(--gold-light);
  font-size:.78rem;
  letter-spacing:.12em;
}

.info strong{
  line-height:1.6;
}

.map-section{
  margin-top:18px;
  padding:18px;
  text-align:left;
  background:#0b0b0b;
  border:1px solid var(--border);
  border-radius:20px;
}

.map-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:13px;
}

.map-heading h2{
  margin:5px 0 0;
  font-size:1.3rem;
}

.map-heading a{
  padding:10px 14px;
  text-decoration:none;
  color:var(--gold-light);
  border:1px solid var(--border);
  border-radius:12px;
  white-space:nowrap;
}

.map-frame{
  overflow:hidden;
  border-radius:15px;
  border:1px solid rgba(255,255,255,.08);
}

.map-frame iframe{
  display:block;
  width:100%;
  height:340px;
  border:0;
}

footer{
  margin-top:24px;
  color:#817a6e;
  font-size:.78rem;
}

.floating-line{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:20;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:50%;
  text-decoration:none;
  font-size:1.4rem;
  background:linear-gradient(180deg,#f9dc7b,#d6a31f);
  color:#16110a;
  box-shadow:0 12px 30px rgba(216,169,47,.35);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease,transform .55s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

body > img,
body > div:not(.shell):not(.floating-line),
.shell > img,
.card > img:not(.logo){
  display:none !important;
}

@media(max-width:560px){
  .card{padding:28px 14px 22px}
  .hero .logo{width:148px;height:148px}
  .signup-grid,.links{grid-template-columns:1fr}
  .links a:last-child{grid-column:auto}
  .map-heading{align-items:center}
  .map-frame iframe{height:290px}
}

@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}


/* v4.0 Google 評論 */
.links .review-link {
  grid-column: 1 / -1;
  color: #17120a;
  background: linear-gradient(180deg, #f9dc7b, #d6a31f);
  border-color: rgba(255,255,255,.28);
  font-weight: 800;
}

.links .review-link:hover {
  background: linear-gradient(180deg, #ffe798, #ddb33b);
}

.review-section {
  margin-top: 18px;
  padding: 24px 18px;
  text-align: center;
  background: linear-gradient(135deg, rgba(216,169,47,.13), rgba(216,169,47,.03));
  border: 1px solid var(--border);
  border-radius: 20px;
}

.review-stars {
  color: var(--gold-light);
  letter-spacing: .16em;
  font-size: 1.35rem;
}

.review-section h2 {
  margin: 10px 0 7px;
  font-size: 1.35rem;
}

.review-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-section a {
  width: fit-content;
  margin: 16px auto 0;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #17120a;
  background: linear-gradient(180deg, #f9dc7b, #d6a31f);
  border-radius: 14px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(216,169,47,.2);
}


.brand-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: block;
}

.links a {
  gap: 10px;
}

.links a span {
  line-height: 1;
}

/* Release 1.3：停車場資訊圖 */
.parking-section {
  margin-top: 18px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(216,169,47,.13), rgba(216,169,47,.03));
  border: 1px solid var(--border);
  border-radius: 20px;
}

.parking-heading h2 {
  margin: 6px 0 6px;
  font-size: 1.35rem;
}

.parking-heading p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.parking-image-link {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(216,169,47,.32);
  background: #090909;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

.parking-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .3s ease;
}

.parking-image-link:hover .parking-image {
  transform: scale(1.012);
}

@media(max-width:560px){
  .parking-section{padding:14px}
  .parking-heading h2{font-size:1.2rem}
  .parking-heading p{font-size:.92rem}
}

.signup-notice {
  margin: 12px 0 16px;
  padding: 14px 16px;
  border: 1px solid rgba(216,169,47,.28);
  border-radius: 14px;
  background: rgba(216,169,47,.07);
}

.signup-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.signup-notice p + p {
  margin-top: 6px;
}

/* Release 1.4：攤位示意圖 */
.booth-layout-section {
  margin-top: 18px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(216,169,47,.13), rgba(216,169,47,.03));
  border: 1px solid var(--border);
  border-radius: 20px;
}

.booth-layout-heading h2 {
  margin: 6px 0 6px;
  font-size: 1.35rem;
}

.booth-layout-heading p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.booth-layout-link {
  display: block;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(216,169,47,.32);
  background: #090909;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
}

.booth-layout-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .3s ease;
}

.booth-layout-link:hover .booth-layout-image {
  transform: scale(1.012);
}

@media(max-width:560px){
  .booth-layout-section{padding:14px}
  .booth-layout-heading h2{font-size:1.2rem}
  .booth-layout-heading p{font-size:.92rem}
}
