    * {
      box-sizing: border-box;
    }

    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background: url('background\ picture/background picture1.jpg') no-repeat center center fixed;
        background-size: cover;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    header, footer {
        background-color: transparent;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
    }

    .logo {
        padding: 10px; /* optional spacing around the logo */
      }
      
      .logo img {
        width: 200px;  /* adjust this value to make it bigger */
        height: auto;  /* keeps aspect ratio intact */
        display: block;
      }
    nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* Navigation Links Animation */
    nav a {
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-size: 16px;
        position: relative;
        transition: color 0.4s ease;
    }

    nav a::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #4946f1;
        transition: width 0.4s ease;
    }

    nav a:hover, nav a:focus {
        color: #4946f1;
    }

    nav a:hover::after, nav a:focus::after {
        width: 100%;
    }

    /* Search Bar */
    .search-bar {
        display: flex;
        align-items: center;
        background-color: #85b9E9;
        border-radius: 20px;
        padding: 5px 10px;
        transition: box-shadow 0.4s ease;
    }

    .search-bar:hover, .search-bar:focus-within {
        box-shadow: 0 0 8px 2px #4946f1;
    }

    .search-bar input {
        border: none;
        background: none;
        outline: none;
        padding: 5px;
        width: 150px;
        font-size: 16px;
        color: #000;
    }

    .search-bar button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        color: #000;
        transition: color 0.3s ease;
    }

    .search-bar button:hover, .search-bar button:focus {
        color: #4946f1;
    }



    main {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;    
        padding: 50px 20px;
        background-color: transparent;
    }

.shop-message {
    text-align: center;
    max-width: 600px;
    margin-bottom: 30px;
}

.shop-message h2 {
    font-size: 28px;
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
}

.shop-message p {
    font-size: 18px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}

/* Existing styles unchanged above... */

.shop-button {
    background-color: #1a1f71;
    color: rgb(255, 255, 255);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

.shop-button:hover, .shop-button:focus {
    background-color: #3833b4; /* Lighter shade for hover */
    transform: scale(1.05);
}
.shop-button {
    display: inline-block;
    background-color: #1a1f71;
    color: rgb(255, 255, 255);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none; /* This removes the underline */
    transition: background-color 0.4s ease, transform 0.3s ease;
}

.shop-button:hover, .shop-button:focus {
    background-color: #3833b4;
    transform: scale(1.05);
}

/* See More Button */
.see-more {
    background-color: #4946f1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

.see-more:hover, .see-more:focus {
    background-color: #3833b4; /* Darker shade on hover */
    transform: scale(1.05);
}

.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* bigger min width */
    gap: 15px;
    width: 100%;
    max-width: 1000px;
    margin: 30px 0;
}

.game-card {
    background-color: transparent;
    width: 100%;
    padding-top: 80%; /* adjust if you want different aspect ratio */
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.game-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card:hover img {
    transform: scale(1.1);
}
.see-more {
    background-color: #4946f1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.4s ease;
}

.see-more:hover, .see-more:focus {
    background-color: #3833b4;
}

footer {
    text-align: center;
    color: white;
    padding: 20px;
    font-weight: bold;
}
   .footer {
  background-color: #4253f021;
  color: #f1f1f1;
  padding: 40px 20px 10px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  color: #00d084;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #888;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background-color: #22222200;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  flex-wrap: wrap;
  position: relative;
}

.logo img {
  height: 50px;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}
/* Navigation */
.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  transition: background 0.3s;
}

.navbar a:hover {
  background-color: #44444400;
  border-radius: 5px;
}

.login-button {
  background-color: #f39d1200;
  border-radius: 5px;
  padding: 8px 12px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-bar input {
  padding: 6px;
  border: none;
  border-radius: 5px;
  width: 150px;
}

.search-bar button {
  padding: 6px 10px;
  background-color: #f39d1200;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
    background-color: #222;
    padding: 10px 0;
  }

  .navbar.active {
    display: flex;
  }

  .search-bar {
    width: 100%;
    padding: 10px 0;
  }

  .search-bar input {
    width: 100%;
  }
}

.center-container,
.center-containers {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  width: 100%;
}

/* Individual heights */
.center-container {
  height: auto;
  margin-top: 40px;
}

.center-containers {
  height: auto;
  padding: 30px 15px;
}

/* Responsive Text Styling */
h1 {
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 4rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}

h4 {
  font-family: 'Roboto', sans-serif;
  color: #cbd6f7;
  font-weight: 400;
  font-size: 1.5rem;
  max-width: 900px;
  line-height: 1.6;
}

/* ✅ Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h4 {
    font-size: 1rem;
    padding: 0 10px;
    line-height: 1.5;
  }
}

  
  .see-more {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: 3833b4;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.see-more:hover {
  background-color: 3833b4;
  box-shadow: 0 6px 12px rgba(0, 86, 179, 0.4);
  transform: translateY(-2px);
}
