/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f4f4f4; 

    background-image: url('/img/bg/bg-jpg.jpg');
                     
    background-repeat: repeat;
    background-size: 500px 300px; /* Each SVG will take 20% of the container (1/5th) */
                        
}

/*@media screen and (max-width: 1200px) {*/
.game-container {
display: flex;
justify-content: space-between;
width: 80%;
max-width: 1200px;
gap: 20px; /* space between items */
}

.game-paragraph {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 400px;
    flex: 0;
}
.game-fact {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
flex: 1;
}

.number {
font-size: 2rem; /* large number size */
font-weight: bold;
margin-bottom: 10px;
}

.caption {
font-size: 1rem; /* smaller caption size */
color: #555;
}

/*}*/
.game-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 20px; /* space between items */
    }
@media screen and (max-width: 1200px) {
  

}
/* Overall container for tiles */
.tile-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

/* Individual tile styling */
.tile {
    display: flex;
    align-items: center;
    width: 18%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: box-shadow 0.3s;
}

.tile:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Date styling */
.tile-date {
    background-color: #4a90e2;
    color: white;
    padding: 10px;
    text-align: center;
    margin-right: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tile-date .day {
    font-size: 24px;
    font-weight: bold;
}

.tile-date .month {
    font-size: 16px;
    text-transform: uppercase;
}

/* Content area styling */
.tile-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tile-content .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.tile-content .description {
    font-size: 14px;
    color: #555;
}

/* Make the tiles responsive */
@media screen and (max-width: 1200px) {
    .tile {
        width: 30%; /* Adjust for smaller screens */
    }
}

@media screen and (max-width: 768px) {
    .tile {
        width: 48%; /* 2 tiles per row on tablet size */
    }
}

@media screen and (max-width: 480px) {
    .tile {
        width: 100%; /* Single tile on small mobile devices */
    }
}
.menu {
    display: flex;
    align-items: center;
  }
  
  /* Common Button Styles */
  .menu-btn {
    color: white;
    background-color: #007bff;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    transition: background-color 0.3s;
  }
  
  .menu-btn:hover {
    background-color: #0056b3;
  }
  
  /* First Button (Square Left, Chevron Right) */
  .first-btn {
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%, 0% 50%);
    border-radius: 5px 0 0 5px; /* Square left */
  }
  
  .first-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 100%;
    background-color: #007bff;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  }
  
  /* Middle Chevron Buttons */
  .chevron-btn {
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  }
  
  .chevron-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 100%;
    background-color: #007bff;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  }
  
  /* Last Button (Chevron Left, Square Right) */
  .last-btn {
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
    border-radius: 0 5px 5px 0; /* Square right */
  }
  
  .last-btn::after {
    display: none; /* No extra arrow on the last button */
  }

  