/*
Theme Name: Playaz
*/

body {
	margin: 0;
	padding: 0;
	background-color: #f1f1f1; /* Màu xám cho body */
	 overflow: visible;
}
h1, h2 {
    font-size: 2em;
    margin: 0.67em 0.67em;
}
h3 {
    font-size: 1em;
    
}
.content {
	width: 1450px;
	margin: 0 auto; /* Căn giữa theo chiều ngang */
	background-color: #fff; /* Màu trắng cho lớp content */
	padding: 0px; /* Padding để tạo khoảng trắng xung quanh nội dung */
	border-radius: 20px;
}
.sticky-header {
	position: sticky;
	top: 0;
	background-color: #fff;
	color: #fff;
	padding: 0px;
	z-index: 1000; /* Ensure the z-index is higher than other elements */
}

header {
	padding: 0px;
	margin-bottom: 0px;
	background-color: #fff; /* Màu xám nhạt cho header */
	overflow: hidden;
	position: fixed;
}

.top-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	/* Thiết lập kích thước và kiểu dáng cho logo */
}

.nav-buttons {
	/* Thiết lập kiểu dáng cho nút dẫn đến link */
}

.bottom-header {
	/* Thiết lập kiểu dáng cho phần dưới của header */
	height: 50px;
}

nav {
	display: flex;
	justify-content: space-around;
	background-color: #1e81b0; /* Màu đen cho menu */
	color: #fff; /* Màu trắng cho chữ trong menu */
	padding: 10px 0;
}

nav ul {
	padding: 0;
  margin: 0;
	list-style: none;
	position: relative;
	}
	
nav ul li {
	display:inline-block;
	background-color: #1e81b0;
	padding-right: 4px;
	}

nav a {
	display:block;
	padding:0 10px;	
	color:#FFF;
	font-size:20px;
	line-height: 30px;
	text-decoration:none;
}
.search {
  width: 100%;
  position: relative;
  display: flex;
}

.searchTerm {
  width: 74%;
  border: 3px solid #00B4CC;
  border-right: none;
  padding: 5px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
}

.searchTerm:focus{
  color: #00B4CC;
}

.searchButton {
  width: 40px;
  height: 40px;
  border: 1px solid #00B4CC;
  background: #00B4CC;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-content {
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	flex-wrap: wrap;
	padding-top: 0px;
	border-radius: 10px;
}

.block {
	width: 100%;
	box-sizing: border-box;
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 20px;
	background-color: #fff;
	border-radius: 10px;
}

 .block h2 {
	margin-bottom: 15px;
}

.image-container {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.image-item {
	position: relative;
	width: 150px;
	box-sizing: border-box;
}

.image-item img {
	width: 150px;
	height: 150px;
	height: auto;
	border: 0px solid #ddd; /* Viền mảnh giữa các ảnh */
	transition: filter 0.3s; /* Hiệu ứng mờ */
}
.image-item:hover img {
	filter: brightness(90%); /* Điều chỉnh độ sáng khi đưa chuột vào */
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.7); /* Nền đen trong suốt */
	color: #fff;
	padding: 5px;
	opacity: 0;
	transition: opacity 0.5s;
}
.overlay h2 {
	font-size:16px;
}
.image-item:hover .overlay {
	opacity: 1;
}
.footer-section {
    display: flex;
	justify-content: space-between;
	align-items: top;
	padding-top:20px;
}

.footer-section ul {
    margin-bottom: 0;
    padding: 0;
}

.footer-section ul li {
    display: block;
    margin-bottom: 7px;
}

.footer-section ul li a {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
}
.content .description {
	margin-left: 20px;
    margin-right: 20px;
	border-bottom: 1px solid #f1f1f1; /* Màu và độ dày của đường kẻ */
}
.border-bottom {
	border-bottom: 1px solid #f1f1f1; /* Màu và độ dày của đường kẻ */
	padding-bottom: 5px;
	margin-bottom: 0px;
}
.footer-section .title {
    color: #333;
    display: block;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.content .image-logo {
    color: #999;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 16px;
    width: 300px;
    text-decoration: none;
    float: left;
}

.image-logo span {
    display: block;
}

.image-logo a {
    display: block;
    margin-bottom: 10px;
}

.content .menu-pages,
.content .menu-category{
    margin: 0 0 0 60px;
    z-index: 1;
    float: left;
    width: 320px;
}
.content .follow-us {
	 margin: 0 0 0 60px;
    z-index: 1;
    float: left;
    width: 220px;
}
.menu-pages ul,
.menu-category ul,
.follow-us ul {
    list-style: none;
    padding: 0;
}

.follow-us img {
    margin-right: 10px;
}
.accordion {
    max-width: 910px;
    margin: 0 auto;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
#accordionFlushExample h2{
	font-size: 20px;
	margin: 0;
}
.tag-game-button:hover{
    transition-duration: 500ms;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 3px 2px 0 rgba(0,0,0,0.03);
}
.tags-content img{
    width: 36px;
    height: 28px;
}
.left-column {
  width: 225px;
  box-sizing: border-box;
  padding: 10px 10px 10px 20px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 10px;
}
.right-column {
  width: 225px;
  box-sizing: border-box;
  padding: 10px 20px 10px 10px;
  margin-left: 10px;
  background-color: #fff;
  border-radius: 10px;
}
.middle-content {
  box-sizing: border-box;
  padding: 20px;
  background-color: #fff;
  width: 960px;
}
.accordion {
    max-width: 910px; /* Thiết lập chiều rộng cố định */
    margin: 0 auto; /* Căn giữa accordion trên màn hình */
  }
.title-game {
	width: 100%;
}
.accordionFlushExample h2{
	font-size: 20px;
	margin: 0
}
.fontWeight500{
    font-weight: 500;
	margin: 0;
	padding: 0;
	text-align: center;
}
.mg5px {
    margin: 5px 5px 5px 5px;
    border-radius: 10px;
}
.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}
.tag-game-button:hover{
    transition-duration: 500ms;
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 3px 2px 0 rgba(0,0,0,0.03);
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
