html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #1f1f1f;
  color: white;
}

header {
  background-color: #1e1e1e;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  
}
.footer-container {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  min-height: 1vh;    
    display: flex;
    flex-direction: column;
}
footer {
  background-color: #181818;
  height: 200px;
  margin-top: auto;
}
.footer-content{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10%;
}
.social-media p{
  font-size: 20px;
  color: white;
}
.social-media a{
  text-align: center;
  color: white;
  text-decoration: none;
  margin: 0px; 
  display: block; 
}

.pages{
  font-size: 20px;
}
.pages nav {
  margin-left: -70px;
}
.logo-image {
  width: 5%;
  height: 5%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

nav li {
  position: relative;
}

nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #888;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 0 10px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #9c27b0;
}

.TopTitleContainer{
    text-align: center;
}

.TopTitle{
    margin-top: 1%;
    background: linear-gradient(to right, #A855F7, #EC4899);
      -webkit-background-clip: text;
      -moz-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
      font-size: 60px;
      font-weight: 800;
      
    
}
.image-container {
    
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.image {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.builds-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  margin-top: 20px;
}

.build-card {
  background-color: #2c2c2c;
  border-radius: 10px;
  padding: 20px;
  color: white;
  width: 330px;
  text-align: right;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.build-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.buy-button {
  display: inline-block;
  padding: 10px 5px;
  background: linear-gradient(to right, #A855F7, #EC4899);
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 20px;
}

.buy-button:hover {
  background: linear-gradient(to right, #7c3aed, #db2777);
}

.beanchmarkLink {
  display: inline-block;
  padding: 10px 6px;
  background: #333;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 20px;
  margin-right: 110px;
}

.beanchmarkLink:hover {
  background: #1e1e1e;
}
@media (max-width: 768px) {
  .logo-image {
    width: 20%;
  }


  .footer-content {
    margin-left: 10%;
  }

}