@font-face {
  font-family: 'Press Start 2P';
  src: url('assets/fonts/PressStart2P-Regular.ttf') format('truetype');
}

#site-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 24px;
  color: #FFD700; /* Gold or yellow */
  text-shadow: 2px 2px #000;
  margin-bottom: 20px;
  text-align: center;
}

#site-title {
  margin-top: 40px;
  margin-bottom: 30px;
}

#tiktok-link {
  margin-bottom: 30px;
}

#stream-links {
  margin-top: 30px;
}

#stream-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.stream-button {
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.stream-button.twitch {
  background: #9146FF;
}

.stream-button.twitch:hover {
  background: #772ce8;
}

.stream-button.youtube {
  background: #FF0000;
}

.stream-button.youtube:hover {
  background: #cc0000;
}


.question-link {
  font-family: Arial, sans-serif;
  color: #007BFF; /* Bright blue */
  text-decoration: none;
  font-weight: bold;
}

.question-link:visited {
  color: #007BFF; /* Same blue after click */
}

.question-link:hover {
  text-decoration: underline;
}



body.main-bg {
  background: url('assets/new_smw_bg.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Press Start 2P', cursive;
  color: #fff;
}

body.bg-made {
  background: url('assets/background-made.png') no-repeat center center fixed;
  background-size: cover;
}

body.bg-about {
  background: url('assets/background-about.png') no-repeat center center fixed;
  background-size: cover;
}

.banner {
  text-align: center;
  font-size: 3rem;
  margin-top: 20px;
  color: yellow;
  text-shadow: 2px 2px red;
}

.question-block {
  position: fixed;
  top: 20px;
  left: 20px;
  cursor: pointer;
}

.menu-links {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,0.7);
  padding: 10px;
  border-radius: 8px;
}

.tiktok-link {
  width: 64px;
  border-radius: 50%;
  margin: 20px auto;
  display: block;
}

#bumpty-container {
  position: fixed;
  bottom: 0;
  width: 100%;
}

#bumpty {
  position: absolute;
  bottom: 0;
  width: 64px; /* Shrink width */
  height: auto;
  animation: bumptyWalk 10s infinite linear;
}

@keyframes bumptyWalk {
  0% { left: 0; transform: scaleX(1); }
  50% { left: 90%; transform: scaleX(1); }
  51% { transform: scaleX(-1); }
  100% { left: 0; transform: scaleX(-1); }
}

.stream-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
}

.stream-container iframe {
  border: none;
  border-radius: 8px;
  margin-bottom: 20px;
}


@media (max-width: 600px) {
  .stream-container {
    padding: 10px;
  }

  .stream-container iframe {
    height: 200px;
  }
}

#twitch-link a {
  color: #fff;
  background: #9146FF; /* Twitch purple */
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

#twitch-link a:hover {
  background: #772ce8;
}

#disco-shell-container {
  position: fixed;
  bottom: 0;
  width: 100%;
}

#disco-shell {
  position: absolute;
  bottom: 0;
  width: 64px;
  height: auto;
  animation: discoBounce 8s infinite linear;
}

@keyframes discoBounce {
  0% { left: 0; transform: scaleX(1); }
  50% { left: 90%; transform: scaleX(1); }
  51% { transform: scaleX(-1); }
  100% { left: 0; transform: scaleX(-1); }
}
#monty-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

#monty {
  position: absolute;
  bottom: 0;
  width: 64px;
  height: auto;
  animation: montyWalk 10s infinite linear;
}

@keyframes montyWalk {
  0% { left: 0; transform: scaleX(1); }
  50% { left: 90%; transform: scaleX(1); }
  51% { transform: scaleX(-1); }
  100% { left: 0; transform: scaleX(-1); }
}

@keyframes snowFall {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0.3; }
}

.snowflake {
  position: fixed;
  top: -20px;
  font-size: 12px;
  color: #fff;
  animation: snowFall linear infinite;
  pointer-events: none;
  z-index: 9999;
}



#about-me-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
}

.about-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.side-image {
  width: 120px;
  height: auto;
}

.about-text {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6;
}

.about-bottom-image {
  margin-top: 30px;
  text-align: center;
}

.about-bottom-image img {
  width: 160px;
  height: auto;
}
#hacks-made {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
}

#hacks-made h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #FFD700;
  text-shadow: 2px 2px #000;
}

.hack-entry {
  margin-bottom: 40px;
  text-align: center;
}

.hack-link {
  font-family: Arial, sans-serif;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.hack-link:visited {
  color: #007BFF;
}

.hack-link:hover {
  text-decoration: underline;
}

.hack-description {
  font-size: 0.75rem;
  margin: 10px 0;
  line-height: 1.6;
}

.hack-image {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .side-image {
    width: 96px;
    margin: 10px 0;
  }

  .about-text {
    font-size: 0.7rem;
    padding: 0 10px;
  }

  .about-bottom-image img {
    width: 120px;
  }
}
@media (max-width: 768px) {
  #site-title.banner {
    margin-top: 80px; /* Adjust this value as needed */
  }
}
a {
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

#projects-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
}

.project-entry {
  margin-bottom: 50px;
  text-align: center;
}

.project-link {
  font-family: 'Press Start 2P', monospace;
  color: #007BFF;
  text-decoration: none;
  font-size: 1rem;
}

.project-link:visited {
  color: #007BFF;
}

.project-description {
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 15px 0 25px;
}


.markdown {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.7rem;
  line-height: 1.6;
}


.project-screenshots img {
  width: 100%;
  max-width: 480px;
  margin: 10px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

/* Mobile Fix */
@media (max-width: 768px) {
  #site-title.banner {
    margin-top: 80px;
  }

  .readme-frame {
    height: 400px;
  }
}




