/*
=====================================================
FRESH START - Minimal clean CSS
=====================================================

All complex styling commented out for fresh start.
Add your new styles below this section.

Available components that were commented out:
- Scrolling banner (.top-banner)
- Social media buttons (.buttons, .circle-btn)
- Luke's content panel (#content, #center-img, #scroll-box)
- Kello message panel (#left-box)
- Livestream button (.livestream-btn)
- Disclaimer modal (.disclaimer-modal)
- Decorative images (.decor-bottom-left, .decor-bottom-right)
- Ticker background (#ticker-bg)

*/

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

:root {
  --red: #ff0000;
  --dark: #080808;
  --actions-top: 22px;
  --actions-center-offset: -50%;
  --live-top: 872px;
  --live-right: -1632px;
  --live-width: auto;
  --live-icon: 25px; /* 250% of previous 6px */
  --note-left-margin: 1vw;
  --note-right-margin: 11vw;
  --note-vertical-offset: 10vh;
  --center-max-width: 40%;
  --center-min-width: 96px;
  --center-padding: 6px;
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Roboto Mono', 'Times New Roman', monospace;
  background: url('assets/lightbluebg.jpg') center/cover no-repeat fixed;
  overflow: hidden;
  color: var(--red);
  position: relative;
}

/*
=====================================================
ALL COMPLEX STYLING COMMENTED OUT BELOW FOR FRESH START
=====================================================

The following sections contain all the previous styling that has been
commented out to give you a clean slate:

- Top scrolling banner
- Social media buttons
- Luke's content panel
- Kello message panel
- Livestream button
- Disclaimer modal
- Decorative images
- Ticker background
- Animations and effects

Uncomment and modify these sections as needed for your new design.
*/

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/*
========================================
COMMENTED OUT STYLING BEGINS HERE
========================================

/* Top scrolling banner (commented out for fresh start) */
/*
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: rgba(84, 211, 144, 0.9);
  color: #000000;
  overflow: hidden;
  z-index: 50;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.banner-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-banner 20s linear infinite;
}

.banner-content span {
  padding-right: 50px;
  display: inline-block;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}
*/

/* Ticker background (commented out for fresh start) */
/*
#ticker-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  column-width: 180px;
  column-gap: 24px;
  column-rule: 1px solid rgba(255, 0, 0, 0.15);
  pointer-events: none;
  padding: 20px;
  overflow: hidden;
  opacity: 0.9;
}

.ticker-line {
  font-size: 14px;
  line-height: 1.2em;
  animation: flicker 4s infinite linear;
}

@keyframes flicker {
  0%, 17%, 19%, 23%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.35; }
}
*/

/* Main content (commented out for fresh start) */
/*
main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#main-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23.5vw;
  max-width: 280px;
  aspect-ratio: 2 / 1;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 6px var(--red));
  animation: none;
  pointer-events: none;
  overflow: hidden;
}

#main-logo img {
  width: 80%;
  height: auto;
}

.dvd-bounce {
  position: fixed;
  top: 0;
  left: 0;
  width: 18vw;
  max-width: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.dvd-bounce img {
  width: 100%;
  height: auto;
}
*/

/* Social buttons (commented out for fresh start) */
/*
.buttons {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.livestream-btn {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 24px;
  border: 2px solid #54D390;
  border-radius: 9999px;
  color: #54D390;
  background: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5em;
}

.disclaimer-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 2px solid #54D390;
  border-radius: 9999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  font-weight: 700;
}

.circle-btn {
  width: 80px;
  height: 80px;
  border: 2px solid #54D390;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
  animation: none;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 1px rgba(84, 211, 144, 0.35) inset;
}

.circle-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.buttons .btn-ig img {
  transform: scale(1.02);
}

.buttons .btn-tt {
  transform: scale(1.4);
}

.buttons .btn-ig,
.buttons .btn-yt {
  transform: scale(1);
}

.circle-btn:hover {
  filter: brightness(1.4);
}
*/

