/* Global Styles */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background: url('https://cdn.prod.website-files.com/5a9ee6416e90d20001b20038/64f5e02cb5805eb6fd8e503c_Rectangle%20(98).svg') no-repeat center center/cover;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.75);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  text-align: center;
  width: min(90%, 500px);
  animation: fadeIn 1s ease-out, scaleIn 0.5s ease-out;
  border: 2px solid #DA70D6;
}

/* Header */
.header {
  font-size: 2.5rem;
  font-weight: 700;
  color: #DA70D6;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  animation: slideIn 1s ease-out, bounceIn 1s ease-out;
}

/* Icon */
.icon {
  height: 50px;
  width: 50px;
  transition: transform 0.4s, filter 0.4s;
}

.icon:hover {
  transform: rotate(360deg) scale(1.2);
  filter: brightness(1.3);
}

/* Description */
.description {
  font-size: 1.25rem;
  color: #d1d1d1;
  line-height: 1.6;
  padding: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease-out;
}

/* Input */
.input {
  width: 100%;
  max-width: 450px;
  background: transparent;
  border: 2px solid #555;
  font-size: 1rem;
  padding: 12px;
  text-align: center;
  color: #DA70D6;
  border-radius: 30px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, background-color 0.3s;
}

.input::placeholder {
  color: #a1a1a1;
}

.input:focus {
  border-color: #DA70D6;
  box-shadow: 0 0 15px rgba(218, 112, 214, 0.7);
  transform: scale(1.05);
  background-color: rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
  height: 70px;
  width: 70px;
  transition: filter 0.4s, transform 0.4s;
}

.logo:hover {
  filter: drop-shadow(0 0 25px #DA70D6);
  transform: scale(1.15) rotate(15deg);
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  bottom: 0;
  color: #DA70D6;
  border-top: 2px solid #DA70D6;
  animation: fadeIn 2s ease-out;
}

.footer a {
  color: #DA70D6;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s, background-color 0.3s;
}

.footer a:hover {
  color: #ffffff;
  transform: scale(1.1);
  background-color: rgba(218, 112, 214, 0.2);
  border-radius: 5px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  color: #DA70D6;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar a {
  float: left;
  display: block;
  color: #DA70D6;
  padding: 14px 20px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, border-radius 0.3s;
}

.navbar a:hover {
  background-color: #DA70D6;
  color: black;
  transform: scale(1.1);
  border-radius: 10px;
}

/* Button */
.button {
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: #DA70D6;
  padding: 14px 30px;
  text-align: center;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.button:hover {
  background: #DA70D6;
  color: #000;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes bounceIn {
  from { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  to { transform: scale(1); }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes shadowPulse {
  0% { box-shadow: 0 0 0 rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 0 25px rgba(0, 0, 0, 0.5); }
  100% { box-shadow: 0 0 0 rgba(0, 0, 0, 0.2); }
}

/* Additional Effects */
.container:hover {
  animation: shadowPulse 1s infinite;
}

.header:hover {
  animation: bounceIn 1.5s ease-out;
}

.footer a {
  position: relative;
  overflow: hidden;
}

.footer a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg, rgba(218, 112, 214, 0.3), rgba(218, 112, 214, 0.0));
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.5s;
  z-index: 0;
}

.footer a:hover::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.navbar a {
  position: relative;
  overflow: hidden;
}

.navbar a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg, rgba(218, 112, 214, 0.3), rgba(218, 112, 214, 0.0));
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.5s;
  z-index: 0;
}

.navbar a:hover::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }
}
