* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #e9b761 0%, #f59e0b 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}

.background-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.shape1 {
  width: 300px;
  height: 300px;
  background: white;
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.shape2 {
  width: 200px;
  height: 200px;
  background: white;
  bottom: -30px;
  left: -30px;
  animation-delay: 7s;
}

.shape3 {
  width: 150px;
  height: 150px;
  background: white;
  top: 50%;
  left: 50%;
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.container {
  background: #f3deb8;
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 70px 50px;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  z-index: 1;
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-container {
  margin-bottom: 35px;
  position: relative;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
}

.logo {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: logoAppear 1s ease-out;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes logoAppear {
  from {
    opacity: 0;
    transform: scale(0.8) rotateY(180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #e9b761 0%, #f59e0b 100%);
  border-radius: 30px;
  filter: blur(20px);
  opacity: 0.4;
  z-index: 1;
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
}

.description {
  margin-bottom: 45px;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-title {
  font-size: 32px;
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e9b761 0%, #f59e0b 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.brand-text {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
  max-width: 600px;
  font-weight: 400px;
  margin: 0 auto;
}

.richard {
  color: #990b23;
  font-weight: 700;
  text-decoration: none;
}
.richard:hover {
  color: #c41e3a;
  text-decoration: underline;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.5s backwards;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.social-icon:hover .icon-bg {
  transform: scale(1);
}

.social-icon svg {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-icon:hover {
  transform: translateY(-10px) scale(1.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.social-icon:hover svg {
  transform: scale(1.2) rotate(5deg);
}

.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0c5dce 100%);
}

.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.tiktok {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
}
.email {
  background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.decorative-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
  margin: 40px auto 0;
  border-radius: 2px;
  animation: fadeIn 1s ease-out 0.7s backwards;
}

@media (max-width: 480px) {
  .container {
    padding: 50px 30px;
    border-radius: 25px;
  }

  .logo {
    width: 130px;
    height: 130px;
    font-size: 44px;
    border-radius: 25px;
  }

  .logo-glow {
    width: 150px;
    height: 150px;
  }

  .brand-title {
    font-size: 26px;
  }

  .brand-text {
    font-size: 15px;
  }

  .social-icon {
    width: 55px;
    height: 55px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }
}
/* developer- */

.developer-credit {
  width: 100%;
  text-align: center;
  align-self: center;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-top: 20px;
}

.developer-credit a {
  color: #4361ee;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-family: monospace;
}

.developer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #4361ee;
  transition: width 0.3s ease;
}

.developer-credit a:hover {
  color: #4361ee;
}
.developer-credit a:hover::after {
  width: 100%;
}
