/* 🎨 Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

/* 🔧 Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Bangers', cursive;
  background: radial-gradient(circle at center, #222 0%, #000 100%);
  color: #ffcc00;
  padding: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ✅ Widget */
#boominu-widget {
  padding: 20px;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 204, 0, 0.4);
  max-width: 400px;
  margin: 40px auto;
}
#boominu-widget h3 {
  color: #ffcc00;
}
#boominu-widget button {
  background-color: #ffcc00;
  color: #000;
  padding: 10px 18px;
  margin: 8px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Orbitron', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 10px rgba(255, 0, 119, 0.5);
}
#boominu-widget button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 119, 0.8);
}

/* ✅ Comic Panels */
.comic-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.comic-panel {
  background: #000;
  border: 2px solid #ffcc00;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
  text-align: center;
}
.comic-panel h2 {
  font-size: 1.8rem;
  color: #ffcc00;
  margin-bottom: 1rem;
  text-shadow: 2px 2px #000;
}
.comic-panel p,
.comic-panel ul {
  font-size: 1.2rem;
  color: #ffcc00;
}
.comic-panel ul {
  list-style: none;
  padding-left: 0;
}
.comic-panel ul li::before {
  content: "💥 ";
  margin-right: 0.5rem;
  color: #ffcc00;
}

/* ✅ Header */
.comic-header {
  text-align: center;
  margin-bottom: 2rem;
}
.comic-header h1 {
  font-size: 2.5rem;
  color: #ffcc00;
  text-shadow: 3px 3px #000;
}
.comic-logo {
  display: block;
  margin: 0 auto 1rem;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 0 15px #000);
}

/* ✅ Background Effects */
.background-rotator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/202572165617309.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -2;
  opacity: 1;
  transition: opacity 2s ease-in-out;
}
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* ✅ Modal */
.intro-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease-out;
}
.intro-modal.fade-out {
  opacity: 0;
  pointer-events: none;
}
.intro-content {
  background: #ffcc00;
  color: #000;
  padding: 2rem;
  border: 5px solid #000;
  border-radius: 10px;
  box-shadow: 0 0 20px #ff0000;
  text-align: center;
}
.intro-content h1,
.intro-content p {
  color: #000;
}

/* ✅ Buttons */
.comic-button {
  background: #ffcc00;
  color: #000;
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #000;
  transition: background 0.2s ease-in-out;
}
.comic-button:hover {
  background: #fff000;
}

/* ✅ Forms */
form label,
.form-group label {
  font-size: 1.3rem;
  color: #ffcc00;
  margin-bottom: 0.5rem;
  display: block;
}
input[type="text"],
.meme-input {
  font-size: 1.1rem;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 2px solid #ffcc00;
  background-color: #1a1a1a;
  color: #ffcc00;
  width: 100%;
  font-family: 'Orbitron', sans-serif;
}
#template,
.meme-select {
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 6px;
  background-color: #1a1a1a;
  color: #ffcc00;
  border: 2px solid #ffcc00;
  box-shadow: 3px 3px 0 #000;
  font-family: 'Orbitron', sans-serif;
  width: 100%;
}
#template option {
  padding: 8px;
  color: #ffcc00;
}

/* ✅ Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222;
  padding: 10px;
  min-width: 160px;
  z-index: 1000;
  color: #ffcc00;
  border: 2px solid #ffcc00;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #000;
}
.dropdown-content a {
  color: #ffcc00;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  display: block;
}
.dropdown-content a:hover {
  color: #fff000;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* ✅ Lore */
#boominu-lore {
  background: linear-gradient(135deg, #1a1a1a, #000);
  border: 2px solid #ffcc00;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
  color: #ffcc00;
  font-family: 'Orbitron', sans-serif;
  padding: 25px;
  margin: 40px auto;
  max-width: 800px;
  font-size: 1.5rem;
  line-height: 2;
  text-align: justify;
  text-shadow: 0 0 3px #000;
  transition: transform 0.3s ease;
}
#boominu-lore:hover {
  transform: scale(1.02);
}

