/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* BACKGROUND */
.background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #494949, #ffffff, #A91E23);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  z-index: -2;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* CONTENT */
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  padding: 2rem;
}

.logo {
  max-width: 220px;
  margin-bottom: 2rem;
  animation: fadeIn 1.2s ease-out forwards;
}

.message-box {
  animation: fadeInUp 1.4s ease-out forwards;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.message-box p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* CONTACT BLOCK */
.contact {
  margin-top: 2rem;
}

.contact p {
  font-size: 1.2rem;
  margin: 0.4rem 0;
}

.contact a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.4);
  transition: color 0.3s ease, border 0.3s ease;
}

.contact a:hover {
  color: #D01F29;
  border-bottom: 1px solid #D01F29;
}

/* FOOTER */
footer {
  position: absolute;
  bottom: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  animation: fadeIn 2s ease-out forwards;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  .message-box p {
    font-size: 1rem;
  }
  .contact p {
    font-size: 1rem;
  }
  .logo {
    max-width: 160px;
  }
}