/* Content panels (commented out for fresh start) */
/*
#content {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

#center-img {
  width: 22vw;
  max-width: 275px;
  border: 3px solid #54D390;
  border-radius: 12px;
}

#scroll-box {
  margin-top: 12px;
  width: 54vw;
  max-width: 675px;
  height: auto;
  overflow: visible;
  border: 2px solid #54D390;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 8px;
}

#left-box {
  position: fixed;
  top: calc(140px + 15vh);
  left: 20px;
  width: 375px;
  max-width: 32vw;
  border: 2px solid #54D390;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  padding: 12px;
}

#scroll-box h2,
#left-box h3 {
  color: #54D390;
  margin-bottom: 10px;
}

#scroll-box p,
#left-box p {
  margin: 8px 0;
}

#left-box a {
  color: #54D390;
  text-decoration: underline;
}
*/

/* Modal styling (commented out for fresh start) */
/*
.hidden { display: none; }
.disclaimer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
}
.disclaimer-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54vw;
  max-width: 675px;
  background: #0a0a0a;
  border: 2px solid #54D390;
  border-radius: 12px;
  color: #ffffff;
  z-index: 1001;
}
.disclaimer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(84,211,144,0.35);
}
.disclaimer-header h3 { color: #54D390; margin: 0; }
.disclaimer-close {
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.disclaimer-body {
  padding: 12px;
}
.disclaimer-body p { margin: 10px 0; }
.disclaimer-footer {
  display: flex;
  justify-content: center;
  padding: 16px 12px 20px 12px;
}
#disclaimer-understand {
  border: 2px solid #54D390;
  border-radius: 9999px;
  color: #54D390;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 18px;
  font-weight: 700;
}

.livestream-btn .icon-left,
.livestream-btn .icon-right {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.livestream-btn .icon-right {
  filter: brightness(0) invert(1);
}
*/

/* Decorative images (commented out for fresh start) */
/*
.decor-top-left {
  position: fixed;
  top: -4vh;
  left: 0px;
  width: 360px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.decor-bottom-right {
  position: fixed;
  bottom: 0px;
  right: 10px;
  width: 420px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.decor-bottom-left {
  position: fixed;
  bottom: -15px;
  left: 10px;
  width: 420px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}
*/

/* Animations (commented out for fresh start) */
/*
.buttons .circle-btn {
  animation: float 3s ease-in-out infinite;
}

.buttons .circle-btn:nth-child(1) {
  animation-delay: 0s;
}

.buttons .circle-btn:nth-child(2) {
  animation-delay: 0.5s;
}

.buttons .circle-btn:nth-child(3) {
  animation-delay: 1s;
}

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

.circle-btn:hover {
  filter: brightness(1.4);
}

.price-down {
  background-color: rgba(255, 0, 0, 0.25);
  transition: background-color 0.4s ease;
}

.marquee {
  position: fixed;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  font-size: 18px;
  line-height: 1.2em;
  color: var(--red);
  text-shadow: 0 0 4px var(--red);
}

.marquee.top {
  top: 0;
  height: 5vh;
}

.marquee.bottom {
  bottom: 0;
  height: 5vh;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 20s linear infinite;
}

.debt-green {
  color: #00ff00;
  text-shadow: 0 0 4px #00ff00;
}

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

.quote {
  font-size: 16px;
  color: var(--red);
  text-align: center;
  max-width: 80vw;
  line-height: 1.3em;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.xp-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  background: #c0c0c0;
  border: 2px solid #7d7d7d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  font-family: 'Tahoma', sans-serif;
  z-index: 1000;
}

.xp-modal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(#004ead, #1058c3);
  color: #fff;
  padding: 4px 8px;
  font-weight: bold;
  font-size: 14px;
}

.xp-modal-body {
  padding: 16px;
  font-size: 14px;
  color: #000;
}

.xp-modal-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.xp-btn {
  padding: 4px 18px 4px 18px;
  font-size: 13px;
  border: 2px solid #7d7d7d;
  background: #e0e0e0;
  cursor: pointer;
}

.xp-btn:active {
  border-style: inset;
}

#maintenance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 999999;
}
*/

/*
========================================
ADD YOUR NEW STYLES BELOW THIS LINE
========================================
*/

