* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  overflow-x: hidden;
  background: white;
}

/* Navigation */
ul {
  list-style: none;
  background: linear-gradient(90deg, #5f0d0d, #9b1717);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

ul li a {
  display: block;
  color: white;
  padding: 16px 22px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

ul li a:hover {
  background: white;
  color: #801212;
}

.overlay {
  position: fixed;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(120, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.55) 35%,
      rgba(0, 0, 0, 0.65) 65%,
      rgba(120, 0, 0, 0.45) 100%
    );

  z-index: -1;
}
.bg {
  filter: grayscale(100%) contrast(1.3) brightness(0.75);
}

/* Main content */
.content {
  min-height: 100vh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo {
  width: 300px;
  max-width: 90%;
  height: auto;
  margin-bottom: 20px;
  transition: 0.3s ease;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
}

.logo:hover {
  transform: translateY(-5px) scale(1.03);
}

.insta-ico {
  width: 85px;
  height: 85px;
  object-fit: contain;
  transition: 0.3s ease;
}

.insta-ico:hover {
  transform: scale(1.08);
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  margin-bottom: 15px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 3px 3px 14px black;
}

.subtitle {
  max-width: 750px;
  font-size: 1.25rem;
  margin-bottom: 35px;
  color: #eeeeee;
  line-height: 1.6;
}

/* Social links */
.socials {
  margin-bottom: 35px;
  padding: 20px 28px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.socials p {
  margin: 10px 0;
  font-size: 18px;
}

.socials a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.socials a:hover {
  color: #ffb3b3;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 15px 36px;
  background: rgba(128, 18, 18, 0.9);
  color: white;
  border: 2px solid white;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.btn:hover {
  background: white;
  color: #801212;
  transform: translateY(-4px);
}

/* Link states */
a:visited {
  color: inherit;
}

/* Mobile */
@media (max-width: 768px) {
  .content {
    justify-content: flex-start;
    padding-top: 30px;
    padding-bottom: 45px;
  }

  ul {
    flex-direction: column;
  }

  ul li a {
    padding: 14px;
  }

  .logo {
    width: 230px;
  }

  .subtitle {
    font-size: 1.05rem;
  }

  .button-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn {
    width: 90%;
    max-width: 300px;
    text-align: center;
  }
}