@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

@font-face {
  font-family: 'Brett';
  src: url('assets/Brett Font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, .about-title, .about-desc, .dropdown-menu a {
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
}

/* Hamburger Menu Styles */
.hamburger-menu {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  z-index: 2000;
}
#hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-icon {
  width: 32px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  display: block;
}
.hamburger-icon::before,
.hamburger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 32px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger-icon::before {
  top: -10px;
}
.hamburger-icon::after {
  top: 10px;
}

/* Centered Menu Styles */
.dropdown-menu {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(34, 34, 34, 0.98);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  min-width: 320px;
  max-width: 90vw;
  flex-direction: column;
  padding: 2.5rem 2rem 2rem 2rem;
  z-index: 2100;
  align-items: center;
  text-align: center;
}
.dropdown-menu.show {
  display: flex;
}
.dropdown-menu a {
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 0;
  font-size: 2rem;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  transition: border-bottom 0.2s;
  display: block;
  border-bottom: 3px solid transparent;
}
.dropdown-menu a:hover, .dropdown-menu a:focus {
  background: none;
  color: #FFD300;
  border-bottom: 3px solid #FFD300;
}
.close-menu-btn {
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  padding: 0.7rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 2px 2px 0 #FFD300;
  text-shadow: 2px 2px 0 #000;
  cursor: pointer;
  text-transform: uppercase;
}
.close-menu-btn:active, .close-menu-btn:focus {
  background: #FFD300;
  color: #fff;
}

/* Menu Button Styles */
.menu-btn {
  background: none;
  border: none;
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 0;
  font-size: 2rem;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  transition: border-bottom 0.2s;
  display: block;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.menu-btn:hover, .menu-btn:focus {
  background: none;
  color: #FFD300;
  border-bottom: 3px solid #FFD300;
}

/* Games Popup Styles */
.games-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2200;
  align-items: center;
  justify-content: center;
}

.games-popup.show {
  display: flex;
}

.games-popup-content {
  background: rgba(34, 34, 34, 0.98);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  min-width: 320px;
  max-width: 90vw;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.close-games-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-shadow: 2px 2px 0 #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-games-btn:hover, .close-games-btn:focus {
  background: #FFD300;
  color: #fff;
}

.games-popup-title {
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2.5rem;
  color: #FFD300;
  text-shadow: 2px 2px 0 #000, 4px 4px 8px #000;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
}

.games-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-link {
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.8rem;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s;
  display: block;
  border: 2px solid transparent;
  border-radius: 12px;
  background: rgba(255, 211, 0, 0.1);
}

.game-link:hover, .game-link:focus {
  background: rgba(255, 211, 0, 0.2);
  color: #FFD300;
  border-color: #FFD300;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 211, 0, 0.3);
}

.game-name {
  display: block;
}

/* Tools Popup Styles */
.tools-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2200;
  align-items: center;
  justify-content: center;
}

.tools-popup.show {
  display: flex;
}

.tools-popup-content {
  background: rgba(34, 34, 34, 0.98);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  min-width: 320px;
  max-width: 90vw;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.close-tools-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-shadow: 2px 2px 0 #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-tools-btn:hover, .close-tools-btn:focus {
  background: #FFD300;
  color: #fff;
}

.tools-popup-title {
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2.5rem;
  color: #FFD300;
  text-shadow: 2px 2px 0 #000, 4px 4px 8px #000;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
}

.tools-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-link {
  color: #fff;
  text-decoration: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.8rem;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.2s;
  display: block;
  border: 2px solid transparent;
  border-radius: 12px;
  background: rgba(255, 211, 0, 0.1);
}

.tool-link:hover, .tool-link:focus {
  background: rgba(255, 211, 0, 0.2);
  color: #FFD300;
  border-color: #FFD300;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 211, 0, 0.3);
}

.tool-name {
  display: block;
}
#hamburger-btn {
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 2.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 2px 2px 0 #FFD300;
  text-shadow: 2px 2px 0 #000;
  cursor: pointer;
  text-transform: uppercase;
}