/* Sketch theme variables */
:root {
  --paper: rgba(10,10,10,0.75);
  --ink: #d7ffe5;
  --accent: #54D390;
  --shadow: rgba(0,0,0,0.55);
}

/* Layout scaffolding */
.site-header {
  position: fixed;
  top: 22px;
  left: 22px;
  z-index: 5;
}

.site-logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 6px 14px var(--shadow));
  transform: none;
}

.layout {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(160px, 1fr) minmax(260px, 420px);
  grid-template-rows: 1fr;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 140px 32px 140px 32px;
}

/* Center brand image between notes */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand img {
  width: 100%;
  max-width: var(--center-max-width);
  height: auto;
  min-width: var(--center-min-width);
  background: linear-gradient(180deg, rgba(250,255,240,0.95), rgba(240,255,235,0.92));
  border: 1.5px solid rgba(0,0,0,0.35);
  border-radius: 12px;
  padding: var(--center-padding);
  box-shadow: 0 12px 28px var(--shadow), 0 0 0 2px rgba(0,0,0,0.08) inset;
}

/* Sticky-note with tape style */
.note {
  position: relative;
  background: linear-gradient(180deg, rgba(250,255,240,0.9), rgba(240,255,235,0.88));
  color: #1a2a21;
  padding: 22px 22px 26px 22px;
  width: 100%;
  border: 1.5px solid rgba(0,0,0,0.35);
  border-radius: 6px 12px 8px 10px;
  box-shadow: 0 12px 28px var(--shadow), 0 0 0 2px rgba(0,0,0,0.08) inset;
  transform: rotate(-1.2deg);
  filter: saturate(0.95) contrast(0.98);
}
.note::before,
.note::after {
  content: '';
  position: absolute;
  top: -16px;
  width: 70px;
  height: 22px;
  background: repeating-linear-gradient(
    -8deg,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.65) 6px,
    rgba(230,230,230,0.55) 6px,
    rgba(230,230,230,0.55) 12px
  );
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
.note::before { left: 18px; transform: rotate(-6deg); }
.note::after  { right: 22px; transform: rotate(7deg); }

.note-primary { transform: rotate(-1.2deg); margin-left: var(--note-left-margin); margin-top: var(--note-vertical-offset); }
.note-secondary { transform: rotate(0.6deg); margin-right: var(--note-right-margin); margin-top: var(--note-vertical-offset); }

.note-title {
  display: inline-block;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #0b3b26;
  position: relative;
}
.note-title::after {
  content: '';
  position: absolute;
  inset: 60% -6px -2px -6px;
  background: rgba(255,240,0,0.45);
  transform: skewX(-10deg);
  z-index: -1;
  border-radius: 4px;
}
.note-body {
  font-size: 16px;
  line-height: 1.55;
  color: #0e3322;
}
.note-body + .note-body { margin-top: 1em; }

/* Action buttons - hand drawn pill */
.actions {
  position: fixed;
  top: var(--actions-top);
  left: 50%;
  transform: translateX(var(--actions-center-offset));
  display: flex;
  gap: 12px;
  z-index: 6;
}

/* Livestream button aligned top-right, same size as others */
.btn-live {
  position: fixed;
  top: var(--live-top);
  right: var(--live-right) !important;
  left: auto !important;
  z-index: 20;
}

.btn-icon {
  width: var(--live-icon);
  height: var(--live-icon);
  object-fit: contain;
}
.btn-icon.icon-left { margin-right: 8px; transform: translateY(1px); }
.btn-icon.icon-right { margin-left: 8px; filter: invert(1) brightness(0.1); opacity: 0.9; }

.sketch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(250,255,240,0.95), rgba(240,255,235,0.92));
  color: #0b3b26;
  border: none;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.6px;
  position: relative;
  box-shadow: 0 8px 18px var(--shadow), 0 0 0 2px rgba(0,0,0,0.08) inset;
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.sketch-btn::after { content: ''; display: none; }
.sketch-btn:hover { transform: translateY(-2px) rotate(-0.6deg); box-shadow: 0 12px 24px var(--shadow); filter: saturate(1.05); }
.sketch-btn:active { transform: translateY(0) scale(0.99); }

