
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');

    #countdown {
      font-size: 24px;
      font-weight: bold;
      color: #93b3de;
    }

body {
    background-color: #111;
    color: #93b3de;
    font-family: 'Gochi Hand', sans-serif;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    font-family: 'Gochi Hand', sans-serif;
    padding-top: 50px; /* Adjust the top padding as needed */
}

.subheader {
    text-align: center; /* Center the text */
    padding: 25px;      /* Add 25 pixels of padding */
    font-size: 1.5em;   /* Adjust font size (optional, for emphasis) */
    font-family: 'Gochi Hand', sans-serif;
    font-weight: bold;  /* Make the text bold (optional) */
}

h1 {
    font-size: 100px; /* Font size 100 */
    font-family: 'Gochi Hand', sans-serif;
}

.navbar {
    background-color: #93b3de;
    color: #111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.brand-name {
    font-size: 22px;
    letter-spacing: 1px;
    color: #111;
}

.navbar-right a {
    margin-left: 20px;
    text-decoration: none;
    color: #111;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    gap: 20px; /* keep consistent spacing between links */
}

.navbar-right a:hover {
    color: #000;
}

.brand-name {
    font-size: 24px;
    letter-spacing: 1px;
    color: #111;
    font-weight: bold;
    text-transform: uppercase;
}

.content {
  margin-left: 60px;
  margin-bottom: 10px;
  font-family: 'Gochi Hand', sans-serif;
  outline: 4px solid #93b3de;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  height: 600px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Centers content vertically */
  background-color: #93b3de;
  padding: 0 20px; /* horizontal padding only */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 35px; /* exact height set to 35px */
}

.top-left {
  display: flex;
  align-items: center; /* Vertically align logo and title */
  gap: 10px; /* Spacing between logo and title */
}

.logo {
  height: 24px; /* Adjusted logo size to fit within the 35px bar */
}

.game-title {
  font-size: 18px;
  color: #111;
}

.top-right button {
  cursor: pointer;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: 'Gochi Hand', sans-serif;
  font-size: 14px;
}

.content iframe {
  position: absolute;
  top: 35px; /* Set the iframe directly below the .top-bar */
  left: 0;
  width: 100%;
  height: calc(100% - 35px); /* Subtract the .top-bar height */
  border: none;
  display: block;
  border-radius: 0 0 15px 15px; /* Ensure the iframe's bottom corners match */
  z-index: 1;
}

.top-right {
  display: flex;
  align-items: center; /* Ensures both buttons are vertically aligned */
  gap: 10px; /* Adds space between the buttons */
}

#report-button {
  background-color: #e74c3c; /* red */
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: 'Gochi Hand', sans-serif;
  font-size: 14px;
  cursor: pointer;
}





footer {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  padding: 20px;
  padding-top: 30px; /* Adds 10px more space above the content */
  background-color: #93b3de;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  min-height: 150px; /* Ensures enough height for better centering */
}


.footer-left {
    flex: 1;
    margin-top: 10px;
    text-align: left;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

.footer-left h2 {
    margin: 0;
    font-size: 2.5rem;
}

.footer-left .footer-subtext {
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px; /* Horizontal and vertical gaps (30px horizontal, 20px vertical) */
    align-items: center; /* Align text in the middle of the grid cells */
    justify-content: center;
    text-align: center; /* Ensure text is centered */
}

.footer-right a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center; /* Align text and icon vertically */
    justify-content: flex-start; /* Align text to the left of the icon */
}

.footer-right a i {
    margin-right: 15px; /* Increase space between the icon and text */
}

.footer-right a:hover {
    text-decoration: underline;
}

#copyright {
    font-size: 0.8rem;
    margin-top: 10px;
    text-align: left;
}



.logo {
    position: absolute;
    bottom: 10px;
    width: 30px;
    height: 30px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Gochi Hand', sans-serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.image-container {
    width: 10%; /* 10 images per row */
    margin: 10px;
    text-align: center;
}

