body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://cdn.glitch.global/8ccf4cfa-741f-4630-8f29-733b36d972e6/f97cae64-03b4-4b89-94ec-0dacf077ea89.image.png?v=1705798388344') center/cover no-repeat; /* Add your background image */
    color: White;
}

header {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav a {
    text-decoration: none;
    color: 
    margin: 0 15px;
}

nav a i {
    margin-right: 5px;
}

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

.search-bar button {
    background-color: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
}

main {
    padding: 50px;
    text-align: center;
  
}

.hero {
    background: #12161D;
    padding: 20px;
    border-radius: 10px;
}

.hero1 {
    background: #12161D;
    padding: 10px;
    border-radius: 10px;
}

.hero2 {
    background: #12161D;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
}


.hero3 {
    background: #12161D;
    padding: 60px;
    border-radius: 10px;
    width: 32%;
    margin-right: 852px; 
    margin-top: -70px;
  
}
  
  .hero4 {
    background: #12161D;
    padding: 62px;
    border-radius: 10px;
    width: 35%;
    margin-right: 0px; 
    margin-top: -313px;

   
}

.hero5 {
    background: #12161D;
    padding: 66px;
    border-radius: 10px;
    width: 38%;
    margin-left: 855px; 
    margin-top: -414px;
  
}

.cta-button {
    background-color: #b03232;
    color: #fff;
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.cta-button:hover {
    transform: scale(1.1);
}

.recommendations-title {
    color: #ffcc00;
}

.recommended-games {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

.game-box {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.game-box:hover {
    background-color: #ffcc00; /* Yellow color */
    transform: scale(1.05);
}

.game-box img {
    width: 100%;
    height: auto;
    max-height: 150px; /* Adjust the max height as needed */
    border-radius: 5px;
    margin-bottom: 10px;
}

footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    text-decoration: none;
    margin: 0 15px;
}

.social-icons i {
    font-size: 24px;
    margin: 0 10px;
}

body {
            font-family: Arial, sans-serif;
            width: 100%;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
        }

        .box-container {
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 20px auto;
            flex-wrap: wrap;
        }

        .box {
            width: calc(14.2857% - 20px); /* Adjusted width for 7 boxes in a row with margin */
            height: 150px;
            margin: 10px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s, border-radius 0.3s;
            border-radius: 15px;
            background-color: #clear; /* Added background color for better visibility */
        }

        .box:hover {
            transform: scale(1.1);
            border-radius: 0;
        }

        .box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .box .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 15px;
        }

        .box:hover .overlay {
            opacity: 1;
        }



.mini-box {
  width: 45px;
  height: 45px;
  background-color: #27292E;
  border: 2px solid #b03232;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 120px;
  margin-top: 20px;
}

.box-text {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}


.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-top: 15px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #363940;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #b03232;
}

input:focus + .slider {
  box-shadow: 0 0 1px #b03232;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