/* Responsive tweaks */
@media (max-width: 980px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 120px;
  }
  .card { transform: none; }
  .card::after { inset: -6px; }
  .actions { top: 18px; gap: 8px; flex-wrap: wrap; padding-left: 140px; padding-right: 14px; }
  .site-logo { width: 96px; }
  .brand { order: 2; }
}

/* Top scrolling banner */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: rgba(84, 211, 144, 0.9);
  color: #000000;
  overflow: hidden;
  z-index: 50;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.banner-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-banner 20s linear infinite;
}

.banner-content span {
  padding-right: 50px;
  display: inline-block;
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}

/* Ticker background */
#ticker-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;           /* use CSS columns layout */
  column-width: 180px;      /* minimum column width */
  column-gap: 24px;
  column-rule: 1px solid rgba(255, 0, 0, 0.15); /* subtle vertical separators */
  pointer-events: none;
  padding: 20px;
  overflow: hidden;
  opacity: 0.9;
}

.ticker-line {
  font-size: 14px;
  line-height: 1.2em;
  /* Slower flicker: 4s instead of 2s (200% slower) */
  animation: flicker 4s infinite linear;
}

@keyframes flicker {
  0%, 17%, 19%, 23%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.35; }
}

/* Main content */
main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#main-logo {
  position: absolute;          /* Centered in viewport */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23.5vw;               /* 25% larger than previous 18.75vw */
  max-width: 280px;
  aspect-ratio: 2 / 1;        /* create horizontal oval */
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 6px var(--red));
  animation: none;
  pointer-events: none;
  overflow: hidden;
}

#main-logo img {
  width: 80%;
  height: auto;
}

/* New: generic style for the bouncing DVD-style logos */
.dvd-bounce {
  position: fixed;
  top: 0;
  left: 0;
  width: 18vw;           /* 50% larger */
  max-width: 225px;      /* 50% larger */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* Removed circular container */
}

.dvd-bounce img {
  width: 100%;
  height: auto;
}

.buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 20;
}

.livestream-btn {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border: 3px solid #54D390;
  border-radius: 50px;
  color: #54D390;
  background: rgba(0, 0, 0, 0.9);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(84, 211, 144, 0.3);
  z-index: 25;
}

.livestream-btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 6px 30px rgba(84, 211, 144, 0.5);
}

/* Disclaimer button - floating right side */
.disclaimer-btn {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 2px solid #54D390;
  border-radius: 8px;
  color: #54D390;
  background: rgba(0, 0, 0, 0.8);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  z-index: 35;
}

.disclaimer-btn:hover {
  background: rgba(84, 211, 144, 0.1);
  transform: translateY(-50%) rotate(-90deg) scale(1.05);
}

/* Disclaimer modal */
.hidden { display: none; }
.disclaimer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
}
.disclaimer-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54vw;           /* align with center box width */
  max-width: 675px;      /* match scroll-box max */
  background: #0a0a0a;
  border: 2px solid #54D390;
  border-radius: 18px;
  color: #ffffff;
  z-index: 1001;
}
.disclaimer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(84,211,144,0.35);
}
.disclaimer-header h3 { color: #54D390; margin: 0; }
.disclaimer-close {
  background: transparent;
  color: #ffffff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.disclaimer-body {
  padding: 12px;
}
.disclaimer-body p { margin: 10px 0; }
.disclaimer-footer {
  display: flex;
  justify-content: center; /* center the button */
  padding: 16px 12px 20px 12px;
}

/* Style the "I understand" button like the livestream pill */
#disclaimer-understand {
  border: 2px solid #54D390;
  border-radius: 9999px;
  color: #54D390;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 18px;
  font-weight: 700;
}

.livestream-btn .icon-left,
.livestream-btn .icon-right {
  width: 27px;    /* ~50% larger */
  height: 27px;   /* ~50% larger */
  object-fit: contain;
}

/* Ensure the new-tab icon is visible on dark backgrounds */
.livestream-btn .icon-right {
  filter: brightness(0) invert(1);
}

