/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  cursor: url('Red\ and\ black\ arrow\ Voo.cur'), auto !important;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: 'UnifrakturCook', cursive, sans-serif;
  background: black;
  color: white;
}

/* VIDEO BACKGROUND */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  filter: brightness(1); /* Increased brightness */
  pointer-events: none;
}

/* RED OVERLAY */
.red-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 0, 0, 0.06);
  pointer-events: none;
  z-index: 1;
}

/* BLOOD OVERLAY (OPTIONAL) */
.blood-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('blood-drip.png') no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

/* MAIN CONTENT */
.content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

/* SOCIAL BUTTONS */
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.socials a {
  background-color: rgba(0, 0, 0, 0.7);
  color: #7d7d7d;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
  box-shadow:
    0 0 4px rgba(255, 0, 0, 0.3),
    0 0 10px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.socials a:hover,
.socials a:focus {
  background-color: #330000;
  box-shadow:
    0 0 8px #737373,
    0 0 16px #b9b9b9;
  color: rgb(137, 137, 137);
  outline: none;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
  z-index: 10;
}

.socials a {
  display: inline-block;
  width: 80px;    /* bigger width */
  height: 80px;   /* bigger height */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.7) contrast(1);
  transition: filter 0.3s ease;
}

.socials a:hover {
  transform: scale(1.1);
}

.socials a:hover img {
  filter: brightness(1) contrast(1.2);
}


/* AIRBIT EMBED */
.airbit-embed iframe {
  border: none;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  box-shadow:
    0 0 4px rgba(255, 0, 0, 0.3),
    0 0 10px rgba(255, 0, 0, 0.3);
  filter: brightness(.8); /* Dimmed */
  margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .socials {
    flex-direction: column;
    gap: 1rem;
  }

  .socials a {
    font-size: 1.1rem;
    padding: 10px 18px;
  }

  .airbit-embed iframe {
    height: 400px;
  }
}
