/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", "Comic Sans", cursive, sans-serif;
    background: url('images/BlazeitBG.png') no-repeat center center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #b0e8f7; /* Light blue similar to BG image */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    padding-top: 80px; /* Ensures content is below the navbar */
  }
  
  .navbar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(255, 69, 0, 0.7);
    height: 60px;
  }
  
  .navbar-left {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 0px;
  }
  
  .navbar-logo {
    height: 105px;
    width: auto;
    margin-right: 20px;
  }
  
  .navbar-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .navbar-link {
    position: relative;
    text-decoration: none;
    color: white;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    font-size: 20px;
    font-weight: bold;
  }
  
  .navbar-link:hover {
    color: #ffcf48;
  }
  
  .navbar-link .smoke-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
  }
  
  .navbar-link:hover .smoke-container {
    opacity: 1;
    animation: floatUp 1.5s ease-in-out infinite;
  }
  
  .navbar-right {
    margin-left: auto;
  }
  
  .navbar-logo-right {
    height: 128px;
    width: auto;
    margin-left: 20px;
  }
  
  .smoke-dot {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: puff 5s ease-in-out infinite;
    filter: blur(1px);
  }
  
  @keyframes puff {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0.7;
    }
    100% {
      transform: translateY(-10px) scale(1.5);
      opacity: 0;
    }
  }
  
  @keyframes floatUp {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
    100% { transform: translateX(-50%) translateY(0); }
  }
  
  .container {
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .game-panel {
    width: 100%;
    max-width: 1600px; /* 🔥 was 1200px */
    background: rgba(0, 0, 0, 0.75);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.6);
    text-align: center;
  }
  
  .title {
    font-size: 2rem;
    margin-bottom: 5px;
    color: gold;
    text-shadow: 0 0 6px #ff8c00, 0 0 10px #ff4500;
    font-weight: bold;
  }
  
  .tagline {
    font-size: 1.2rem;
    color: gold;
    font-weight: bold;
    text-shadow: 0 0 6px #ff8c00, 0 0 10px #ff4500;
    animation: flicker 1.5s infinite alternate;
  }
  
  @keyframes flicker {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
  }
  
  .wallet-controls {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .wallet-btn {
    padding: 10px 20px;
    border-radius: 10px;
    background-color: orange;
    color: black;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .wallet-btn.orange {
    background-color: orange;
    color: #000;
  }
  
  .wallet-btn:hover {
    background-color: darkorange;
  }
  
  .hidden {
    display: none;
  }
  
  .stats {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }  
  
  .stats ul li {
    margin-bottom: 8px;
  }  

  .stats h3 {
    margin-bottom: 10px;
    color: gold;
  }
  
  .contract-link {
    color: gold;
    font-weight: bold;
    text-decoration: none;
  }
  
  .contract-link:hover {
    color: orange;
    text-decoration: underline;
  }
  
  #moneyRain {
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
    animation: dropFade 1.5s ease-in-out;
  }
  
  @keyframes dropFade {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(5px); }
    100% { opacity: 0; transform: translateY(20px); }
  }
  
  @media (max-width: 640px) {
    .game-panel {
      width: 90%;
      padding: 20px;
    }
  
    .navbar-logo {
      height: 80px;
    }
  
    .navbar-logo-right {
      height: 100px;
    }
  
    .wallet-btn {
      font-size: 0.9rem;
      padding: 8px 14px;
    }
  
    .stats {
      text-align: center;
    }
  }
  .three-column-layout {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .panel-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 420px;     /* 💪 Optional for larger base width */
    max-width: 560px;     /* 🔥 was 480px */
  }
  
  .panel-column .stats {
    text-align: center;
  }
  .center-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 2;
    min-width: 350px;
    max-width: 420px;
  }
  .center-column .stats {
    text-align: center;
    width: 100%; /* or try 90%, or 480px */
    max-width: 500px;
  }
  #claimStatus {
    color: gold;
    font-weight: bold;
    margin-top: 10px;
    min-height: 24px;
    font-size: 1rem;
    text-shadow: 0 0 5px orange;
    transition: opacity 0.3s;
  }
  /* Footer */
.footer {
    width: 100vw; /* force it full width */
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    position: relative;
    font-size: 14px;
    margin-top: 20px;
    align-self: stretch; /* 👈 this ensures full width under flexbox */
}
/* Green glowing dot */
.status-light.green {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #00ff00;
    box-shadow: 0 0 8px #00ff00, 0 0 16px #00ff00;
    margin: 0 6px;
    animation: pulseGlow 1.4s infinite ease-in-out;
  }
  
  /* Red glowing dot */
  .status-light.red {
    background-color: #ff3c3c;
    box-shadow: 0 0 8px #ff3c3c, 0 0 16px #ff3c3c;
    animation: pulseGlow 1.4s infinite ease-in-out;
  }
  
  @keyframes pulseGlow {
    0% {
      box-shadow: 0 0 6px #00ff00, 0 0 10px #00ff00;
    }
    50% {
      box-shadow: 0 0 14px #00ff00, 0 0 24px #00ff00;
    }
    100% {
      box-shadow: 0 0 6px #00ff00, 0 0 10px #00ff00;
    }
  }
  a.contract-link,
a.nft-link {
  color: gold;
  text-decoration: none;
}

a.contract-link:hover,
a.nft-link:hover {
  color: #ffd700;
  text-decoration: underline;
}
.nft-owned {
  background: rgba(255, 85, 0, 0.1);
  border-left: 4px solid #ff4500;
  padding-left: 10px;
  animation: fireGlow 1.2s ease-in-out infinite alternate;
  color: #ffb347;
}

@keyframes fireGlow {
  from {
    box-shadow: 0 0 5px #ff6f00, 0 0 10px #ff4500;
  }
  to {
    box-shadow: 0 0 12px #ff4500, 0 0 18px #ff0000;
  }
}
