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

:root {
  --bg:    #fdf8ed;
  --bg2:   #f5edcf;
  --bg3:   #e8dba8;
  --ink:   #1a1608;
  --ink2:  #5c5328;
  --ink3:  #a09660;
  --gold:  #E9AB17;
  --goldd: #c8920e;
  --red:   #C8102E;
  --redd:  #9e0d24;
  --white: #fffef9;
}

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -30%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,171,23,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 540px;
  width: 100%;
}



.org-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 2rem;
}



h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 11vw, 6.8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
h1 em {
  font-style: italic;
  color: var(--red);
  display: block;
}
h1 .hl {
  color: var(--gold);
  font-style: italic;
}

.tagline {
  font-size: 0.72rem;
  line-height: 1.85;
  color: var(--ink3);
  max-width: 380px;
  margin: 0 auto 2.8rem;
  letter-spacing: 0.03em;
}



.divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.8rem;
}
.divider-line { flex: 1; height: 1px; background: var(--bg3); }
.divider-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.divider-dot.red { background: var(--red); }



.cd-label {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 1rem;
}
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-bottom: 2.4rem;
}
.cd-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  padding: 1rem 0.5rem 0.8rem;
}
.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.cd-block:nth-child(3) .cd-num { color: var(--red); }
.cd-unit {
  font-family: 'DM Mono', monospace;
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 0.4rem;
}
.cd-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--ink3);
  opacity: 0.3;
  line-height: 1;
  padding: 0.6rem 0.3rem 0;
  animation: sblink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes sblink { 0%,100%{opacity:0.3} 50%{opacity:0.08} }



.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--bg2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2.4rem;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: bdot 2s ease-in-out infinite;
}
@keyframes bdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.7)} }
.badge-text {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink2);
}
.badge-text b { color: var(--goldd); font-weight: 400; }



.register-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  width: 100%;
  max-width: 320px;
  height: 50px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
  transition: background 0.14s, transform 0.1s;
}
.register-btn:hover { background: var(--goldd); color: var(--white); }
.register-btn:active { transform: scale(0.98); }
.register-btn svg { flex-shrink: 0; }



.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  transition: background 0.14s, color 0.14s;
  background: var(--bg2);
  color: var(--ink2);
}
.social-btn:hover { background: var(--bg3); color: var(--ink); }
.social-btn.fb:hover  { background: #1877f2; color: #fff; }
.social-btn.ig:hover  { background: #c8102e; color: #fff; }
.social-btn.li:hover  { background: #0a66c2; color: #fff; }



.credit {
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg3);
}

@media (max-width: 440px) {
  .cd-block { padding: 0.8rem 0.3rem 0.65rem; }
  .cd-sep { padding: 0.4rem 0.15rem 0; }
}
