/*---------------------------*/
/* Template default CSS
/*---------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap");
html,
body {
    min-height: 100vh; /* Ensures full-page height */
    width: 100%; /* Avoids horizontal scroll issues */
   
    -webkit-font-smoothing: antialiased;
    color: var(--color-black);
    background: var(--color-background);
    display: block; /* Reset flexbox issues */
    margin: 0;
    padding: 0;
	gap: 50px;
	overflow-x: hidden;
  font-family: "Jost", sans-serif !important;
}


h2,
h3,
h4,
h5 {
	
	font-weight: 500;
	color: #131313;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

p {
	font-size: 16px;
	color: black;
	line-height: 2;
  font-weight: bold;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	text-align: center;
	margin-bottom: 75px;
}

.section-title h2 {
	padding-top: 10px;
	font-size: 36px;
}

.set-bg {
	background-repeat: no-repeat;
	background-position: top right;
	background-size: cover;


}

.spad {
	padding-top: 40px;
	padding-bottom: 60px;
	margin-bottom: 20px;
}


.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

.rating i {
	color: #fbb710;
}
li a:hover{
	color: #b40000;
}

.rating .is-fade {
	color: #e0e3e4;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */
.site-btn {
	display: inline-block;
	text-align: center;
	font-size: 15px;
	color: #b40000;
	padding: 15px 25px;
	min-width: 153px;
	border-radius: 50px;
	font-weight: 500;
	border: none;
	background: white;
	cursor: pointer;
}

.site-btn.btn-sm {
	padding: 10px 30px;
	min-width: 163px;
}

.site-btn:hover {
	color: #131313;
}

.cata {
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	padding: 6px 25px;
	border-radius: 3px;
}

.cata.new {
	background: #ff205f;
}

.cata.strategy {
	background: #4eae60;
}

.cata.racing {
	background: #694eae;
}

.cata.adventure {
	background: #40abf5;
}
.Tiltle-heading{
	font-size: 40px !important;
	font-weight: 900 !important;
}
.Tiltle-heading-main{
    background: #FF0000;
    background: linear-gradient(to left, #FF0000 0%, #470202 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}
.box-shadow{
	box-shadow: 10px 10px 5px lightgray;
	border-radius: 3px;
}
/* Preloder */
#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	
	-webkit-animation: loader 0.8s linear infinite;
	animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}
.view-button{
  /* all: unset; */
  /* width: 100px; */
  /* height: 30px; */
  /* font-size: 16px; */
  /* background: transparent; */
  /* border: none; */
  /* position: relative; */
  /* color: #f0f0f0; */
  /* cursor: pointer; */
  /* z-index: 1; */
  /* padding: 10px 20px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* white-space: nowrap; */
  /* -webkit-user-select: none; */
  /* user-select: none; */
  /* touch-action: manipulation; */
  /* margin-top: 20px; */
}

.view-button::after,
.view-button::before {
  /* content: ''; */
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.view-button::before {
  /* transform: translate(0%, 0%); */
  /* width: 100%; */
  /* height: 100%; */
  /* background: #28282d; */
  /* border-radius: 10px; */
}

.view-button::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 50px;
}

.view-button:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.view-button:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.view-button:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}


/*------------------
  Header section
---------------------*/

.header-section {
	background: #131313;
	clear: both;
	overflow: visible; /* ✅ changed from hidden to visible */
	padding: 18px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 1000;
	box-shadow: 0 4px 8px 0 rgba(226, 187, 187, 0.2), 0 6px 20px 0 rgba(231, 189, 189, 0.19);
}

.site-logo {
	/* display: inline-block; */
	/* padding-top: 6px; */
}

.user-panel {
	float: right;
	font-weight: 500;
	background: white;
	padding: 8px 6px;
	border-radius: 20px;
	color: #b40000;
}

.user-panel a {
	font-size: 14px;
	color: #b40000;
	text-decoration: none;
}
.user-panel:hover{
	background: #b40000;
}
.user-panel a:hover {
	
	color: white;
}

.dropdown-menu {

	background-color: #131313;
	border-radius: 16px;
	border: none;
	z-index: 9999; /* Ensure it appears above everything */
}

.dropdown-item {
	color: #fff;
	font-weight: 500;
}

.dropdown-item:hover {
	
	margin: left;
	background-color: #b40000 !important;
	color: white !important;
}

/* Fix nav-switch overlapping */
.nav-switch {
	color: #fff;
	display: block;
	float: right;
	cursor: pointer;
	font-size: 25px;
	z-index: 10001; /* higher than dropdown */
	position: relative;
}

.main-menu {
	float: right;
	margin-right: 91px;
}

.main-menu ul {
	list-style: none;
}

.main-menu ul li {
	display: inline;
	color: black;
}

.main-menu ul li a {
	display: inline-block;
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	padding: 10px 20px;
}

.main-menu ul li a:hover {
	color: #b40000;
	font-size: 18px;
}

.nav-switch {
	display: none;
}
@media only screen and (max-width: 767px) {
	.dropdown-menu {
		position: static;
		float: none;
		box-shadow: none;
		width: 100%;
		display: none; /* hide initially */
		background-color: #fff;
	}

	.nav-item.dropdown.show .dropdown-menu {
		display: block; /* show when dropdown open */
	}

	.dropdown-item {
		color: #131313;
	}
}
  
/*----------------------
  Footer top Section
------------------------*/

.footer-top-section {
	margin-top: 60px;
}

.footer-top-section .container {
	position: relative;
	border-radius: 5px;
	box-shadow: 0px 15px 10px -15px #2a2ae7;
}
.container .footer-top-heading{
	font-size: 50px;
	font-weight: 700;
	padding-left: 30px;
	color: white;
}
.footer-top-content{
	padding-left: 30px;
}
.glow {
	color: #fff;
	-webkit-animation: glow 1s ease-in-out infinite alternate;
	-moz-animation: glow 1s ease-in-out infinite alternate;
	animation: glow 1s ease-in-out infinite alternate;
  }
  
  @-webkit-keyframes glow {
	from {
	  text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
	}
	to {
	  text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
	}
  }
  .View-now {
	padding: 0.5em 1.5em;
	border: none;
	outline: none;
	color: rgb(255, 255, 255);
	background: #111;
	cursor: pointer;
	position: relative;
	z-index: 0;
	border-radius: 10px;
	-webkit-user-select: none;
	user-select: none;
	touch-action: manipulation;
	margin-left: 30px;
  }
  
  .View-now:before {
	content: "";
	background: linear-gradient(
	  45deg,
	  #ff0000,
	  #00ffd5,
	  #002bff,
	  #7a00ff,
	  #ff00c8,
	  #ff0000
	);
	position: absolute;
	top: -2px;
	left: -2px;
	background-size: 400%;
	z-index: -1;
	-webkit-filter: blur(5px);
	filter: blur(5px);
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	animation: glowing-button-85 20s linear infinite;
	transition: opacity 0.3s ease-in-out;
	border-radius: 10px;
  }
  
  @keyframes glowing-View-now {
	0% {
	  background-position: 0 0;
	}
	50% {
	  background-position: 400% 0;
	}
	100% {
	  background-position: 0 0;
	}
  }
  
  .View-now:after {
	z-index: -1;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #222;
	left: 0;
	top: 0;
	border-radius: 10px;
  }

/*-----------------
  Contact page
--------------------*/

.map {
	height: 515px;
	background: #ddd;
	margin-bottom: 90px;
}

.contact-info-list {
	padding-top: 55px;
	padding-bottom: 20px;
	list-style: none;
}

.contact-info-list li {
	margin-bottom: 30px;
}

.contact-info-list .cf-left {
	width: 95px;
	float: left;
	font-size: 16px;
	font-weight: 700;
	color: #ffb320;
}

.contact-info-list .cf-right {
	color: #878787;
	font-size: 15px;
	padding-left: 100px;
}

.social-links{
	margin: 10px 0;
}
.social-links a {
	color: white;
	font-size: 18px;
	margin-top: 20px;
	padding-right: 25px;
}
.footer {
	background: black;
    background: linear-gradient(to bottom, #FF0000 10%, #000000 90%);

  }
  .footer .footer-row {
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	justify-content: space-between;
	gap: 1rem;
	padding: 60px;
	}
  .footer-row .footer-col h4 {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 400;
  }
  .footer-col .links {
	margin-top: 20px;
  }
  .footer-col .links li {
	list-style: none;
	margin-bottom: 10px;
  }
  .footer-col .links li a {
	text-decoration: none;
	color: #bfbfbf;
  }
  .footer-col .links li a:hover {
	color: #fff;
  }
  .footer-col p {
	margin: 20px 0;
	color: #bfbfbf;
	max-width: 300px;
  }
  .footer-col form {
	display: flex;
	gap: 5px;
  }
  .footer-col input {
	height: 40px;
	border-radius: 6px;
	background: none;
	width: 100%;
	outline: none;
	border: 1px solid #7489C6 ;
	caret-color: #fff;
	color: #fff;
	padding-left: 10px;
  }
  .footer-col input::placeholder {
	color: #ccc;
  }
   .footer-col form button {
	background: #fff;
	outline: none;
	border: none;
	padding: 10px 15px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: 0.2s ease;
  }
  .footer-col form button:hover {
	background: #cecccc;
  }
  .footer-col .icons {
	display: flex;
	margin-top: 30px;
	gap: 30px;
	cursor: pointer;
  }
  .footer-col .icons i {
	color: #afb6c7;
  }
  .footer-col .icons i:hover  {
	color: #fff;
  }
  

/*------------------
  Responsive
---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1176px;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-menu {
		margin-right: 72px;
	}
	.hero-slider .owl-dots {
		max-width: 930px;
	}
	.review-section {
		background-position: right 10% top;
	}
	.review-item .review-cover {
		height: 280px;
	}
	.latest-blog .lb-item .lb-thumb {
		width: 55px;
		height: 55px;
	}
	.latest-blog .lb-item .lb-content {
		padding-left: 67px;
	}
	.top-comment .tc-item .tc-content {
		padding-left: 95px;
	}
	.footer-top-bg {
		max-width: 370px;
	}
	.page-info-section .pi-content h2 {
		font-size: 50px;
	}
}

@import url("https://fonts.googleapis.com/css?family=Poppins|Lato");

:root {
    --color-accent: #b40000;   /* Original deep red */
    --color-secondary: #900000; /* Slightly darker red */
  --color-icon: #0ce67d;
  --color-black: #414244;
  --color-light: #fff;
  --color-background: #f8f9fb;
  --color-gradient: linear-gradient(155deg, var(--color-accent), var(--color-secondary));

  --font-header: "Poppins", sans-serif;
  --font-body: "Lato", sans-serif;

  --padding-card: 2rem;
  --margin-card-popular: 1.5rem;
  --margin-icon: 1.1em;

  --border-radius-card: 0.5rem;

  --box-shadow: 0 7px 30px rgba(52, 31, 97, 0.1);
  --box-shadow-popular: 0 7px 30px rgba(52, 13, 135, 0.3);

  font-size: 18px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}





/* General Page Styling
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--color-light);
  color: var(--color-dark);
  margin: 0;
  padding: 20px;
} */

/* Rules Section */
.rules-section {
  max-width: 90%;
  width: 1000px;
  background: white;
  padding: 20px;
  margin: auto;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--color-accent);
  
  /* Fade-in Animation */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}

/* Fade-in Keyframes */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.rules-section h2 {
  color: var(--color-accent);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 10px;
  
  /* Pulse Animation */
  animation: pulse 1.5s infinite alternate;
}

/* Pulse Effect */
@keyframes pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* List Styling */
.rules-list {
  list-style: none;
  padding: 0;
}

/* Slide-in Animation for List Items */
.rules-list li {
  background: #ffffff;
  padding: 12px;
  margin: 10px 0;
  border-left: 5px solid var(--color-dark);
  border-radius: 5px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  
  /* Apply Slide-in Animation */
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.5s ease-out forwards;
  
  font-size: 19px; /* Thin increase in font size */
}

/* List Item Icons */
.rules-list li::before {
  content: "✔";
  color: var(--color-dark);
  position: relative; /* Change position to relative */
  left: 0; /* Align icon to the left */
  font-weight: bold;
  font-size: 20px; /* Adjust icon size */
  margin-right: 10px; /* Adds some space between the icon and the content */
}

/* Important Rule Icons */
.rules-list li.important::before {
  content: "⚠";
  color: var(--color-accent);
}

/* List Styling */
.rules-list {
  list-style: none;
  padding: 0;
}

/* Slide-in Keyframes */
@keyframes slideIn {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}


/* Highlight Important Rules */
.rules-list li.important {
  background: #fff3f3;
  border-left: 5px solid var(--color-accent);
  
  /* Glow Effect on Hover */
  transition: box-shadow 0.3s ease-in-out;
}

.rules-list li.important:hover {
  box-shadow: 0px 0px 10px rgba(255, 87, 87, 0.8);
  transform: scale(1.02);
}

/* List Item Icons */
.rules-list li::before {
  content: "✔";
  color: var(--color-dark);
  position: absolute;
  left: 15px;
  font-weight: bold;
}

/* Important Rule Icons */
.rules-list li.important::before {
  content: "⚠";
  color: var(--color-accent);
}

/* Responsive Design */
@media (max-width: 600px) {
  .rules-section {
      padding: 15px;
  }

  .rules-list li {
      padding-left: 35px;
      font-size: 14px;
  }

  .rules-list li::before {
      left: 10px;
  }
}

:root {
    --color-accent: #b40000; /* Strong Red */
    --color-dark: #1a1a1a;   /* Dark Gray */
    --color-light: #f5f5f5;  /* Light Gray */
    --color-gold: #ffcc00;   /* Premium Gold */
  }
  
  /* General Page Styling */
  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-light);
    color: var(--color-dark);
    margin: 0;
    padding: 20px;
    text-align: center;
  }
  
  /* Premium Section Styling */
  .premium-section {
    max-width: 1100px;
    margin: 50px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--color-gold);
    
  }
  
  .premium-section h2 {
    color: var(--color-accent);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
    padding-bottom: 5px;
  }
