* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "YAFdJl3zAt0 0", "_fb_", "auto";
  background-color: #2a2a2a;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px 40px 40px;
  position: relative;
}

/* Logo */
.logo-container {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 10;
}

.logo {
  width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  opacity: 0.95;
  filter: brightness(1.1) contrast(1.1);
}

.logo:hover {
  transform: scale(1.08);
  opacity: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Under Construction Title */
.under-construction {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

.under-title {
  font-size: clamp(3rem, 12vw, 12rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  color: #ffffff;
}

.construction-title {
  font-size: clamp(3rem, 9vw, 12rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-top: -20px;
  line-height: 0.8;
  color: #ffffff;
}

/* Animation completely removed - plain text */

/* Main Content */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  align-items: start;
  margin-top: 20px;
}

.left-content {
  text-align: left;
}

.main-text {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #ffffff;
}

.sub-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.4;
  color: #cccccc;
  margin-bottom: 12px;
}

.promise-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  line-height: 1.4;
  color: #cccccc;
  margin-bottom: 0;
}

/* Right Content */
.right-content {
  text-align: left;
}

.contact-info {
  margin-bottom: 25px;
}

.contact-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.4;
}

.contact-item {
  margin-bottom: 8px;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: #cccccc;
  font-weight: 300;
  line-height: 1.3;
}

.website-info {
  margin-bottom: 25px;
}

.website-text {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: #cccccc;
  font-weight: 300;
  margin-bottom: 0;
}

.website-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.website-link:hover {
  color: #dddddd;
  text-decoration: underline;
}

/* Social Media */
.social-media {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-icon {
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
  font-size: 24px;
}

.social-icon:hover {
  transform: scale(1.2);
  color: #dddddd;
}

/* Developer Info */
.developer-info {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.developer-info small {
  font-size: 0.75rem;
  color: #666666;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* Background Animation */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 25s linear infinite;
}

/* Responsive Design */
@media (max-width: 900px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .container {
    padding: 40px 30px 30px 30px;
  }

  .under-construction {
    margin-bottom: 40px;
  }

  .developer-info {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 40px;
  }

  .logo-container {
    top: 20px;
    right: 20px;
  }

  .logo {
    width: 80px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 30px 20px 20px 20px;
  }

  .main-content {
    gap: 30px;
    margin-top: 10px;
  }

  .under-construction {
    margin-bottom: 30px;
  }

  .under-title,
  .construction-title {
    margin-top: 0;
  }

  .construction-title {
    margin-top: -10px;
  }

  .contact-info {
    margin-bottom: 20px;
  }

  .website-info {
    margin-bottom: 20px;
  }

  .logo-container {
    top: 15px;
    right: 15px;
  }

  .logo {
    width: 70px;
  }
}
