﻿:root {
  --main-color: #00ff00;
  --main-glow:  #00ff00;
}

body {
  margin: 0;
  padding: 0;
  background: black;
  color: var(--main-color);
  font-family: 'VT323', monospace;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.terminal {
  padding: 30px;
  border: 2px solid var(--main-color);
  box-shadow: 0 0 30px var(--main-glow);
  max-width: 800px;
  width: 90%;
  text-align: center;
  position: relative;
}

h1 {
  margin-top: 0;
  font-size: 2.5em;
  text-shadow: 0 0 10px var(--main-glow);
}

p {
  margin: 10px 0;
  text-shadow: 0 0 5px var(--main-glow);
  word-break: break-word;
}

/* ============================
   BUTTON GRID (hidden until JS)
   ============================ */
#buttons {
  display: none;             /* shown via JS */
  margin-top: 30px;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  /* display: grid is toggled inline by your script */
}

#buttons a,
#buttons button {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-size: 1em;
  font-family: 'VT323', monospace;
  color: var(--main-color);
  background: transparent;
  border: 1px solid var(--main-color);
  text-decoration: none;
  text-shadow: 0 0 5px var(--main-glow);
  box-shadow: 0 0 10px var(--main-glow);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-sizing: border-box;
}

#buttons a:hover,
#buttons button:hover {
  background: var(--main-color);
  color: black;
}

/* ============================
   Pepe + Bubble
   ============================ */
.pepe-wrapper {
  position: relative;
  display: inline-block;
  margin: 20px auto;
}

.pepe {
  width: 120px;
  box-shadow: 0 0 15px var(--main-glow);
  display: block;
}

.pepe-bubble {
  display: block;  
  position: absolute;
  top: 50%;
  left: 100%;                    /* anchor to the wrapper’s right edge */
  transform: translate(20px, -50%); /* shift 20px right and center vertically */
  /* …keep the rest of your styles as‑is… */
}


.pepe-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;       /* arrow sits exactly at the bubble’s left edge */
  left: auto;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--main-color);
}


@media (max-width: 500px) {
  h1 {
    font-size: 2em;
  }
  body {
    font-size: 1.2em;
  }
  #buttons a,
  #buttons button {
    font-size: 0.9em;
    padding: 10px 0;
  }
}
