/* 📌 Background Lightning Effect */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: black;
    color: white;
    overflow-x: hidden;  /* only hide horizontal overflow */
    overflow-y: auto;     /* enable vertical scrolling */
    min-height: 100vh;
}

/* 📌 Lightning Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none; /* THIS allows clicks and scroll to pass through */
}
html {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
footer {
      text-align: center;
      padding: 1rem;
      color: var(--light);
}



/* 📌 Glowing Animation */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #ff00ff, 0 0 10px #00ffff;
    }
    to {
        text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
    }
}

/* 📌 Center Container */
.container {
    text-align: center;
    margin-top: 50px;
}

/* 📌 Buttons Styling */
.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff);
    background-size: 400% 400%;
    animation: gradientShift 5s infinite alternate;
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.1);
}

/* 📌 Copy Button */
.copy-btn {
    background: white;
    color: black;
}

/* 📌 Inbox Messages */
.email {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 10px;
    margin: 10px auto;
    width: 80%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 📌 Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.mute-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  padding: 10px 15px;
  border: none;
  border-radius: 50%;
  background-color: #333;
  color: white;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

.mute-button:hover {
  background-color: #555;
}
