/* Coming Soon Large Page Styling */
.coming-soon-large {
  background: #111;
  padding: 40px 0 30px 0;
  margin-bottom: 40px;
  box-shadow: 0 0 8px gold;
}
.coming-soon-large-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
}
.coming-soon-large-card {
  background: #222;
  border: 2px solid gold;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  width: 340px;
  padding: 32px 16px;
  text-align: center;
  color: white;
}
.coming-soon-large-card img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #222;
}
.coming-soon-large-card h2 {
  color: gold;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.coming-soon-large-card p {
  color: white;
  font-size: 1.1rem;
}
@media (max-width: 900px) {
  .coming-soon-large-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .coming-soon-large-card {
    width: 90vw;
    max-width: 340px;
  }
}
/* About Us Page Styling */
.about-header {
  text-align: center;
  margin-top: 40px;
}
.about-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}
.about-title {
  color: gold;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.about-content {
  background: #111;
  margin: 40px auto 0 auto;
  padding: 40px 24px;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 0 10px gold;
}
.about-welcome {
  color: gold;
  font-size: 2rem;
  margin-bottom: 18px;
}
.about-description {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.about-highlights {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 20px;
}
.highlight-card {
  background: #222;
  border: 2px solid gold;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  width: 220px;
  padding: 24px 16px;
  text-align: center;
  color: white;
}
.highlight-card h3 {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.highlight-card p {
  color: white;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .about-highlights {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .highlight-card {
    width: 90vw;
    max-width: 320px;
  }
}
/* Shop Products Grid for shop.html */
.shop-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px auto;
  max-width: 1400px;
}
.shop-products-grid .product-card {
  background: #222;
  border: 2px solid gold;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  width: 260px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s;
  color: white;
}
.shop-products-grid .product-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 4px 20px gold;
}
.shop-products-grid .product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 0 8px gold;
}
.shop-products-grid .product-card h3 {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.shop-products-grid .product-price {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.shop-products-grid .buy-btn {
  background: gold;
  color: black;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.shop-products-grid .buy-btn:hover {
  background: white;
  color: gold;
}
@media (max-width: 900px) {
  .shop-products-grid {
    flex-direction: column;
    align-items: center;
  }
  .shop-products-grid .product-card {
    width: 90vw;
    max-width: 320px;
  }
}
/* Coming Soon Section */
.coming-soon {
  background: #111;
  padding: 40px 0 30px 0;
  margin-bottom: 40px;
  box-shadow: 0 0 8px gold;
}
.coming-soon h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 18px;
}
.coming-soon-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 20px;
}
.coming-soon-slot img {
  display: block;
  background: #222;
  border: 2px solid gold;
  border-radius: 10px;
  width: 160px;
  height: 160px;
}
@media (max-width: 700px) {
  .coming-soon-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
/* Product Grid for Shop */
.featured-products {
  background: #111;
  padding: 40px 0 20px 0;
  box-shadow: 0 0 10px gold;
  margin-bottom: 40px;
}
/* Removed invalid ...existing code... lines */
/* Already defined media queries above; removed duplicate and misplaced media query */
/* Restore original shop table styling for Shop.html */
table {
  width: 90%;
  margin: 30px auto;
  border-collapse: collapse;
  border: 1px solid gold;
  background-color: #111;
  color: white;
  box-shadow: 0 0 10px gold;
}
th, td {
  border: 1px solid #555;
  padding: 12px;
  vertical-align: middle;
}
th {
  background-color: gold;
  color: black;
  font-weight: bold;
  font-size: 1rem;
}
tr:hover {
  background-color: #222;
  transition: background-color 0.2s ease-in-out;
}
td img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  box-shadow: 0 0 5px gold;
}
/* Center the footer sign up form */
.footer-signup-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-signup-form input[type="email"],
.footer-signup-form button {
  width: 300px;
  max-width: 90vw;
  margin: 10px 0;
}
li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change the link color to #111 (black) on hover */
  li a:hover {
    background-color: #111;
  }
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }


  * {box-sizing: border-box}
/* Full-width input fields */
  input[type=text], input[type=password] {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: none;
  background: #f1f1f1;
}

/* Add a background color when the inputs get focus */
input[type=text]:focus, input[type=password]:focus {
  background-color: gold;
  outline: none;
}

/* Set a style for all buttons */
button {
  background-color:black;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border:gold;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}

/* Extra styles for the cancel button */
.cancelbtn {
  padding: 14px 20px;
  background-color:white;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
  float: left;
  width: 50%;
}

/* Add padding to container elements */
.container {
  padding: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: gold;
  padding-top: 50px;
}

/* Modal Content/Box */
.modal-content {
  background-color: gold;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
hr {
  border: 1px solid black;
  margin-bottom: 25px;
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

.close:hover,
.close:focus {
  color: white;
  cursor: pointer;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .signupbtn {
    width: 100%;
  }
}

/* Lightbox (global) */
.lightbox-overlay{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.85);z-index:9999;padding:20px}
.lightbox-overlay img{max-width:95%;max-height:95%;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,0.6);transition:transform .24s ease}
.lightbox-overlay .caption{color:#fff;margin-top:12px;text-align:center;font-size:0.95rem}
.zoomable{cursor:zoom-in}
.lightbox-overlay.zoomed img{cursor:zoom-out}

/* Bordered form */
form {
  border: 3px solid gold;
}

/* Full-width inputs */
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid gold;
  box-sizing: border-box;
}

/* Set a style for all buttons */
button {
  background-color:black;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

/* Add a hover effect for buttons */
button:hover {
  opacity: 0.8;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color:black;
}

/* Center the avatar image inside this container */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

/* Avatar image */
img.avatar {
  width: 40%;
  border-radius: 50%;
}

/* Add padding to containers */
.container {
  padding: 16px;
}

/* The "Forgot password" text */
span.psw {
  float: right;
  padding-top: 16px;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
    display: block;
    float: none;
  }
  .cancelbtn {
    width: 100%;
  }
}
table, th, td {
  border: 5px solid gold;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  align-self: left;
  border-color: gold;
  border-radius: 5px;
  border: 1px solid gold;
}

.title {
  color: white;
  font-size: 18px;
}

a {
  text-decoration: none;
  font-size: 22px;
  color: gold;
}
/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000; /* black */
  font-family: 'Montserrat', sans-serif;
  color: white;
  text-align: center;
  padding-top: 100px;
}

