/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background styling */
body {
  min-height: 100vh;
  background-color: #0f0b1a;
  color: #e0d6ff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  user-select: none;
}

.background-blur {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('https://i.imgur.com/CZ0orNG.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: blur(10px) brightness(0.3) hue-rotate(260deg);
  z-index: -1;
  pointer-events: none;
}

/* Container styling */
.container {
  background: rgba(15, 5, 30, 0.7);
  padding: 3rem 2.5rem;
  border-radius: 15px;
  max-width: 480px;
  box-shadow: 0 0 30px rgba(90, 30, 150, 0.5);
  border: 1px solid rgba(120, 60, 180, 0.3);
  backdrop-filter: blur(5px);
}

/* Text styling */
h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #b388ff;
  text-shadow: 0 0 15px rgba(179, 136, 255, 0.7);
}

p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #cbb8ff;
}

/* Skills list styling */
.skills {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skills li {
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ce93d8;
  text-shadow: 0 0 8px rgba(206, 147, 216, 0.5);
  position: relative;
  padding: 0.5rem 1.5rem;
}

.skill-divider {
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 136, 255, 0.5), transparent);
  margin: 0.5rem 0;
}

/* Button styling */
.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

button#toggle-mute, .discord-btn {
  height: 50px;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button#toggle-mute {
  background: linear-gradient(135deg, #7b2cbf 0%, #3c096c 100%);
  border: none;
  color: white;
  box-shadow: 0 0 15px rgba(123, 44, 191, 0.6);
  border: 1px solid rgba(179, 136, 255, 0.3);
}

.discord-btn {
  background: linear-gradient(135deg, #5865F2 0%, #3a45a5 100%);
  border: none;
  color: white;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.discord-icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

button#toggle-mute:hover {
  background: linear-gradient(135deg, #9c4dff 0%, #5a189a 100%);
  box-shadow: 0 0 20px rgba(156, 77, 255, 0.8);
  transform: translateY(-2px);
}

.discord-btn:hover {
  background: linear-gradient(135deg, #7289da 0%, #4e5d94 100%);
  box-shadow: 0 0 20px rgba(114, 137, 218, 0.7);
  transform: translateY(-2px);
}