* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Special Elite', cursive;
  color: #000000;
}
body {
  background-color: #f9fae8;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
header {
  text-align: center;
  padding: 2rem 1rem;
}
.header-image {
  max-width: 500px;
  height: auto;
  margin-bottom: 1rem;
}
.footer-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
  justify-content: center;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
#countdown {
  font-size: 1.2rem;
  font-weight: bold;
}
main {
  flex: 1;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.auth-section {
  text-align: center;
  margin-bottom: 2rem;
}
.user-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  
}
.info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.info-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.claim-logo {
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Same as width to ensure a perfect circle */
  object-fit: cover; /* Ensures the image fills the circle without stretching */
  border-radius: 50%; /* Creates the circular shape */
}
.btn {
  background-color: #333;
  color: #f9fae8;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  margin: 0.5rem;
  text-decoration: none;
}
.btn:hover {
  background-color: #555;
}
input[type="number"],
input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.token-transfer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.copy-btn {
  display: inline-block;
}
.footer {
  text-align: center;
  padding: 2rem 1rem;
}
.lp-link {
  display: inline-block;
  margin-top: 1rem;
}
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #f9fae8;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: none;
}
.notification.show {
  display: block;
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .header-image { max-width: 100%; }
  .info-card { padding: 1rem; }
  .btn { padding: 0.5rem 1rem; font-size: 0.9rem; }
  input[type="number"], input[type="text"] { padding: 0.5rem; font-size: 0.9rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  p { font-size: 1rem; }
  .header-image { max-width: 100%; }
  .user-section { grid-template-columns: 1fr; }
}

.claim-btn {
  background: linear-gradient(45deg, #4a0000, #8b0000);
  color: #ffcccc;
  font-weight: bold;
  padding: 12px 24px;
  margin-top: 10px;
  border: 2px solid #ff0000;
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
  transition: all 0.3s;
}

.claim-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,0,0,0.8);
}

#unlocked-grave {
  font-size: 1.4em;
  color: #22f70b;
  font-weight: bold;
}

#total-vesting {
  color: #22f70b;
  margin-top: 5px;
}

/* 1. Make one card span all columns */
.info-card.full-width {
  grid-column: 1 / -1;           /* ← This makes it stretch across all columns */
  max-width: none;               /* ← Override the max-width we added before */
}

/* 2. Optional: make it look like a proper banner */
.info-card.full-width {
  background: linear-gradient(135deg, #81c981, #101010);
  border: 2px solid #22f70b;
  box-shadow: 0 0 30px rgba(34, 247, 11, 0.6);
  padding: 2rem;
  border-radius: 12px;
}

.info-card.full-width h2 {
  font-size: 2rem;
  color: #22f70b;
  text-shadow: 0 0 20px #22f70b;
  margin-bottom: 1rem;
}

.info-card.full-width p {
  font-size: 1.2rem;
  color: #ccffcc;
}

.hidden-claim-btn {
  display: none !important;
}

.dripping-glow {
  animation: dripPulse 2s infinite;
  color: #22f70b !important;
  text-shadow: 0 0 15px #22f70b, 0 0 30px #0f5;
}

@keyframes dripPulse {
  0%, 100% { opacity: 0.8; text-shadow: 0 0 15px #22f70b; }
  50% { opacity: 1; text-shadow: 0 0 30px #22f70b, 0 0 50px #0f5; }
}