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

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1" /><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0.05" /></linearGradient></defs><rect x="0" y="0" width="1200" height="800" fill="url(%23grad1)"/><polygon points="0,0 300,0 200,200 0,150" fill="%23ffffff" opacity="0.05"/><polygon points="1200,0 900,0 1000,200 1200,150" fill="%23ffffff" opacity="0.05"/><polygon points="0,800 300,800 200,600 0,650" fill="%23ffffff" opacity="0.05"/><polygon points="1200,800 900,800 1000,600 1200,650" fill="%23ffffff" opacity="0.05"/><circle cx="600" cy="400" r="150" fill="%23ffffff" opacity="0.03"/><rect x="400" y="100" width="200" height="200" fill="%23ffffff" opacity="0.02" transform="rotate(45 500 200)"/><rect x="600" y="500" width="150" height="150" fill="%23ffffff" opacity="0.02" transform="rotate(-30 675 575)"/></svg>') no-repeat center center;
  background-size: cover;
  opacity: 0.4;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.logo {
  margin-bottom: 2rem;
}

.logo-image {
  width: 200px;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-content {
  max-width: 600px;
  margin: 0 auto;
}

.title-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 2px;
  animation: accentGlow 2s ease-in-out infinite alternate;
}

.subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.8rem 2rem;
  margin-bottom: 3rem;
  color: white;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.status-icon {
  width: 12px;
  height: 12px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 0.8rem;
  animation: pulse 2s infinite;
}

.progress-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.progress-title {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
  border-radius: 10px;
  width: 75%;
  animation: progress 2s ease-out;
}

.progress-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Error Pages Styles */
.error-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.error-code {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.error-icon {
    font-size: 3rem;
    color: #60a5fa;
    animation: pulse 2s infinite;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 0s;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.floating-element:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 65%;
  right: 12%;
  border-radius: 50%;
  animation-delay: 3s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.floating-element:nth-child(3) {
  width: 100px;
  height: 100px;
  bottom: 25%;
  left: 15%;
  border-radius: 20px;
  animation-delay: 6s;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  transform: rotate(45deg);
}

.floating-element.geometric-shape:nth-child(4) {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 25%;
  border-radius: 0;
  animation-delay: 2s;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.floating-element.geometric-shape:nth-child(5) {
  width: 40px;
  height: 40px;
  top: 80%;
  right: 8%;
  border-radius: 0;
  animation-delay: 4s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes progress {
  0% {
    width: 0%;
  }

  100% {
    width: 75%;
  }
}

@keyframes accentGlow {
  0% {
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
    transform: translateX(-50%) scaleX(1);
  }

  100% {
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
    transform: translateX(-50%) scaleX(1.2);
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .container {
    padding: 1rem;
  }

  .logo-image {
    width: 150px;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}