/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

/* Background Animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float 20s infinite linear;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  right: 10%;
  animation-delay: -15s;
}

.shape-5 {
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  animation-delay: -7s;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(0px) rotate(360deg);
    opacity: 0.3;
  }
}

/* Main Content */
.main-content {
  flex: 1/9;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 2;
  /* min-height: 90vh; */
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
  gap: 2rem;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-content:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.header-icon {
  font-size: 1.2rem;
}

.header-text {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

/* Main Content Section */
.main-content-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.logo-container {
  width: 100%;
  animation: fadeInUp 1s ease-out;
  margin-bottom: 0.5rem;
}

.emoji-container {
  animation: fadeInUp 1s ease-out 0.3s both;
  margin-bottom: 0.5rem;
}

.main-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  animation: float 3s ease-in-out infinite;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}

.logo-image {
  max-width: 120px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

.subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #00d4ff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #b0b0b0;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

/* Progress Bar */
.progress-container {
  animation: fadeInUp 1s ease-out 0.9s both;
  width: 100%;
  max-width: 400px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  border-radius: 3px;
  animation: progressAnimation 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

.progress-text {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Contact Section */
.contact-section {
  animation: fadeInUp 1s ease-out 1.2s both;
  width: 100%;
  max-width: 400px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.contact-icon {
  font-size: 1.3rem;
  opacity: 0.8;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #00d4ff;
}

/* Footer Social */
.footer-social {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 2.1s both;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.status-text {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 1rem 1.5rem;
  }

  .content-wrapper {
    gap: 1.5rem;
  }

  .logo-image {
    max-width: 100px;
  }

  .main-emoji {
    font-size: 3rem;
  }

  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .contact-info {
    gap: 0.8rem;
  }

  .contact-item {
    padding: 0.7rem 1.5rem;
    flex-direction: row;
    gap: 0.8rem;
    border-radius: 25px;
  }

  .contact-icon {
    font-size: 1.1rem;
  }

  .contact-link {
    font-size: 0.9rem;
  }

  .header {
    top: 1rem;
  }

  .footer-social {
    bottom: 0.8rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem 1rem;
  }

  .content-wrapper {
    gap: 1.2rem;
  }

  .logo-image {
    max-width: 80px;
  }

  .main-emoji {
    font-size: 2.5rem;
  }

  .title {
    font-size: 1.6rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .subtitle {
    font-size: 0.8rem;
  }

  .contact-info {
    gap: 0.6rem;
  }

  .contact-item {
    padding: 0.6rem 1rem;
    flex-direction: row;
    gap: 0.6rem;
    border-radius: 20px;
  }

  .contact-icon {
    font-size: 1rem;
  }

  .contact-link {
    font-size: 0.85rem;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-social {
    bottom: 0.5rem;
  }

  .shape {
    display: none;
  }
}