/* General link styling */
a {
    text-decoration: none; /* Removes underline */
    color: #93b3de; /* Sets text color */
}

/* Hover effect for links */
a:hover {
    text-decoration: underline; /* Optional: underline on hover */
    color: #d55454; /* Slightly darker shade for hover effect */
}


.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    cursor: pointer;
}

.image-large {
    width: 19%; /* 10 images per row */
    margin: 25px;
    text-align: center;
}

.image-large img {
    width: 110%;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    cursor: pointer;
}

.image-container img,
.image-large img {
width: 100%;
height: auto;
border-radius: 10px; /* Rounded corners */
cursor: pointer;
transition: transform 0.3s ease; /* Smooth transition */
}

.image-container:hover img,
.image-large:hover img {
transform: scale(1.1); /* Increase size by 10% */
}

.image-sep {
width: 100%;
height: 50px;
object-fit: cover; /* Optional: Maintain aspect ratio and cover the entire width */
}

.content {
    margin: 0 auto; /* Center the content */
    width: 80%; /* Set width to 80% of the viewport */
    max-width: 1000px; /* Set a max-width for larger screens */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center the iframe horizontally */
    overflow: hidden; /* Hide overflow */
    border-radius: 15px; /* Add rounded corners */
    position: relative; /* Add relative position */
}

iframe {
    border: none;
    width: 100%; /* Take up 100% of the available width */
    height: 600px; /* Set a fixed height for the iframe */
}


nav a:hover {
    transform: scale(1.1); /* Increase size on hover */
    color: #111; /* Change color on hover */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #111; /* Set logo color */
    font-family: 'Gochi Hand', sans-serif;
}

.banner {
    position: relative; /* Ensure it occupies space in the layout */
    background-color: #111; /* Same as your nav background color */
    color: #93b3de; /* Inverted color for text */
    text-align: center;
    padding: 20px 0;
    width: 100%; /* Ensure it spans the full width */
    font-family: 'Gochi Hand', sans-serif;
}

.banner a {
    color: #93b3de; /* Inverted color for link text */
    text-decoration: none;
    font-size: 20px; /* Increased font size */
}

.banner a:hover {
    text-decoration: underline; /* Underline link text on hover */
}

.banner span {
    color: #93b3de; /* Same color for "CLICK HERE" */
    text-decoration: underline;
    cursor: pointer;
    font-size: 24px;
}


.loading-container {
  text-align: center;
}

.loading-circle {
  width: 80px;
  height: 80px;
  margin: 20px auto;
  border: 8px solid #93b3de;
  border-top: 8px solid #111; /* Different color for top border */
  border-radius: 50%;
  animation: spin 1s linear infinite; /* Spinning animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 25px;
    background-color: #111;
}

/* Style for the input field */
#searchInput {
    padding: 10px;
    font-size: 16px;
    border-radius: 15px;
    border: 1px solid #93b3de;
    outline: none;
    margin-right: 10px;
    width: 200px;
}

/* Style for the search button */
#searchBtn {
    background-color: #111;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #93b3de;
    outline: none;
}

.theme-switch {
    position: absolute;  /* Absolute positioning for centering */
    top: 50%;            /* Move down 50% of the viewport height */
    left: 50%;           /* Move right 50% of the viewport width */
    transform: translate(-50%, -50%); /* Offset by 50% of the element's width/height */
}

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

.wrapper {
    min-height: 100%;         /* Ensures wrapper takes full height */
    display: flex;
    flex-direction: column;
}

.search-container {
    background-color: #111;
    font-family: 'Gochi Hand', cursive;
    padding: 10px;
    border-radius: 5px;
}

.search-container input[type="text"] {
    background-color: #93b3de;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 3px;
    font-family: 'Gochi Hand', cursive;
}

.search-container button {
    background-color: #111;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 3px;
    cursor: pointer;
}

.search-container button:hover {
    background-color: #222;
}