* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #003366;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 480px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.company-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.company-handle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 400;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.social-link {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #2d3748;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden !important;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
  overflow: hidden;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.social-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.social-icon {
  width: 28px;
  height: 28px;
  margin-right: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-text {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Individual social media colors */
.facebook:hover {
  background: #0966FF;
  color: white;
}

.facebook:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
}

.linkedin:hover {
  background: #0966C2;
  color: white;
}

.linkedin:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
}

.telegram:hover {
  background: #28A9EA;
  color: white;
}

.telegram:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
}

.tiktok:hover {
  background: #000000;
  color: white;
}

.tiktok:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
}

.youtube:hover {
  background: #FF0D33;
  color: white;
}

.youtube:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
}

.instagram:hover {
  background: linear-gradient(45deg, #FCAF45, #F56040, #C13584, #833AB4);
  background-clip: padding-box;
  color: white;
  border: 2px solid transparent;
  background-image:
    linear-gradient(45deg, #FCAF45, #F56040, #C13584, #833AB4),
    linear-gradient(45deg, #FCAF45, #F56040, #C13584, #833AB4);
  background-clip: padding-box, border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-origin: padding-box, border-box;
}

.instagram:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
}

.whatsapp:hover {
  background: #25D366;
  color: white;
}

.whatsapp:hover .social-icon {
  background: rgba(255, 255, 255, 0.2);
}

.social-link {
  animation: fadeInUp 0.6s ease-out both;
}

.social-link:nth-child(1) {
  animation-delay: 0.1s;
}

.social-link:nth-child(2) {
  animation-delay: 0.2s;
}

.social-link:nth-child(3) {
  animation-delay: 0.3s;
}

.social-link:nth-child(4) {
  animation-delay: 0.4s;
}

.social-link:nth-child(5) {
  animation-delay: 0.5s;
}

.social-link:nth-child(6) {
  animation-delay: 0.6s;
}

.social-link:nth-child(7) {
  animation-delay: 0.7s;
}

/* Responsive design */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .company-name {
    font-size: 2rem;
  }

  .social-link {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }

  .social-icon {
    width: 24px;
    height: 24px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}