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

:root {
  --bg:    #1a1a1a;
  --cream: #f5f0e8;
  --green: #06d6a0;
  --pink:  #ef476f;
}

html, body {
  height: 100%;
}

body {
  font-family: 'PT Mono', monospace;
  background: var(--bg);
  color: var(--cream);
  display: flex;
  flex-direction: column;
}

/* ── Header ── */

.site-header {
  padding: 2rem 2rem 0.5rem;
  text-align: center;
}

.logo-text {
  font-size: 1.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.logo-letter {
  display: inline-block;
  animation: logo-wave 3s ease-in-out infinite;
}

@keyframes logo-wave {
  0%, 100% { transform: translateY(-2px); }
  50%       { transform: translateY(2px); }
}

/* ── Tabs ── */

.tabs {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.25rem 0 2rem;
}

.tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: 'PT Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.3;
  cursor: pointer;
  padding-bottom: 4px;
  transition: opacity 0.15s, border-color 0.15s;
}

.tab.active {
  opacity: 1;
  border-bottom-color: var(--cream);
}

/* ── Tab content ── */

.tab-content {
  display: none;
  flex: 1;
}

.tab-content.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 52.5px;
  padding-bottom: 30vh;
}

/* ── Typewriter ── */

.typewriter-wrap {
  text-align: center;
  font-family: 'PT Mono', monospace;
  font-size: 1rem;
  letter-spacing: 3px;
  color: var(--cream);
  opacity: 0.6;
  min-height: 1.6em;
}

.typewriter-cursor {
  animation: blink 0.6s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Marquee ── */

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 3.2rem;
  margin-right: 52.5px;
  border: 2px solid var(--cream);
  border-radius: 10px;
  color: var(--cream);
  text-decoration: none;
  font-family: 'PT Mono', monospace;
  font-size: 1.9rem;
  letter-spacing: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.marquee-btn:hover,
.marquee-btn.stickman-on {
  background: var(--cream);
  color: var(--bg);
}

.scroll-right {
  animation: scroll-right 40s linear infinite;
}

.scroll-left {
  animation: scroll-left 50s linear infinite;
}

@keyframes scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Party ── */

.party-wrap {
  position: relative;
  display: flex;
  flex: 1;
}

.brackets-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 3.2rem;
  border: 2px solid var(--cream);
  border-radius: 10px;
  color: var(--cream);
  text-decoration: none;
  font-family: 'PT Mono', monospace;
  font-size: 1.9rem;
  letter-spacing: 3px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
  position: absolute;
  left: 50%;
  animation: float 6s ease-in-out infinite;
}

.brackets-btn:hover,
.brackets-btn.stickman-on {
  background: var(--cream);
  color: var(--bg);
}

@keyframes float {
  0%, 100% { top: 5vh;  transform: translateX(-50%); }
  50%       { top: 45vh; transform: translateX(-50%); }
}

/* ── Footer ── */

.site-footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.2;
}