/* ✅ Video Wrapper */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* ✅ Navigation */
nav {
  margin: 1rem 0;
  text-align: center;
}
nav ul.menu {
  list-style: none;
  padding: 0;
  display: inline-block;
}
nav ul.menu li {
  display: inline-block;
  margin-right: 1rem;
}
nav ul.menu li a {
  color: #ffcc00;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif
  .comic-swap-box {
  background-color: #000;
  border: 2px solid #ffcc00;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,204,0,0.3);
  color: #ffcc00;
  font-family: 'Orbitron', sans-serif;
  max-width: 400px;
  margin: 3em auto;
  padding: 2em;
  text-align: center;
}
.comic-swap-box input {
  padding: 0.6em;
  font-size: 1em;
  border: 2px solid #ffcc00;
  background: #1a1a1a;
  color: #ffcc00;
  margin-bottom: 1em;
  border-radius: 6px;
  width: 100%;
}
.comic-swap-box button {
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 0.7em 1.5em;
  border-radius: 6px;
  cursor: pointer;
}
.comic-swap-box button:hover {
  background-color: #fff000;
}
.dex-panel {
  background-color: #000;
  color: #ffcc00;
  border: 2px solid #ffcc00;
  border-radius: 10px;
  padding: 2em;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
  max-width: 420px;
  margin: 2em auto;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
}

.swap-box {
  margin-top: 1em;
  text-align: left;
}

.swap-box label {
  display: block;
  margin-top: 1em;
  color: #ffcc00;
}

.swap-box input {
  width: 100%;
  padding: 0.6em;
  font-size: 1em;
  border: 2px solid #ffcc00;
  background-color: #1a1a1a;
  color: #ffcc00;
  border-radius: 6px;
  margin-top: 0.5em;
}

.dex-button {
  margin-top: 1.5em;
  padding: 0.8em 1.2em;
  font-weight: bold;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.dex-button:hover {
  background-color: #fff000;
}

.wallet-status {
  margin-top: 1em;
  font-size: 0.95em;
  color: #aaa;
}
.dex-swap-box {
  margin-top: 1em;
  text-align: left;
}

.dex-swap-box label {
  color: #ffcc00;
  display: block;
  margin-top: 1em;
}

.dex-swap-box input {
  width: 100%;
  padding: 0.6em;
  font-size: 1em;
  border: 2px solid #ffcc00;
  background: #1a1a1a;
  color: #ffcc00;
  border-radius: 6px;
  margin-top: 0.5em;
}
.dex-button {
  margin: 0.5em;
  padding: 0.8em 1.2em;
  font-weight: bold;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.dex-button:hover {
  background-color: #fff000;
}

.wallet-status {
  margin-top: 1em;
  font-size: 0.95em;
  color: #aaa;
}
.dex-container {
  background: linear-gradient(to bottom right, rgba(0,0,0,0.65), rgba(20,20,20,0.85));
  border: 2px solid #ffcc00;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
  max-width: 420px;
  margin: 2em auto;
  font-family: 'Orbitron', sans-serif;
  backdrop-filter: blur(10px);
}

.dex-card {
  background: rgba(40, 40, 40, 0.6);
  border: 1px solid #ffcc00;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
}

.dex-row {
  position: relative;
  margin-bottom: 1.5em;
}

.dex-row label {
  display: block;
  font-size: 0.9em;
  color: #ffcc00;
  margin-bottom: 0.5em;
}

.dex-row input {
  width: 100%;
  padding: 0.75em 1em;
  font-size: 1.1em;
  border: 2px solid #ffcc00;
  border-radius: 10px;
  background-color: rgba(0,0,0,0.7);
  color: #ffcc00;
  font-family: 'Orbitron', sans-serif;
}

.dex-token {
  position: absolute;
  right: 1em;
  top: 2.6em;
  color: #ffcc00;
  font-weight: bold;
  font-size: 0.9em;
  pointer-events: none;
}

.dex-button {
  width: 100%;
  padding: 0.9em;
  font-size: 1.1em;
  font-weight: bold;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dex-button:hover {
  background-color: #fff000;
}

.wallet-status {
  margin-top: 1em;
  font-size: 0.95em;
  color: #aaa;
  text-align: center;
}
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.popup-box {
  background: #1a1a1a;
  border: 2px solid #ffcc00;
  padding: 2em;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
  color: #ffcc00;
}
.popup-box button {
  margin-top: 1em;
}
/* Fullscreen popup backdrop */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Centered disclaimer box */
.popup-box {
  background: #1a1a1a;
  border: 2px solid #ffcc00;
  padding: 2em;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
  color: #ffcc00;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

.popup-box p {
  margin-bottom: 1.5em;
  font-size: 0.95em;
  line-height: 1.4em;
}
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none; /* hidden initially */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #1a1a1a;
  color: #ffcc00;
  border: 2px solid #ffcc00;
  border-radius: 12px;
  padding: 2em;
  max-width: 480px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}
#tokenomics {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#tokenomics h2, .social-outlets h3 {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.social-outlets {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}
