/* Sara's 40th — shared stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

.sc-f3cb9764-1 bJYxTA { display: none; height:1px; width:1px; overflow:hidden; }
.sc-f3cb9764-2 cAyMOU { display: none; height:1px; width:1px; overflow:hidden; }
.sc-f3cb9764-0.gFMgdW.tally-powered { display: none; height:1px; width:1px; overflow:hidden; }

:root {
  --hot-pink: #FF00FF;
  --cyan: #00FFFF;
  --yellow: #FFFF00;
  --lime: #00FF00;
  --dark-bg: #000033;
  --purple: #9900CC;
}

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

body {
  font-family: 'Roboto Mono', monospace;
  background-color: var(--dark-bg);
  background-image: url('bg.gif');
  background-repeat: repeat;
  color: var(--cyan);
  min-height: 100vh;
  overflow-x: hidden;
}

.marquee-bar {
  background: var(--purple);
  border-top: 3px solid var(--hot-pink);
  border-bottom: 3px solid var(--hot-pink);
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-bar marquee {
  font-size: 14px;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 2px;
}

.wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

.site-header {
  text-align: center;
  padding: 24px 0 16px;
  border: 4px double var(--hot-pink);
  background: rgba(0,0,0,0.6);
  margin-bottom: 20px;
  position: relative;
}

.site-header h1 {
  font-size: clamp(28px, 6vw, 52px);
  color: var(--hot-pink);
  text-shadow: 3px 3px 0 var(--purple), 0 0 20px var(--hot-pink), 0 0 40px var(--hot-pink);
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: flicker 4s infinite;
  line-height: 1.2;
}

.site-header .subtitle {
  color: var(--yellow);
  font-size: 13px;
  margin-top: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.star-divider {
  color: var(--hot-pink);
  font-size: 18px;
  letter-spacing: 6px;
  margin: 10px 0;
  display: block;
}

@keyframes flicker {
  0%, 95%, 100% { opacity: 1; }
  96% { opacity: 0.4; }
  97% { opacity: 1; }
  98% { opacity: 0.2; }
  99% { opacity: 1; }
}

.counter-bar {
  text-align: center;
  font-size: 11px;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding: 4px;
  border: 1px solid var(--lime);
  background: rgba(0,0,0,0.5);
}
.counter-num { color: var(--yellow); font-weight: 700; font-size: 14px; }

.panel {
  background: rgba(0, 0, 51, 0.85);
  border: 3px solid var(--cyan);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}

.panel::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px; right: 3px; bottom: 3px;
  border: 1px solid rgba(0,255,255,0.2);
  pointer-events: none;
}

.panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 2px solid var(--hot-pink);
  padding-bottom: 8px;
  margin-bottom: 16px;
  text-shadow: 0 0 10px var(--hot-pink);
}

.panel-title .icon { margin-right: 6px; }

.details-table { width: 100%; border-collapse: collapse; }
.details-table td {
  padding: 8px 10px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,255,255,0.15);
  vertical-align: top;
}
.details-table td:first-child { color: var(--yellow); font-weight: 700; white-space: nowrap; width: 100px; }
.details-table td:last-child { color: var(--cyan); }

.links-table { width: 100%; border-collapse: collapse; }
.links-table td {
  padding: 8px 10px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,255,255,0.15);
  vertical-align: top;
  width: 25%;
}
.links-table a { color: var(--cyan); text-decoration: underline; }
.links-table a:hover { color: var(--hot-pink); }
@media (max-width: 600px) {
  .links-table td { width: 50%; display: inline-block; }
}

.blink { animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.under-construction {
  text-align: center;
  padding: 10px;
  border: 2px dashed var(--yellow);
  background: rgba(0,0,0,0.5);
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 2px;
}

.nav-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 20px; }
.nav-links a {
  display: inline-block;
  background: var(--purple);
  color: var(--yellow);
  text-decoration: none;
  padding: 8px 18px;
  border: 2px outset var(--hot-pink);
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: none;
}
.nav-links a:hover { background: var(--hot-pink); color: var(--dark-bg); border-style: inset; }
.nav-links a:active { border-style: inset; }

.rainbow {
  background: linear-gradient(90deg, #ff0000, #ff8800, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-move 3s linear infinite;
  font-weight: 700;
  font-size: 15px;
}
@keyframes rainbow-move { to { background-position: 200% center; } }

.rsvp-wrapper { background: rgba(0,0,0,0.4); border: 2px solid var(--lime); padding: 16px; }

.site-footer {
  text-align: center;
  font-size: 11px;
  color: rgba(0,255,255,0.5);
  letter-spacing: 2px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,255,255,0.2);
}
.site-footer a { color: var(--hot-pink); text-decoration: none; }

.spin { display: inline-block; animation: spin 2s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.note-box {
  background: rgba(153, 0, 204, 0.2);
  border: 1px solid var(--purple);
  padding: 10px 14px;
  font-size: 12px;
  color: #CC99FF;
  margin-top: 14px;
  letter-spacing: 1px;
}

/* CLIPPY */
#clippy-container { display: none; position: fixed; bottom: 100px; right: 20px; z-index: 99999; width: 220px; }
#clippy-bubble { width: 200px; display: block; margin-left: 20px; margin-bottom: -130px; margin-right: 10px;}
#clippy-gif { width: 100px; display: block; margin-left: 80px; margin-bottom: 40px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border: 1px solid var(--hot-pink); }