/* Navigation Bar */
nav {
  background-color: #111;
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav ul {
  list-style-type: none;
  overflow: hidden;
}

nav ul li {
  display: inline;
  padding: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: gold;
  font-size: 18px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: white;
  border-bottom: 2px solid gold;
}

/* Logo */
img {
  margin-top: 20px;
  transition: transform 0.3s ease;
}
img:hover {
  transform: scale(1.05);
}

/* Main Heading */
h1 {
  font-size: 3rem;
  margin: 20px 0;
  color: gold;
}

/* Links to Login/Sign Up */
a.active {
  display: inline-block;
  margin: 15px;
  padding: 10px 30px;
  border: 2px solid gold;
  border-radius: 30px;
  color: gold;
  font-size: 1.5rem;
  transition: 0.3s ease;
  text-decoration: none;
}

a.active:hover {
  background-color: gold;
  color: black;
}

/* Footer */
footer {
  margin-top: 100px;
  padding: 30px 20px;
  background-color: #111;
  color: gold;
}

footer input[type="email"] {
  padding: 10px;
  border: 1px solid gold;
  border-radius: 4px;
  width: 300px;
  margin-top: 10px;
}

footer button {
  background-color: gold;
  color: black;
  padding: 10px 20px;
  border: none;
  margin-left: 10px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

footer button:hover {
  background-color: white;
  color: black;
}
/* Body and general text */
body {
  background-color: black;
  font-family: 'Montserrat', sans-serif;
  color: white;
  text-align: center;
  padding-top: 120px;
}

/* Navigation Bar */
nav {
  background-color: #111;
  padding: 12px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav ul li {
  display: inline;
  padding: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: gold;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: white;
  border-bottom: 2px solid gold;
}

/* Logo */
img {
  margin: 20px 10px;
}

/* Headings */
h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: gold;
}

h2, h3 {
  color: white;
  margin-bottom: 10px;
}

/* Product Grid for Shop */
.featured-products {
  background: #111;
  padding: 40px 0 20px 0;
  box-shadow: 0 0 10px gold;
  margin-bottom: 40px;
}
.featured-products h2 {
  color: gold;
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.product-card {
  background: #222;
  border: 2px solid gold;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  width: 220px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 4px 20px gold;
}
.product-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 0 8px gold;
}
.product-card h3 {
  color: gold;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.product-price {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.buy-btn {
  background: gold;
  color: black;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
}
.buy-btn:hover {
  background: white;
  color: gold;
}
.view-all-link {
  display: block;
  margin: 30px auto 0 auto;
  color: gold;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: underline;
  transition: color 0.2s;
}
.view-all-link:hover {
  color: white;
}

/* About Shop Section */
.about-shop {
  background: #222;
  padding: 40px 0 30px 0;
  margin-bottom: 40px;
  box-shadow: 0 0 8px gold;
}
.about-shop h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 18px;
}
.shop-features {
  list-style: none;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-left: 0;
}
.shop-features li {
  margin-bottom: 8px;
  padding-left: 0;
}
.discord-link {
  color: gold;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: underline;
  margin-top: 10px;
  display: inline-block;
}
.discord-link:hover {
  color: white;
}

/* Shop Header */
.shop-header {
  background: #111;
  padding: 40px 0 20px 0;
  box-shadow: 0 0 10px gold;
}
.shop-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}
.shop-header h1 {
  color: gold;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.shop-tagline {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Shop Footer */
.shop-footer {
  background: #111;
  padding: 40px 20px;
  color: gold;
  margin-top: 60px;
  box-shadow: 0 0 8px gold;
}
.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.footer-socials {
  margin-top: 18px;
  font-size: 1.1rem;
}
.footer-socials a {
  color: gold;
  margin: 0 8px;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-socials a:hover {
  color: white;
}

@media (max-width: 900px) {
  .products-grid {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 90vw;
    max-width: 320px;
  }
}

/* ---------- Unified Site Footer (applies to all pages) ---------- */
/* A modern, compact, professional footer that matches site branding */
footer, footer.site-footer {
  background: linear-gradient(180deg, #070707 0%, #0e0e0e 100%);
  color: #dcdcdc;
  border-top: 1px solid rgba(245,196,0,0.06);
  padding: 36px 18px;
  margin-top: 48px;
  font-size: 0.95rem;
}
.footer-inner{ max-width:1100px; margin:0 auto; display:flex; gap:18px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.footer-inner p{ color:#bfbfbf; margin:6px 0; }
.footer-left{ display:flex; gap:18px; align-items:center; }
.footer-left img{ width:88px; height:auto; display:block }
.footer-links{ display:flex; gap:12px; align-items:center; flex-wrap:wrap }
.footer-links a{ color:#dcdcdc; text-decoration:none; padding:8px 10px; border-radius:8px; transition:background .18s, color .18s; }
.footer-links a:hover{ background:rgba(245,196,0,0.06); color:#fff }

/* Signup form */
.footer-signup-form{ display:flex; gap:10px; align-items:center; justify-content:flex-end; }
.footer-signup-form label{ color:#f5c400; font-weight:700; margin-right:6px }
.footer-signup-form input[type="email"]{ padding:10px 12px; border-radius:8px; border:1px solid #222; background:#080808; color:#fff; min-width:220px }
.footer-signup-form button{ background:#f5c400; color:#000; border:none; padding:10px 14px; border-radius:8px; cursor:pointer; font-weight:800 }

@media (max-width:900px){
  .footer-inner{ flex-direction:column; align-items:center; gap:12px }
  .footer-signup-form{ justify-content:center }
}

/* Backwards compatibility: make older generic footer rules match new look */
footer input[type="email"], footer button{ box-sizing:border-box }