/*!
Theme Name: Fire Free Play
*/
@import url('https://fonts.googleapis.com/css2?family=Reem+Kufi:wght@400..700&family=Tilt+Warp&display=swap');
:root {
	--font-family: "Tilt Warp", sans-serif;
	--second-family: "Reem Kufi", sans-serif;
	--cc-white: #fff;
	--cc-black: #000;
	--cc-red:#6E0F10;
	--s-bg:#161616;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: #050505;
	color: #fff;
	font-family: var(--font-family);
	font-weight: 400;
}

img {
	max-width: 100%;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {font-family: var(--font-family);}

p{ font-family: var(--second-family) !important; color: #c9c9c9;}

.container {
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

header {
	width: 100%;
	position: relative;
	z-index: 999;
}

.header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: bold;
	font-size: 1.2rem;
}

nav ul {
	display: flex;
	align-items: center;
	gap: 40px;
}

nav ul li a {
	font-size: 15px;
	transition: color 0.3s;
}

nav ul li a:hover {
	color: var(--cc-red);
}

.contact-btn {
	padding: 8px 20px;
	border: 1px solid #fff;
	border-radius: 15px;
	font-size: 18px;
	background: transparent;
	transition: all 0.3s;
}

.contact-btn:hover {
	background: #fff;
	color: #000;
}

.menu-toggle {
	display: none;
	font-size: 26px;
	cursor: pointer;
}

.w3-sidebar {
	width: 220px;
	background: #111;
	display: none;
	z-index: 9999;
	padding-top: 40px;
}

.w3-sidebar a {
	display: block;
	padding: 12px 16px;
	border-bottom: 1px solid #222;
	text-align: left;
}

.w3-sidebar a:hover {
	background: #f33;
	color: #fff;
}

.hero_inner {
	background: url("./assets/images/hero_bg.png") no-repeat center/cover;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
}

.hero_left {
	padding: 30px 50px;
	flex: 1 1 60%;
}

.hero_left h1 {
	font-size: 89px;
	line-height: 1.1;
}

.hero_left h1 span {
	color: var(--cc-black);
}

.hero_left p {
	font-weight: 500;
	font-size: 20px;
	line-height: 137%;
	margin-bottom: 20px;
	max-width: 500px;
}

.play-btn {
	display: inline-block;
	background: #fff;
	color: #000;
	font-size: 18px;
	padding: 14px 40px;
	border-radius: 15px;
	transition: all 0.3s;
}

.play-btn:hover {
	background: #f33;
	color: #fff;
}

.hero_right{
	flex: 0 0 38%;
}


.hero_right img {
width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature_item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature_item h4 {
	font-size: 18px;
	line-height: 104%;
	margin-bottom: 5px;
}

.feature_item p {
	font-weight: 500;
	font-size: 14px;
	line-height: 137%;
}

@media (max-width: 992px) {
	nav ul {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.hero_inner {
		flex-direction: column;
		text-align: center;
	}

	.hero_right {
		display: none;
	}

	.hero_left {
		padding: 20px 20px;
	}

	.hero_left h1 {
		font-size: 70px;
	}

	.hero_left p {
		margin: 0 auto 20px;
	}

	.features {
		justify-items: center;
	}
}

@media (max-width: 767px) {
	
	.hero_left h1 {
        font-size: 40px;
    }
	.features {
		grid-template-columns: repeat(1, 1fr);
	}
}


.games_section {
	padding: 50px 0;
}

.games_inner {
	background: var(--s-bg);
	border-radius: 20px;
	padding: 30px 50px;
}

.games_inner h2 {
	font-size: 50px;
	color: #9c9c9c;
	margin-bottom: 30px;
}

.games_inner h2 span {
	color: #fff;
}

.games_grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

.game_card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	display: block;
	transition: transform 0.3s ease;
}

.game_card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.game_card:hover {
	transform: translateY(-6px);
}

.see_more a {
	font-family: var(--second-family);
	display: inline-flex;
	gap: 10px;
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	position: relative;
	flex-direction: column;
}

.see_more a span {
	transition: transform 0.3s ease;
}

.see_more a:hover span {
	transform: translateX(6px);
}

@media (max-width: 1200px) {
	.games_grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 900px) {
	.games_inner {
		padding: 30px 30px;
	}

	.games_inner h2 {
		font-size: 38px;
		text-align: center;
	}

	.games_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.see_more {
		text-align: center;
	}
}

@media (max-width: 600px) {
	.games_grid {
		grid-template-columns: 1fr;
	}

	.games_inner h2 {
		font-size: 32px;
	}
}


.promo_inner {
	background: url('./assets/images/promo-bg.png') no-repeat center/cover;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.promo_left {
	padding: 60px 50px; 
}

.promo_left h2 {
	font-size: 70px;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.promo_left h2 span {
	font-weight: 700;
	color: #000;
}

.promo_right img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 992px) {
	.promo_inner {
		flex-direction: column;
		text-align: center;
		padding: 50px 30px;
	}

	.promo_right {
		display: none;
	}

	.promo_left {
		flex: 0px;
		padding: 0px;
	}

	.promo_left h2 {
		font-size: 50px;
	}
}

@media (max-width: 600px) {
	.promo_left h2 {
		font-size: 50px;
	}
}

.features_section {
	padding: 50px 0;
}

.features_inner {
	padding: 30px 50px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.feature_box {
	position: relative;
	margin-bottom: 100px;
}

.feature_box:last-child {
	margin-bottom: 0;
}

.feature_bg_text {
	font-size: 62px;
	color:#fff;
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translate(-50%, -55%);
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
	opacity: 0.05;
}

.feature_box h3 {
	position: relative;
	font-size: 52px;
	color: #fff;
	margin-bottom: 20px;
	z-index: 1;
}

.feature_box h3 span {
	color: var(--cc-red);
}

.feature_box p {
	font-weight: 500;
	line-height: 137%;
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

@media (max-width: 992px) {
	.features_inner {
		padding: 70px 30px;
	}

	.feature_bg_text {
		font-size: 60px;
		transform: translate(-50%, -50%);
	}

	.feature_box h3 {
		font-size: 34px;
	}
}

@media (max-width: 600px) {
	.features_inner {
		padding: 50px 20px;
	}

	.feature_bg_text {
		font-size: 52px;
	}

	.feature_box h3 {
		font-size: 46px;
	}

	.feature_box p {
		font-size: 16px;
	}
}


.faq_inner {
	background: var(--s-bg);
	border-radius: 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.faq_left{
	padding: 30px 50px ;
}

.faq_left h2 {
	font-size: 50px;
	color: #9c9c9c;
	margin-bottom: 50px;
}

.faq_left h2 span {
	color: #fff;
}

.faq_list {
	max-width: 600px;
}

.faq_item {
	background:rgba(255, 255, 255, 0.03);
	border-radius: 10px;
	margin-bottom: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq_header {
	width: 100%;
	background: transparent;
	border: none;
	color: #9c9c9c;
	font-size: 17px;
	line-height: 153%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 20px;
	cursor: pointer;
}

.faq_content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	padding: 0 20px;
}

.faq_content p {
	color:  rgba(255, 255, 255, 0.4);
	font-size: 19px;
	line-height: 120%;
	font-weight: 400;
	margin: 15px 0;
}

.faq_item.active .faq_content {
	max-height: 200px;
	padding-bottom: 15px;
}

.faq_item.active .faq_header .faq_icon {
	transform: rotate(180deg);
}

.faq_right {
background-image: url('./assets/images/faq-character.png');
	width: 532px;
	height: 520px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
	    position: absolute;
    right: 0;
    bottom: 0;
}

.faq_right img {
	width: 100%;
	height: auto;
	object-fit: contain;
	max-width: 350px;
}

@media (max-width: 992px) {
	.faq_inner {
		flex-direction: column;
		text-align: center;
		padding: 0px 30px;
	}

	.faq_right {
		display: none;
	}

	.faq_left {
		order: 2;
	}

	.faq_left h2 {
		font-size: 40px;
	}

	.faq_list {
		max-width: 100%;
	}
}

@media (max-width: 600px) {
	.faq_left h2 {
		font-size: 32px;
	}
}

.devices_section {
	padding: 50px 0;
}

.devices_inner {
	background: var(--s-bg);
	border-radius: 20px;
	padding: 30px 50px;
	text-align: center;
}

.devices_inner h2 {
	font-size: 50px;
	color: #9c9c9c;
	margin-bottom: 30px;
}

.devices_inner h2 span {
	color: #fff;
}

.devices_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	justify-items: center;
}

.device_item img {
	height: auto;
	margin: 0 auto;
}

.device_item h4 {
	font-size: 20px;
	margin-bottom: 8px;
}

.device_item p {
	font-size: 16px;
	line-height: 137%;
	font-weight: 500;
}

@media (max-width: 992px) {
	.devices_section{padding: 0px;}
	.devices_inner {
		padding: 60px 30px;
	}

	.devices_inner h2 {
		font-size: 40px;
	}

	.devices_grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.devices_inner {
		padding: 40px 20px;
	}

	.devices_inner h2 {
		font-size: 32px;
	}

	.devices_grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}

.footer_section {
	padding-bottom: 30px;
}

.footer_inner {
	background: var(--s-bg);
	border-radius: 20px;
	padding: 30px 40px;
	text-align: center;
}

.footer_logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.footer_logo img {
	margin-bottom: 8px;
}

.footer_divider {
	border: none;
	border-top: 1px solid #2a2a2a;
	margin: 30px 0;
}

.footer_nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.footer_nav a {
	font-size: 15px;
	transition: color 0.3s ease;
}

.footer_nav a:hover {
	color: var(--cc-red);
}

.footer_disclaimer {
	max-width: 700px;
	margin: 0 auto 40px;
}

.footer_disclaimer h4 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 200%;
	font-weight: 400;
	text-transform: uppercase;

}

.footer_disclaimer p {
	font-size: 14px;
	line-height: 1.6;
	line-height: 179%;
}

.footer_icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}

.footer_icons img {
	height: auto;
	transition: opacity 0.3s ease;
}

.footer_icons img:hover {
	opacity: 1;
}

.footer_copy {
	color: #888;
	font-size: 14px;
}

@media (max-width: 768px) {
	.footer_inner {
		padding: 60px 20px;
	}

	.footer_nav {
		gap: 20px;
		margin-bottom: 30px;
	}

	.footer_icons {
		gap: 20px;
		margin-bottom: 30px;
	}

	.footer_logo img {
		width: 50px;
	}

	.footer_copy {
		font-size: 13px;
	}
}



.contact-section {
  padding: 50px 0;
  background: transparent;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #2d2d2d;
  border: none;
  outline: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #fff;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #2d2d2d;
  box-shadow: 0 0 0 1px #ffd13b;
}


.contact_success{
  text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.page_btn{color: #fff !important;}
.page_btn:hover{color: #000 !important; cursor: pointer;}


.single-game-section {
  padding: 50px 0;
}

.game-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.game-title-single {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.06em;
  text-align: center;
  margin-bottom: 15px;
}

.game-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-iframe-wrapper {
  width: 100%;
  max-width: 100%;
  background: #252733;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.game-iframe-wrapper iframe {
  width: 100%;
  height: 700px;
  display: block;
  border: none;
  border-radius: 15px;
}

@media (max-width: 1024px) {
  .game-title {
    font-size: 32px;
  }

  .game-iframe-wrapper iframe {
    height: 550px;
  }
}

@media (max-width: 768px) {
  .single-game-section {
    padding: 80px 0;
  }

  .game-title {
    font-size: 28px;
  }

  .game-iframe-wrapper iframe {
    height: 450px;
  }
}

@media (max-width: 600px) {
  .single-game-section {
    padding: 60px 0;
  }

  .game-title {
    font-size: 24px;
  }

  .game-iframe-wrapper iframe {
    height: 350px;
  }
}

.current_page_item a {
  color: var(--cc-red) !important
}


.content-page-section {
  padding: 50px 0;
}

.content-wrapper {
  line-height: 1.9;
  font-size: 16px;
}

.content-wrapper p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .content-page-section {
    padding: 60px 15px;
  }

  .content-wrapper {
    font-size: 15px;
  }
}


.age-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.age-modal.active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

.age-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.age-modal__container {
  position: relative;
  z-index: 10;
  background: var(--cc-red);
  border-radius: 20px;
  padding: 40px 30px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: scale(0.9);
  opacity: 0;
  animation: popIn 0.5s ease 0.1s forwards;
}

.age-modal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.age-modal__logo {
  max-width: 120px;
  height: auto;
}

.age-modal__text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.age-modal__btn {
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.age-modal__btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
  .age-modal__container {
    padding: 30px 20px;
  }
  .age-modal__text {
    font-size: 1rem;
  }
}


.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--cc-red);
  color: #fff;
  display: none;
  animation: slideUp 0.5s ease forwards;
  font-family: 'Inter', sans-serif;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 25px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 15px;
}

.cookie-logo img {
  width: auto;
  filter: brightness(0) invert(1);
}

.cookie-content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.cookie-text {
  flex: 1 1 60%;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: #ddd;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-btn {
  background: var(--cc-white);
  color: var(--cc-black);
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cookie-btn:hover {
  background:var(--cc-black);
  color: var(--cc-white);
  transform: translateY(-2px);
}

.cookie-link {
  color: #00bcd4;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.cookie-link:hover {
  color: #00e6e6;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    align-items: center;
  }

  .cookie-text {
    flex: unset;
    font-size: 0.9rem;
  }
}
