body::before {
content: " ";
background-image: url("https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExcHl6NDU1aGUyNW5nMHdvOTE0cGszeGo3dzY3cWc1azFocXN6a2I2aSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/Ox1fX9dN3sfy95bcpB/giphy.gif");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
#backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(20px);
}

.discord-iframe-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 10px;
# background: linear-gradient(135deg, #2C2F33, #23272A); /* Discord-inspired gradient */
# border: 2px solid #7289DA; /* Discord brand color */
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.discord-iframe-container:hover {
  transform: scale(1.01); /* Subtle hover zoom */
}

iframe {
  width: 100%;
  height: 600px; /* Adjust as needed */
  border: none;
  display: block;
  background: transparent;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .discord-iframe-container {
    max-width: 100%;
    padding: 5px;
    border-radius: 8px;
  }
  iframe {
    height: 400px; /* Smaller height for mobile */
    border-radius: 15px;
  }
}
