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

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #111 url('/assets/background.jpg') no-repeat center top;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}

.logo {
  max-width: 300px;
  width: 80vw;
  height: auto;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

h2 {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(1.2rem, 4vw, 2rem);
  color: #f4511e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2.5rem;
  font-family: 'Russo One', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

.socials {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  margin-top: 2rem;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

.socials svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 480px) {
  .logo {
    max-width: 200px;
  }

  .socials {
    gap: 0.8rem;
  }

  .socials a {
    width: 38px;
    height: 38px;
  }

  .socials svg {
    width: 18px;
    height: 18px;
  }
}
