
    /* Background styling: brown-ish with pin stripes and PostApoClear font */
    @font-face {
  font-family: 'PostApoBroken';
  font-style: normal;
  font-weight: 200;
  src: url(./PostApoBroken.woff2) format('woff2');
}
@font-face {
  font-family: 'PostApoClean';
  font-style: normal;
  font-weight: 200;
  src: url(./PostApoClear.woff2) format('woff2');
}

.navbar-menu .dropdown a img {
  width: 47px;
  height: 47px;
}

    
    body {
      font-family: 'PostApoClean', sans-serif;
  background-color: #2e2b2b;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 20px
  );
      margin: 0;
      padding: 0;
      font-size: 1.3em;
      font-weight: bold;
      color: white;
    }

    /* Navigation Bar Styling */
    .navbar {
      background-color: #2e2b2b; /* Matching brownish background */
      display: flex;
      align-items: center;
      padding: 10px 20px;
      border-bottom: 2px solid orange;
      font-family: 'PostApoClean', sans-serif;
    }
.navbar-logo a {
  font-size: 1.5em;  /* Updated from 28px to match nav items */
  color: orange;
  text-decoration: none;
  margin-right: 20px;
}
    .navbar-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
    }
    .navbar-menu li {
      position: relative;
    }
    .navbar-menu > li > a {
      color: orange;
      text-decoration: none;
      padding: 10px 15px;
      display: block;
      font-size: 0.8em;
    }
    .navbar-menu > li > a:hover {
      color: yellow;
    }
    /* Dropdown Menu Styling */
    .dropdown-content {
      display: none;
      position: absolute;
      left: 0; /* Align dropdown to the left of its parent */
      background-color: #2e2b2b;
      min-width: 160px;
      border: 2px solid orange;
      z-index: 1;
      font-size: 0.8em;
    }
    .dropdown-content a {
      color: orange;
      padding: 10px 15px;
      text-decoration: none;
      display: block;
    }
    .dropdown-content a:hover {
      background-color: grey;
    }
    .navbar-menu li.dropdown:hover .dropdown-content {
      display: block;
    }

/* Container for the two-column layout */
.containerMain {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  margin: auto;
  max-width: 1400px;
}

/* Left column: blog updates (smaller) */
.left-column {
  flex: 0 0 400px; /* fixed width of 800px */
  margin-right: 20px;
}

.right-column {
  flex: 1; /* fill remaining space */
}


/* Blog updates styling */
.blog-updates {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  color: white;
}

.blog-updates h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

.blog-post {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.h3 {
    font-weight: normal;
}

.blog-post h3 {
  font-size: 24px;
  margin: 0;
  color: orange;
  font-weight: normal;
}

.blog-post .date {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
}

.blog-post p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
}

/* Optional: styling for the patch note card container (adjust as needed) */
#patch-note-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  color: white;
}

    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    /* You can also add the updated navbar CSS here or in style.css */
    .navbar {
      background-color: #2e2b2b;
      display: flex;
      align-items: center;
      padding: 10px 20px;
      border-bottom: 2px solid orange;
      font-family: 'PostApoClean', sans-serif;
      position: relative;
      z-index: 10000;
    }
    .navbar-logo a {
      font-size: 1.4em;
      color: orange;
      text-decoration: none;
      margin-right: 20px;
    }
    .navbar-menu > li > a {
      color: orange;
      text-decoration: none;
      padding: 10px 15px;
      display: block;
      font-size: 1.3em;
    }
    .navbar-menu > li > a:hover {
      color: yellow;
    }
    .dropdown-content {
      list-style: none;
      margin: 0;
      padding: 0;
      display: none;
      position: absolute;
      left: 0;
      background-color: #2e2b2b;
      width: 150px;
      border: 2px solid orange;
      z-index: 9999;
    }
    .dropdown-content a {
      color: orange;
      padding: 10px 15px;
      text-decoration: none;
      display: block;
    }
    .dropdown-content a:hover {
      background-color: #3e3e3e;
      color: yellow;
    }
    .navbar-menu li.dropdown:hover .dropdown-content {
      display: block;
    }
    .navbar-icons {
      display: flex;
      gap: 10px;
    }
    .navbar-icon {
      width: 50px;
      height: 50px;
      cursor: pointer;
    }

    .preorder-container {
      position: relative;
      display: inline-block;
    }
    .preorder-overlay {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 22px;
      font-weight: bold;
      pointer-events: none;
    }
    
    
    .navbar-icon {
  width: 50px; 
  height: 50px;
  cursor: pointer;
}


.navbar-icon2 {
  width: 220px;  
  height: 50px;
  cursor: pointer;
  margin-left: 200px;
}


.preorder-overlay {
  position: absolute;
  top: 40%;
  left: 72%;
  transform: translate(-50%, -50%);
  color: white; 
  font-size: 20px; 
  font-weight: bold;
  pointer-events: none;
}
