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

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.container {
  min-height: 100vh;
  background-color: black;
  background-image: url('attached_assets/bg_1753662340665.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  position: relative;
}

.container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero {
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 10;
}

.hero-title {
  font-size: 10rem;
  font-weight: bold;
  color: white;
  letter-spacing: 2px;
}

.bottom-right-image {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}

.preview-image {
  width: 600px;
  height: auto;
  border-radius: 20px;
}

.bottom-left-image {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

.left-image {
  width: 300px;
  height: auto;
}

.footer {
  position: fixed;
  top: 40px;
  right: 40px;
  background: transparent;
  padding: 0;
  z-index: 10;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}

.footer-link {
  color: #d3d3d3;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: normal;
  transition: color 0.3s ease;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-link:hover {
  color: #4CAF50;
  transform: none;
  background: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    top: 20px;
    left: 20px;
  }
  
  .hero-title {
    font-size: 6rem;
  }
  
  .footer {
    top: 20px;
    right: 20px;
  }
  
  .footer-links {
    gap: 25px;
    align-items: flex-end;
  }
  
  .bottom-right-image {
    bottom: 10px;
    right: 10px;
  }
  
  .preview-image {
    width: 400px;
  }
  
  .bottom-left-image {
    bottom: 10px;
    left: 10px;
  }
  
  .left-image {
    width: 200px;
  }
  
  .footer-link {
    width: auto;
    text-align: right;
  }
}

@media (max-width: 480px) {
  .hero {
    top: 15px;
    left: 15px;
  }
  
  .hero-title {
    font-size: 5rem;
  }
  
  .footer {
    top: 15px;
    right: 15px;
  }
  
  .footer-links {
    gap: 20px;
  }
  
  .preview-image {
    width: 300px;
  }
  
  .left-image {
    width: 150px;
  }
}
