
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
}

.fullscreen-prompt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: url("purples.png");
  color: white;
  z-index: 9999;
}

.fullscreen-prompt .upper-content {
  padding-top: 2.5rem;
}

.fullscreen-prompt .upper-content .instruction {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
  width: 40vw;
  font-family: "Montserrat";
  margin-bottom: 1.5rem;
}

.fullscreen-prompt .buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.fullscreen-prompt .buttons .key-wrapper {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(
    to top,
    #a3a3a3 0%,
    #ffffff 50%,
    #e8e8e8 100%
  );
  border-radius: 20%;
  padding: 0.25rem;
  display: flex;
  height: 45px;
  width: 45px;
}

.fullscreen-prompt .buttons .key-wrapper .key {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: black;
  border-radius: 20%;
  font-size: 1rem;
  font-weight: bold;
  flex-grow: 1;
  flex-direction: column;
  height: calc(45px - 0.5rem);
  width: 100%;
}

.fullscreen-prompt .buttons .key-wrapper .key.fn-key {
  font-family: "Montserrat";
  color: #f46b6c;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.25rem;
}

.fullscreen-prompt .buttons .key-wrapper .key.f11-key {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.25rem;
  cursor: pointer;
}

.plus-symbol {
  font-family: "Montserrat";
  font-weight: 400;
  color: #ffffff;
  font-size: 2rem;
  padding: 0.5rem;
}

.fullscreen-prompt .buttons .key2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: white;
  margin: 0 10px;
  width: 24px;
  height: 55px;
  font-family: "Montserrat";
  font-size: 40px;
  font-weight: 400;
  line-height: 55px;
  text-align: center;
}

.fullscreen-prompt .lower-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.fullscreen-prompt .lower-content .skip-button {
  padding: 0.5rem 1.5rem;
  border: 1px solid white;
  border-radius: 2rem;
  background-color: transparent;
  color: white;
  cursor: pointer;
  width: 10rem;
  height: 2.75rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}

.fullscreen-prompt .lower-content .skip-button:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
  font-weight: bold;
}

.fullscreen-prompt.hidden {
  display: none;
}

.swiper-container {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  background-color: black;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Adjustments for the 11th slide */
.swiper-slide:last-child video {
  width: 100%;
  height: auto;
  object-fit: contain;
  box-sizing: border-box;
}

.swiper-scrollbar {
  width: 8px;
  background: rgba(255, 255, 255, 0);
  border-radius: 4px;
}

.swiper-scrollbar-drag {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* Icon to jump to the first video */
.go-to-first {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: transparent black;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
  opacity: 20%;
  display: none; /* Initially hidden */
  width: 40px; /* Set width to 20px */
  height: 55px; /* Set height to 20px */
}

/* Icon hover effect */
.go-to-first:hover {
  opacity: 0.5;
}

.go-to-first img {
  height: 12px;
  width: 12px;
}

.rotate-message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(20, 6, 41, 1) 0%,
    rgba(50, 13, 70, 1) 50%,
    rgba(14, 3, 32, 1) 100%
  );
  z-index: 9999;
  font-family: "Montserrat";
  font-size: 2rem;
  text-align: center;
  flex-direction: column; /* Keeps the text and image in a column layout */
}

.rotate-message p {
  color: white;
  width: auto;
  font-size: 1rem;
  line-height: 28px;
  margin: 0;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.gfi {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.gfi img {
  height: 105px;
  width: 105px;
}

@media (max-width: 1024px) {
  .fullscreen-prompt {
    display: none;
  }
}

@media (max-width: 900px) {
  .swiper-slide video {
    display: flex;
    width: 100%;
    height: auto;
  }
}