/* About Brett Section Styles */
.about-section {
  background: #FFD300;
  min-height: 60vh;
  padding: 5rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.about-title {
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 6vw;
  color: #fff;
  text-shadow: 6px 6px 0 #000, 0 8px 32px rgba(0,0,0,0.5);
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
}
.about-desc {
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2.2vw;
  color: #fff;
  text-shadow: 3px 3px 0 #000, 0 4px 16px rgba(0,0,0,0.4);
  margin-bottom: 3rem;
  max-width: 900px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  background: none;
  border-radius: 0;
  padding: 0;
}
.about-img-box {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 2px 0 #FFD300;
  padding: 1.2rem;
  display: inline-block;
  margin-bottom: 2rem;
}
.about-img {
  display: block;
  max-width: 540px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
  .about-desc {
    font-size: 1.1rem;
  }
  .about-img-box {
    padding: 0.5rem;
  }
  .about-img {
    max-width: 98vw;
  }
}

/* Remove nav bar styles */
nav, nav ul, nav a { display: none !important; }

.section {
  min-height: 60vh;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section-title {
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 6vw;
  color: #fff;
  text-shadow: 6px 6px 0 #000;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Hero Section Styles */
.hero-section {
  background: url('assets/Hero Section BG.jpg') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 5rem 0;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* Increased overlay for better contrast */
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.hero-title {
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: clamp(2.5rem, 11vw, 7rem); /* Responsive font size */
  color: #fff;
  text-shadow: 8px 8px 0 #000, 0 16px 64px rgba(0,0,0,0.6);
  margin: 0 0 0.5rem 0;
  letter-spacing: 2px;
  line-height: 1.05;
  font-weight: bold;
  text-transform: uppercase;
}
.hero-subtitle {
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: clamp(1.2rem, 3vw, 2.5rem); /* Responsive font size */
  color: #fff;
  text-shadow: 3px 3px 0 #000;
  margin: 0 0 2rem 0;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
}
.hero-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
/* 3D Button and Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-btn {
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  padding: 1.2rem 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 0 #bfa100, 0 4px 16px rgba(0,0,0,0.18), 2px 2px 0 #FFD300;
  text-decoration: none;
  margin: 0.5rem 0;
  letter-spacing: 1px;
  border: none;
  outline: none;
  display: inline-block;
  transition: none;
  text-shadow: 3px 3px 0 #000, 0 2px 8px rgba(0,0,0,0.4);
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
  animation-delay: 0.2s;
}

.hero-btn:nth-child(2) {
  animation-delay: 0.6s;
}

.hero-instruction {
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 2px 2px 0 #000;
  margin-top: 0.5rem;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  letter-spacing: 1px;
  text-align: center;
}
.brett-head-img {
  width: 180px;
  max-width: 40vw;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
  animation: bounce 2.5s infinite;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }
  .brett-head-img {
    width: 100px;
  }
  .hero-btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
  .hero-section {
    background-attachment: scroll !important; /* Prevent scroll glitch on mobile */
  }
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }
}

.brettonomics-section {
  background: url('assets/Brettonomics Section BG.png') center/cover no-repeat;
}
.contract-section {
  background: url('assets/Contract Section BG.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 3rem 2rem;
  text-align: center;
}
.contract-box {
  display: inline-block;
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 2px 2px 0 #FFD300;
  padding: 1.2rem 3rem;
  margin: 1.5rem 0 0.5rem 0;
  cursor: pointer;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #000;
  transition: background 0.2s;
  user-select: all;
}
.contract-box:active {
  background: #fff;
  color: #FFD300;
}
.copy-message {
  display: none;
  margin-top: 1rem;
  color: #fff;
  background: #222;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 10px;
  padding: 0.7rem 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-shadow: 2px 2px 0 #000;
}
.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.social-btn {
  display: inline-block;
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 2px 2px 0 #FFD300;
  padding: 1rem 3rem;
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #000;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover, .social-btn:focus {
  background: #fff;
  color: #FFD300;
}

.socials-section {
  background: url('assets/Social Section BG.png') center/cover no-repeat;
}

.marquee-section {
  background: #222;
  padding: 0;
  margin: 0;
  height: auto;
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.marquee {
  display: flex;
  align-items: center;
  height: 56px;
  overflow: hidden;
  white-space: nowrap;
  width: 100vw;
  position: relative;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
}
.marquee-inner {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 16s linear infinite;
}
.marquee-text {
  color: #fff;
  text-shadow: 2px 2px 0 #000, 0 4px 16px #000;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-text, .marquee-icon {
  vertical-align: middle;
  display: inline-block;
}
.marquee-1, .marquee-2 {
  animation: marquee-scroll 14s linear infinite;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .marquee {
    height: 48px;
    font-size: 1.2rem;
  }
  .marquee-icon {
    height: 32px;
  }
  .marquee-text {
    margin: 0 0.7rem;
  }
}

.pfp-generator-section {
  background: url('assets/PFP BG.PNG') center/cover no-repeat;
  min-height: 60vh;
  padding: 5rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.pfp-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pfp-label {
  font-size: 1.2rem;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px #000, 0 2px 8px #FFD300;
}
#profile-upload {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.pfp-characters {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  background: rgba(0,0,0,0.15);
  border-radius: 16px;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #FFD300 #222;
}
.pfp-characters::-webkit-scrollbar {
  height: 10px;
  background: #222;
}
.pfp-characters::-webkit-scrollbar-thumb {
  background: #FFD300;
  border-radius: 8px;
}
.pfp-char-btn {
  background: #FFD300;
  border: none;
  border-radius: 12px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
}
.pfp-char-btn.selected, .pfp-char-btn:focus {
  outline: 2px solid #fff;
  box-shadow: 0 0 0 4px #FFD300;
  transform: scale(1.08);
}
.pfp-char-btn img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.pfp-preview-container {
  background: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#pfp-canvas {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  width: 320px;
  height: 320px;
  max-width: 90vw;
  max-height: 90vw;
  display: block;
}
.pfp-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.pfp-actions .hero-btn {
  animation: none !important;
}
@media (max-width: 768px) {
  .pfp-preview-container {
    padding: 1rem;
  }
  #pfp-canvas {
    width: 220px;
    height: 220px;
  }
  .pfp-actions {
    gap: 1rem;
  }
}

.disclaimer-section {
  background: #FFD300;
  font-size: 1.3rem;
  color: #fff;
  padding: 0.04rem 0.13rem;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  text-shadow: 2px 2px 8px #000, 0 2px 8px #000;
}

.brettonomics-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}
.brettonomics-card {
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 2px 2px 0 #FFD300;
  padding: 2rem 3rem;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #000;
  min-width: 220px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .brettonomics-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .brettonomics-card {
    width: 90vw;
    min-width: unset;
    font-size: 1.2rem;
    padding: 1.2rem 1rem;
  }
}

.pfp-characters-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pfp-characters-label {
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000, 0 2px 8px #FFD300;
  margin: 0 1rem;
}
.pfp-character-view {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pfp-char-btn {
  background: #FFD300;
  border: none;
  border-radius: 12px;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
}
.pfp-char-btn.selected, .pfp-char-btn:focus {
  outline: 2px solid #fff;
  box-shadow: 0 0 0 4px #FFD300;
  transform: scale(1.08);
}
.pfp-char-btn img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.carousel-arrow {
  background: #FFD300;
  color: #fff;
  font-size: 2rem;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.15s, color 0.15s;
}
.carousel-arrow:hover, .carousel-arrow:focus {
  background: #fff;
  color: #FFD300;
}
@media (max-width: 768px) {
  .pfp-characters-label {
    font-size: 1rem;
  }
  .carousel-arrow {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
  }
  .pfp-char-btn img {
    width: 40px;
    height: 40px;
  }
}

.bonked-brett-bottom-right {
  position: fixed;
  right: 2rem;
  bottom: 0;
  width: 200px;
  height: auto;
  z-index: 1001;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}
@media (max-width: 768px) {
  .bonked-brett-bottom-right {
    width: 120px;
    right: 1rem;
  }
}
.bonked-popup {
  position: fixed;
  right: 2rem;
  bottom: 130px;
  min-width: 220px;
  max-width: 90vw;
  background: #FFD300;
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  padding: 1.2rem 2rem;
  text-align: center;
  text-shadow: 2px 2px 0 #000;
  z-index: 1002;
  display: none;
  pointer-events: none;
}
@media (max-width: 768px) {
  .bonked-popup {
    font-size: 1.1rem;
    right: 1rem;
    bottom: 80px;
    padding: 0.7rem 1rem;
  }
}

.selected-character-label {
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  margin: 0.5rem 0 1.5rem 0;
  text-shadow: 2px 2px 8px #000, 0 2px 8px #FFD300;
}

.selected-label {
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-bottom: 0.2rem;
  text-shadow: 2px 2px 8px #000, 0 2px 8px #FFD300;
}
.selected-char-name {
  color: #fff;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 8px #000, 0 2px 8px #FFD300;
  margin-bottom: 1.2rem;
}

.site-loader-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7); /* Changed from #fff to semi-transparent black */
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}
.site-loader-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
  animation: bounce 2s infinite;
}
.site-loader-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.custom-marquee {
  background: #000 !important;
  padding: 0;
  margin: 0;
}
.custom-marquee-inner {
  display: flex;
  align-items: center;
  height: 56px;
  overflow: hidden;
  white-space: nowrap;
  width: 100vw;
  position: relative;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 0 #000, 0 4px 16px #000;
}
.custom-marquee-inner .marquee-text, .custom-marquee-inner .marquee-icon {
  vertical-align: middle;
  display: inline-block;
}
.custom-marquee-inner .marquee-icon {
  height: 40px;
  width: auto;
  margin: 0 1.2rem 0 0.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}

.download-error {
  color: #ff3333;
  font-family: 'Brett', 'Bangers', cursive, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  margin: 1rem 0 0.5rem 0;
  display: none;
}

#music-toggle-btn {
  font-family: 'Bangers', cursive, sans-serif;
  background: #000;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  border-radius: 12px;
  padding: 0.7rem 2.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 3001;
  transition: background 0.2s, color 0.2s;
  outline: none;
  text-shadow: 2px 2px 0 #222;
  opacity: 0.95;
}
#music-toggle-btn:active, #music-toggle-btn:focus {
  background: #222;
  color: #FFD300;
}

html, body {
  box-sizing: border-box;
  overflow-x: hidden;
  background: #000;
}

.hero-section,
.about-section,
.contract-section,
.brettonomics-section,
.socials-section,
.pfp-generator-section,
.disclaimer-section {
  background-size: cover !important;
  background-position: center !important;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .hero-section,
  .about-section,
  .contract-section,
  .brettonomics-section,
  .socials-section,
  .pfp-generator-section,
  .disclaimer-section {
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
  }
  html, body {
    background: #000;
  }
}


