html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0f0f0f;
  background-image: url('bgplus.jpg');
  background-size: cover;
  background-position: center;
  font-family: 'Orbitron', sans-serif;
  color: #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}
.video-container {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.video-container iframe {
  width: 100%;
  max-width: 560px; /* adjust as needed */
  aspect-ratio: 16 / 9;
  border: none;
}
.title img.title-image {
  height: 40px; /* Adjust as needed */
  vertical-align: middle;
}
.inner-footer {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: rgba(204, 204, 204, 0.31);
  background-color: rgba(0, 0, 0, 0); 
  margin-top: auto;
}


.corner-link {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
}

.corner-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}





.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.window {
  margin-top: -1rem; /* -----------------------------------------------------------------HEIGHT WINDOW */
  position: relative;
  z-index: 1;
  width: 80vw;
  max-width: 1200px;
  height: 80vh;
    background: linear-gradient(
    to bottom,
    rgb(47, 58, 67),
    rgba(77, 123, 172, 0.7)
  );
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


.title-bar {
  background-color: #333;
  color: #eee;
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
}

.title {
  font-weight: bold;
}

.window-controls {
  display: flex;
}

.control-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-left: 5px;
  cursor: pointer;
}

.minimize { background-color: #07dfff; }
.maximize { background-color: #2874a7; }
.close { background-color: #3546dc; }

.content {
  padding: 1rem;
  flex-grow: 1;
  overflow-y: auto;
}

nav {
  margin-bottom: 3rem;
    display: flex;
  justify-content: center; /* Centers the links horizontally */
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  gap: 0.5rem; /* Adds spacing between links */
}

nav a {
  color: #bbb;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

.page-content {
  text-align: center;
}

.social-sidebar {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: rgba(15, 15, 15, 0.8);
  padding: 0.5rem;
  border: 1px solid #444;
  border-radius: 5px;
}

.social-sidebar a {
  margin: 0.5rem;
}

.social-sidebar img {
  width: 32px;
  height: 32px;
}

footer {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 1em 0;
  margin-top: auto;
}

@media (max-width: 768px) {
  .window {
    width: 95vw;
    height: 90vh;
  }

  nav a {
    display: block;
    margin: 0.5rem 0;
  }

  .social-sidebar {
    flex-direction: row;
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
    background: rgba(15, 15, 15, 0.8);
    padding: 0.5rem 0;
  }
}
.button-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0; /* adds spacing between the two sections */
}

.small-image {
  width: 200px;
  height: auto;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #add8e6;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.buy-button:hover {
  background-color: #87ceeb;
}
.merch-image {
  margin-left: 85px; /* adjust this value as needed */
}
/* Override on mobile */
@media (max-width: 768px) {
  .merch-image {
    margin-left: 0;
  }

  .button-image-wrapper {
    flex-direction: column;  /* stack image and button vertically */
    text-align: center;
  }

  .small-image {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .social-sidebar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw;
    z-index: 5;

    display: flex;
    flex-direction: row;
    justify-content: center;
    background: rgba(15, 15, 15, 0.95);
    padding: 0.5rem 0;
    pointer-events: auto;
  }
}


footer {
  position: relative;
  z-index: 1;
}

