.glass-panel {
  background: rgba(20, 20, 30, 0.45);
  backdrop-filter: blur(14px) saturate(180%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
  max-width: 500/* ===== Core Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #e8d5b7;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== Loading State ===== */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(212, 160, 39, 0.2);
  border-top-color: #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  color: #e8d5b7;
  font-size: 1rem;
  text-align: center;
}

/* ===== Container ===== */
.whitelist-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.whitelist-wrapper {
  width: 100%;
  max-width: 500px;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(212, 160, 39, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 0 30px rgba(212, 160, 39, 0.2), inset 0 0 20px rgba(184, 51, 47, 0.1);
  backdrop-filter: blur(10px);
  animation: cardSlideIn 0.5s ease;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Logo ===== */
.whitelist-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.whitelist-logo img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(212, 160, 39, 0.3));
}

/* ===== Header ===== */
.whitelist-header {
  text-align: center;
  margin-bottom: 2rem;
}

.whitelist-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e8d5b7;
  text-shadow: 0 0 15px rgba(212, 160, 39, 0.3);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.whitelist-subtitle {
  font-size: 0.95rem;
  color: #cbbfa2;
  line-height: 1.5;
}

/* ===== User Status Section ===== */
.user-status-section {
  background: rgba(212, 160, 39, 0.08);
  border: 1px solid rgba(212, 160, 39, 0.2);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.user-status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 160, 39, 0.15);
}

.user-status-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.user-status-label {
  font-size: 0.85rem;
  color: #cbbfa2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.user-status-value {
  font-size: 0.95rem;
  color: #e8d5b7;
  font-weight: 600;
  word-break: break-all;
}

/* ===== Wallet Connection ===== */
.wallet-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  border: 1px solid rgba(212, 160, 39, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.wallet-section h3 {
  font-size: 1.1rem;
  color: #e8d5b7;
  margin-bottom: 1rem;
  font-weight: 600;
}

.wallet-input-wrapper {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.wallet-input {
  flex: 1;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(212, 160, 39, 0.3);
  color: #e8d5b7;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
}

.wallet-input:focus {
  outline: none;
  border-color: rgba(212, 160, 39, 0.6);
  background: rgba(26, 26, 46, 0.8);
  box-shadow: 0 0 10px rgba(212, 160, 39, 0.2);
}

.wallet-input::placeholder {
  color: rgba(232, 213, 183, 0.4);
}

.connect-wallet-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 1px solid rgba(212, 160, 39, 0.4);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.connect-wallet-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  transition: all 0.4s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
}

.connect-wallet-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.connect-wallet-btn span {
  position: relative;
  z-index: 1;
}

.connect-wallet-btn:hover {
  box-shadow: 0 0 20px rgba(212, 160, 39, 0.6), 0 0 30px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

.connect-wallet-btn:active {
  transform: translateY(0);
}

.connect-wallet-btn.connected {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.connect-wallet-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== Status Message ===== */
.status-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 160, 39, 0.08);
  color: #cbbfa2;
  border: 1px solid rgba(212, 160, 39, 0.2);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.status-message.verifying {
  color: #d4a027;
  border-color: rgba(212, 160, 39, 0.4);
}

.status-message.whitelisted {
  color: #6fff9c;
  border-color: rgba(111, 255, 156, 0.3);
  background: rgba(111, 255, 156, 0.08);
}

.status-message.not-whitelisted {
  color: #ff6666;
  border-color: rgba(255, 102, 102, 0.3);
  background: rgba(255, 102, 102, 0.08);
}

.status-message.error {
  color: #ffaa44;
  border-color: rgba(255, 170, 68, 0.3);
  background: rgba(255, 170, 68, 0.08);
}

/* ===== Whitelist Info ===== */
.whitelist-info {
  background: rgba(102, 126, 234, 0.1);
  border-left: 4px solid #667eea;
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.whitelist-info h4 {
  font-size: 0.95rem;
  color: #e8d5b7;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.whitelist-info p {
  font-size: 0.85rem;
  color: #cbbfa2;
  line-height: 1.6;
  margin: 0;
}

/* ===== Action Buttons ===== */
.action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.action-btn {
  background: rgba(232, 213, 183, 0.06);
  border: 1px solid rgba(212, 160, 39, 0.3);
  color: #e8d5b7;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(212,160,39,0.25) 0%, transparent 70%);
  transition: all 0.4s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
}

.action-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.action-btn span {
  position: relative;
  z-index: 1;
}

.action-btn:hover {
  background: rgba(184, 51, 47, 0.25);
  color: #fff;
  border-color: rgba(212, 160, 39, 0.6);
  box-shadow: 0 0 15px rgba(212, 160, 39, 0.5);
  transform: translateY(-2px);
}

/* ===== Footer Links ===== */
.whitelist-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 160, 39, 0.15);
}

.whitelist-footer p {
  font-size: 0.85rem;
  color: #cbbfa2;
  margin: 0.5rem 0;
}

.whitelist-footer a {
  color: #e8d5b7;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whitelist-footer a:hover {
  color: #667eea;
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .whitelist-wrapper {
    padding: 1.5rem 1rem;
  }

  .whitelist-title {
    font-size: 1.4rem;
  }

  .action-buttons {
    grid-template-columns: 1fr;
  }

  .wallet-input-wrapper {
    flex-direction: column;
  }

  .connect-wallet-btn {
    width: 100%;
  }
}px;
  margin: auto;
}

.wallet-display, .user-display {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

#status-message {
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.Pazy-second-hover-background-color:hover {
  opacity: 0.9;
}
