```css
html {
  scroll-behavior: smooth;
}

:root {
  --bg-top: #24182E;
  --bg-mid: #3D2554;
  --bg-bottom: #6A1F2B;

  --panel-bg: #2F1D3D;
  --panel-bg-dark: #22142D;

  --gold: #C9A85A;
  --gold-bright: #E0C57A;

  --text-main: #E8E1D3;
  --text-soft: #CFC3B0;

  --button-bg: #8C6239;
  --button-hover: #D8BC72;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background: linear-gradient(
    180deg,
    var(--bg-top) 0%,
    var(--bg-mid) 45%,
    var(--bg-bottom) 100%
  );
  background-attachment: fixed;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px;
  background: rgba(27, 16, 36, 0.9);
  border-bottom: 2px solid var(--gold);
  flex-wrap: wrap;
}

.navbar a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: var(--gold-bright);
}

.box,
.small-box {
  background: linear-gradient(180deg, var(--panel-bg), var(--panel-bg-dark));
  border: 2px solid var(--gold);
  border-radius: 14px;
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -2px 4px rgba(0,0,0,0.55),
    0 4px 12px rgba(0,0,0,0.45);
}

.box {
  width: 90%;
  max-width: 950px;
  margin: 20px auto;
  padding: 24px;
}

.small-box {
  flex: 1 1 300px;
  max-width: 450px;
  padding: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 5px;
  color: var(--gold-bright);
}

h2,
th {
  color: var(--gold-bright);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.15),
    0 -1px 2px rgba(0,0,0,0.75);
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-soft);
}

.countdown-box {
  text-align: center;
}

#countdown {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 10px;
  color: var(--gold-bright);
}

.logo {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.stream-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 15px;
}

.stream-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  border-radius: 10px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  margin: 10px;
  color: #1B1024;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  border: 2px solid var(--gold);
  background: linear-gradient(
    145deg,
    var(--gold-bright),
    var(--gold) 45%,
    var(--button-bg)
  );
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,0.25),
    inset 0 -2px 4px rgba(0,0,0,0.45),
    0 4px 6px rgba(0,0,0,0.45);
}

.button:hover {
  background: linear-gradient(
    145deg,
    #F0D58A,
    var(--button-hover) 45%,
    var(--button-bg)
  );
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,0.35),
    inset 0 -2px 6px rgba(0,0,0,0.55),
    0 6px 10px rgba(0,0,0,0.55);
}

.two-column {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

th,
td {
  padding: 10px;
  border-bottom: 1px solid rgba(232,225,211,0.25);
}

th {
  border-bottom: 2px solid var(--gold);
}

footer {
  padding: 25px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.heart {
  color: #e63946;
  text-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
}

/* YouTube nav hover */

.youtube-link,
.twitch-link,
.discord-link,
.donate-link {
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--text-main);
  text-decoration: none;
  font-weight: bold;
}

.youtube-link {
  width: 110px;
}

.twitch-link,
.donate-link {
  width: 90px;
}

.discord-link {
  width: 100px;
}

.link-text {
  display: block;
  transition: opacity 0.25s ease;
}

.youtube-icon,
.twitch-icon,
.discord-icon,
.donate-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.youtube-link:hover .link-text,
.twitch-link:hover .link-text,
.discord-link:hover .link-text,
.donate-link:hover .link-text {
  opacity: 0;
}

.youtube-link:hover .youtube-icon,
.twitch-link:hover .twitch-icon,
.discord-link:hover .discord-icon,
.donate-link:hover .donate-icon {
  opacity: 1;
}

.youtube-pill,
.discord-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  line-height: 1;
}

.youtube-pill {
  background: #ff0000;
  box-shadow: 0 0 8px rgba(255,0,0,0.45);
}

.discord-pill {
  background: #5865F2;
  box-shadow: 0 0 8px rgba(88,101,242,0.45);
}

.twitch-icon img,
.discord-icon img,
.donate-icon img {
  width: 32px;
  height: auto;
}

.twitch-icon img {
  filter: drop-shadow(0 0 6px rgba(145,70,255,0.5));
}

.discord-icon img {
  filter: drop-shadow(0 0 6px rgba(88,101,242,0.5));
}

.donate-icon img {
  width: 34px;
  filter: drop-shadow(0 0 6px rgba(201,168,90,0.45));
}

/* Mobile */

@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  .box {
    padding: 18px;
  }

  th,
  td {
    font-size: 0.9rem;
    padding: 8px;
  }

  .navbar {
    gap: 14px;
    padding: 12px;
  }

  .navbar a {
    font-size: 16px;
  }

  #countdown {
    font-size: 1.5rem;
  }
}
```
