.text-center {
  text-align: center;
}

.text-important { 
	  text-align: center;
	  color: red;
}

body {
  background-color: #1c1c1d;
  color:#c9c9c9;
  font-family: Arial, Helvetica, sans-serif;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 30px;
  gap: 20px 20px;
}

.game-link {
  text-decoration: none;
/*   text-align: center; */
  display: block;
  color: #c9c9c9;
}

.game-tile {
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  background-color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.game-tile-popular {
/*   transition: transform 0.3s ease;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ad0000; 
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.ad-tile {
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.subway-surfers-selection {
  transition: transform 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  background-color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding-left: 20px;
  padding-right: 20px;
}

.game-tile:hover {
  transform: scale(1.1);
}

.game-tile-popular:hover {
  transform: scale(1.1);
}

.game-icon {
  border-radius: 10px;
}

.menubar {
  background-color: #333;
  overflow: hidden;
    border-radius: 10px;
}

.sortbar {
  overflow: hidden;
    border-radius: 10px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #c9c9c9;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav-right a{
  float: right;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
    border-radius: 10px;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #a83234;
  color: #c9c9c9;
    border-radius: 10px;
}

form
{
		margin-top: 50px;
		transition: all 4s ease-in-out;
		text-align: center;
}

.form-control
{
	width: 1000px;
	background: transparent;
	border: none;
	outline: none;
	border-bottom: 1px solid gray;
	color: #fff;
	font-size: 24px;
	margin-bottom: 16px;
}

input
{
		height: 45px;
}

form .submit
{
	background: #a83234;
	border-color: transparent;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	height: 50px;
	margin-top: 20px;
}

form .submit:hover
{
	background-color: #ddd;
	cursor: ponter;
	color: black;
}

div, iframe
{
	margin: 0 auto;
	display:block;
}

.box{
    margin-right:50px;
	margin-left:50px;
}

.search-box {
  border: 1px solid #b7b5b5;
  height: 30px;
  width: 10%;
  background-color: white;
  border-radius: 50px;
  padding:5px 30px;
  display: flex;
  top:18px;
  flex-direction: column;
  margin-right:50px;
  margin-left:50px;
  margin-top: 10px;
}
.search-box.active{
  border:none;
  width: 60%;
  border-bottom:1px solid #b7b5b5;
  border-radius:0px;
  /background:#a83234;/
    background-color: white;
}

hr.dashed {
  border-top: 3px dotted;
   border-bottom: none;
}

hr.double {
 border-top: 3px double;
 border-bottom: none;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
  float: right;
}

/* Dropdown button */
.dropbtn {
  background-color: #a83234;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 10px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.radio-buttons {
  padding: 10px;
  float: left;
}

/* Style radio buttons */
input[type="radio"] {
  margin: 5px;
}

/* Images */
.image {
  display: block;
  margin-bottom: 10px;
}

/* Size classes */
.small {
  width: 180px;
  height: 180px;
}

.medium {
  width: 240px;
  height: 240px;
}

.large {
  width: 360px;
  height: 360px;
}


/*  code add from here */
.last-section {
  width: 100%;
  max-width: 1140px; /* Matches Bootstrap's container max-width for large screens */
  margin-right: auto; 
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  padding: 2rem;
  
} 
/*  shadow code is start from here */
.container.last-section {
  background-color: #f2f2f21a;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.397); /* soft white shadow for dark bg */
  max-width: 1000px;
  margin: 40px auto;
  line-height: 1.7;
  font-family: Arial, sans-serif;
}
.container.last-section h2 {
  color: #e0e0e0;
}
.container.last-section a {
  color: #ff4c4c;
  text-decoration: none;
}
.container.last-section a:hover {
  text-decoration: underline;
}
/* shadow code is ended here */
.text-styling{
  width: 100%;
  max-width: 1140px; /* Matches Bootstrap's container max-width for large screens */
  margin-right: auto; 
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* navbar stikay code start from here */
.menubar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* taake dusre elements ke upar rahe */
}

.topnav {
  background-color: #333;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 10px;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  color: white;
}

.topnav-right {
  display: flex;
  align-items: center;
}

.topnav-right a {
  margin-left: 10px;
}

/* Body ka upar space dena zaroori hai taake navbar content ko cover na kare */
body {
  padding-top: 60px; /* adjust as per navbar height */
}

/* navbar stikay code is ended here */

/* unlock text code is start from here */ 
.unblocked-text {
  background-color: #f2f2f21a;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.397); /* soft white glow */
  max-width: 900px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.unblocked-text h1 {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

.text-styling a {
  color: #ff4c4c;
  text-decoration: none;
}

.text-styling a:hover {
  text-decoration: underline;
}

/* unlock code is ended here *