/* Combined Luke panel - positioned left side */
#content {
  position: fixed;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  width: 380px;
  max-width: 35vw;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #54D390;
  border-radius: 16px;
  padding: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(84, 211, 144, 0.2);
}

#center-img {
  width: 100%;
  max-width: 280px;
  border: 2px solid #54D390;
  border-radius: 12px;
  margin-bottom: 16px;
}

#scroll-box {
  width: 100%;
  text-align: left;
  color: #ffffff;
  padding: 0;
  background: transparent;
  border: none;
  margin: 0;
}

/* Titles and spacing */
#scroll-box h2 {
  color: #54D390;
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 1.4em;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

#left-box h3 {
  color: #54D390;
  margin: 0 0 8px 0;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

#scroll-box p {
  margin: 8px 0;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.4;
  font-size: 0.95em;
}

#left-box p {
  margin: 0;
  display: inline;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.3;
  font-size: 0.9em;
}

/* Kello banner - horizontal below top banner */
#left-box {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #54D390;
  border-radius: 12px;
  color: #ffffff;
  padding: 16px 24px;
  box-sizing: border-box;
  z-index: 15;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

#left-box a {
  color: #54D390;
  text-decoration: underline;
}

/* (removed) Floating $ATH text */

.circle-btn {
  width: 60px;
  height: 60px;
  border: 2px solid #54D390;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.circle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(84, 211, 144, 0.4);
}

.circle-btn img {
  width: 100%;   /* 10% larger than before */
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}
.buttons .btn-ig img {
  transform: scale(1.02); /* Instagram image +2% */
}

/* Social button animations */
.buttons .circle-btn {
  animation: float 3s ease-in-out infinite;
}

.buttons .circle-btn:nth-child(1) {
  animation-delay: 0s;
}

.buttons .circle-btn:nth-child(2) {
  animation-delay: 0.5s;
}

.buttons .circle-btn:nth-child(3) {
  animation-delay: 1s;
}

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

.circle-btn:hover {
  filter: brightness(1.4);
}

/* Blink red background briefly when price goes down */
.price-down {
  background-color: rgba(255, 0, 0, 0.25);
  transition: background-color 0.4s ease;
}

/* ATH logo - top left corner */
.decor-bottom-right {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 180px;
  height: auto;
  z-index: 30;
  pointer-events: none;
  opacity: 0.95;
}

.decor-bottom-left {
  position: fixed;
  bottom: -15px;
  left: 10px;
  width: 420px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}

/* -------------------------------------------------
   Scrolling marquee across top & bottom
   ------------------------------------------------- */

.marquee {
  position: fixed;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2; /* above ticker bg */
  font-size: 18px;
  line-height: 1.2em;
  color: var(--red);
  text-shadow: 0 0 4px var(--red);
}

.marquee.top {
  top: 0;
  height: 5vh;
}

.marquee.bottom {
  bottom: 0;
  height: 5vh;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 20s linear infinite;
}

/* Green highlight for $DEBT inside marquee */
.debt-green {
  color: #00ff00;
  text-shadow: 0 0 4px #00ff00;
}

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

/* Quotes under buttons */
.quote {
  font-size: 16px;
  color: var(--red);
  text-align: center;
  max-width: 80vw;
  line-height: 1.3em;
} 

/* ----------------------------
   Windows XP-style modal
----------------------------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.xp-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  background: #c0c0c0;
  border: 2px solid #7d7d7d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  font-family: 'Roboto Mono', 'Times New Roman', monospace;
  z-index: 1000;
}

.xp-modal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(#004ead, #1058c3);
  color: #fff;
  padding: 4px 8px;
  font-weight: bold;
  font-size: 14px;
}

.xp-modal-body {
  padding: 16px;
  font-size: 14px;
  color: #000;
}

.xp-modal-buttons {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.xp-btn {
  padding: 4px 18px 4px 18px;
  font-size: 13px;
  border: 2px solid #7d7d7d;
  background: #e0e0e0;
  cursor: pointer;
}

.xp-btn:active {
  border-style: inset;
} 

/* Maintenance overlay */
#maintenance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 999999;
}
