
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}
.hero {
  background: url('images/banner.png') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px 20px;
}
.hero h1 {
  font-size: 3.5em;
  margin: 0;
  color: #ff3c38;
  text-shadow: 2px 2px #000;
}
.hero p {
  font-size: 1.2em;
  color: #61dafb;
  margin-top: 10px;
}
.cta {
  display: inline-block;
  margin-top: 20px;
  background-color: #ff3c38;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff3c38;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.cta:hover {
  background-color: #e22a26;
  box-shadow: 0 0 20px #ff3c38;
}
nav {
  background-color: #1e1e1e;
  padding: 12px;
  text-align: center;
}
nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
}
nav a:hover {
  color: #ff3c38;
}
main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
section {
  margin-bottom: 60px;
}
section h2 {
  color: #61dafb;
  border-bottom: 2px solid #ff3c38;
  padding-bottom: 5px;
  font-size: 2em;
}
footer {
  background-color: #1e1e1e;
  color: #888;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-top: 1px solid #333;
}
a {
  color: #61dafb;
}
a:hover {
  color: #ff3c38;
}


/* Ensure banner displays correctly on all screen sizes */
.banner {
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

@media screen and (max-width: 768px) {
    .banner {
        aspect-ratio: auto;
        height: auto;
    }
}














.shop-buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
    padding: 20px;
}

.shop-buttons-grid button {
    background-color: black;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border: 2px solid red;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px red;
}

.shop-buttons-grid button:hover {
    background-color: #333;
    box-shadow: 0 0 20px red;
    border-color: #ff4d4d;
}


/* Enhanced tab styles */
nav a {
    padding: 12px 24px;
    margin: 0 10px;
    font-weight: bold;
    color: #fff;
    background-color: #8B0000;
    border: 2px solid #FF0000;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
    transition: all 0.3s ease-in-out;
}

nav a:hover {
    background-color: #FF0000;
    color: black;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

nav a.active {
    background-color: #FF4500;
    color: black;
    box-shadow: 0 0 25px rgba(255, 0, 0, 1);
}

body {
    background-image: url('images/galaxy_background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
}


.content, .main-content, .container, .text, p, li {
    font-size: 18px;
    font-weight: bold;
}