@media screen and (max-width: 408px) {
    .premium-section {
        margin: 0; /* Remove margin */
        padding: 15px; /* Reduce padding */
        max-width: 100%; /* Ensure it fits within the screen width */
    }

    .boxxx {
        flex-direction: column; /* Stack items vertically */
    }

    .premium-section h2 {
        font-size: 18px; /* Reduce font size of heading */
        margin-bottom: 10px; /* Adjust margin */
    }

    .feature-card {
        margin-bottom: 15px; /* Add margin between feature cards */
        width: 100%; /* Ensure feature cards are full-width */
        padding: 15px; /* Adjust padding */
    }

    .feature-title {
        font-size: 16px; /* Adjust font size for the feature titles */
    }

    .feature-desc {
        font-size: 12px; /* Adjust font size for descriptions */
    }
}
/* Features Row */
.features-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* Keep items in a row */
  gap: 15px;
  width: 100%; /* Ensure it fits within the container */
}

/* Feature Card */
.feature-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  width: 23%; /* Ensures four items fit per row */
  min-width: 200px;
  text-align: center;
  white-space: normal;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.feature-title {
  font-weight: bold;
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.feature-desc {
  font-size: 14px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 900px) {
  .features-row {
      flex-wrap: wrap; /* Wraps to a new line on smaller screens */
      justify-content: center;
  }

  .feature-card {
      width: 45%; /* Two per row on medium screens */
  }
}

@media (max-width: 600px) {
  .feature-card {
      width: 100%; /* One per row on small screens */
  }
}
.game-section {
  width: 100%;
  height: 400px; /* Adjust the height as needed */
  background-image: url('..img/game-splashinthedark.webp'); /* Replace with your image URL */
  background-size: cover; /* Ensures the image covers the entire div */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents repetition */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white; /* Ensures text is readable */
  text-align: center;
}

.rules-section,
.price-column1 {
    color: #131313 !important; /* or any dark color */
}

.rules-section h2, .rules-section h3, .rules-section h4, 
.price-column1 h2, .price-column1 h3, .price-column1 h4 {
    color: #b00010 !important;
    font-weight: 600;
}
.feature1{
  color: black !important;
  text-align: left;
  font-size: 12px;
}
/* Style for the section below the navbar */
.splash-section {
  background: url('game-splashinthedark.webp') no-repeat center center; /* Set background image */
  background-size: cover; /* Ensure full coverage */
  color: white; /* Make text readable */
  text-align: center;
  padding: 100px 20px;
  min-height: 80vh; /* Full-screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 90px;
}

/* Adding a neon glow effect */
.splash-section h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #0ff; /* Cyan glow effect */
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #00f;
  writing-mode: horizontal-tb;

}

.splash-section p {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #0ff; /* Cyan glow effect */
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #00f;
  opacity: 0.8;
  margin-top: 100px; /* Adjust based on navbar height */
  writing-mode: horizontal-tb;

}


/* Adding a glowing animation */
.splash-glow::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 10%, transparent 70%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 0.6; }
  100% { opacity: 0.4; }
}

/* Responsive design */
@media (max-width: 768px) {
  .splash-section {
      padding: 30px 15px;
  }
  .splash-section h1 {
      font-size: 2.5rem;
  }
  .rules-list{
  	font-size: 14px;
  }
}
.img-responsive{
  border:  2px ;
  border-radius: 13px;
}