/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  overflow: hidden;
  height: 100vh;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Gradient rays behind particles */
.gradient-rays {
  position: fixed;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255,200,200,0.05), rgba(200,255,255,0.05), rgba(200,200,255,0.05));
  animation: moveRays 20s linear infinite;
  top: -50%;
  left: -50%;
  z-index: 0;
  pointer-events: none;
}

@keyframes moveRays {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Canvas particles */
#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Container */
.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 500px;
  animation: fadeIn 1.5s ease-in-out;
}

/* Logo */
.logo {
  width: 150px;
  margin-bottom: 20px;
  animation: bounce 2s ease infinite, fadeIn 1.5s ease forwards;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111;
  text-shadow: 0 0 5px rgba(0,0,0,0.1);
  animation: slideUp 1.2s ease forwards;
}

p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
  animation: slideUp 1.5s ease forwards;
  animation-delay: 0.3s;
}

/* Contact button */
.contact-btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  margin-top: 10px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease, transform 0.3s ease;
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.6s;
}

.contact-btn:hover {
  background-color: #333;
  color: #fff;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive design */
@media (max-width: 768px) {
  .logo { width: 120px; }
  h1 { font-size: 1.8rem; }
  p { font-size: 0.95rem; }
  .contact-btn { font-size: 0.95rem; padding: 10px 20px; }
}

@media (max-width: 480px) {
  .logo { width: 100px; }
  h1 { font-size: 1.5rem; }
  p { font-size: 0.9rem; }
  .contact-btn { font-size: 0.9rem; padding: 8px 16px; }
}
