 /* =================================
------------------------------------
  Game Warrior Template
  Version: 1.0
 ------------------------------------
 ====================================*/

/*---------------------------*/
/* Template default CSS
/*---------------------------*/

html,
body {
	height: 100%;
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
margin: 0;
	background-color: #000; /* Black background */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 500;
	color: #131313;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 14px;
	color: #878787;
	line-height: 2;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	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-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 97px;
	padding-bottom: 97px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

.rating i {
	color: #fbb710;
}

.rating .is-fade {
	color: #e0e3e4;
}

/*---------------------
  Commom elements
-----------------------*/

/* buttons */
.site-btn {
	display: inline-block;
	text-align: center;
	font-size: 15px;
	color: #131313;
	padding: 16px 30px;
	min-width: 153px;
	border-radius: 50px;
	font-weight: 500;
	border: none;
	background: #ff2f31;
	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;
}

.cata.new {
	background: #ff205f;
}

.cata.strategy {
	background: #4eae60;
}

.cata.racing {
	background: #694eae;
}

.cata.adventure {
	background: #40abf5;
}




/*------------------
  Header section
---------------------*/

.header-section {
	background: #131313;
	clear: both;
	overflow: hidden;
	padding: 18px 0;
	border-bottom: 2px solid #ff2f31;
}

.site-logo {
	display: inline-block;
	float: left;
	padding-top: 6px;
}

.user-panel {
	float: right;
	font-weight: 500;
	background: #ffb320;
	padding: 8px 28px;
	border-radius: 30px;
}

.user-panel a {
	font-size: 14px;
	color: #131313;
}

.main-menu {
	float: right;
	margin-right: 170px;
}

.main-menu ul {
	list-style: none;
}



.main-menu ul li {
	display: inline-block;
	position: relative; /* Required for positioning the underline */
}

.main-menu ul li a {
	display: inline-block;
	font-size: 16px;
	color: #ff2f31;
	margin-left: 35px;
	font-weight: 500;
	padding: 10px 5px;
	text-decoration: none;
	position: relative; /* Required for pseudo-element positioning */
	transition: color 0.3s ease; /* Smooth color transition */
}

.main-menu ul li a:hover {
	color: #f6383a; /* Change text color on hover */
}

/* Underline Effect */
.main-menu ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #f6383a;
	transition: width 0.3s ease; /* Animation for the underline */
}

.main-menu ul li a:hover::after {
	width: 100%; /* Full-width underline on hover */
}




.header-btn {
	float: right;
	margin-right: 0;
}

.nav-switch {
	display: none;
}


.header-section {
	background: #131313;
	clear: both;
	overflow: hidden;
	padding: 18px 0;
	border-bottom: 2px solid #ff2f31;
	position: relative; /* Needed for absolute positioning of header-image */
}

.header-image {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    height: 80%; /* Adjust to fit within the header */
    z-index: 10; /* Keeps it above other elements */
    filter: drop-shadow(6px 8px 10px rgba(0, 0, 0, 0.7)); /* Adds a deeper shadow for contrast */
    border-radius: 12px; /* Smooth rounded corners */
    overflow: hidden; /* Ensures clean edges */
    background: rgba(255, 255, 255, 0.15); /* Adds a soft, semi-transparent white background */
    padding: 10px; /* Provides spacing inside the container */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6); /* A stronger shadow for visibility */
    animation: pulseEffect 3s infinite; /* Subtle pulsing effect for more attraction */
}

.header-image img {
    max-height: 100%; /* Ensures the image fits within the container */
    width: auto; /* Maintains the aspect ratio */
    border-radius: 10px; /* Matches the container's rounded edges */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation on hover */
}

.header-image img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
    box-shadow: 0 12px 25px rgba(255, 47, 49, 0.9); /* Bright highlight when hovered */
}

/* Glow effect */
.header-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 47, 49, 0.6), rgba(255, 47, 49, 0.3));
    z-index: -1; /* Places the overlay below the image */
    border-radius: 12px; /* Matches the container edges */
    filter: blur(5px); /* Smooth glow effect */
}

/* Subtle pulsing animation */
@keyframes pulseEffect {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }
    50% {
        box-shadow: 0 12px 30px rgba(255, 47, 49, 0.8);
    }
}

/*------------------
  Header section End
---------------------*/


/*------------------
  Hero Section
---------------------*/

.hero-slider .hs-item {
	height: 450px;
	display: table;
	width: 100%;
      padding-top: 60px; /* Add padding to move the text down */
}

.hero-slider .hs-text {
	display: table-cell;
	vertical-align: middle;
}

.hero-slider .hs-text h2 {
	color: #fff;
	font-weight: 700; /* Made bold */
	font-size: 60px;
	margin-bottom: 30px;
	position: relative;
	top: -80px;
	opacity: 0;
}

.hero-slider .hs-text h2 span {
	color: #ff2f31;
}

.hero-slider .hs-text p {
	color: #ffb320;
	margin-bottom: 30px;
	position: relative;
	top: -90px;
	opacity: 0;
}

/* Adjusting the position of the Play Now button */
.hero-slider .hs-text .site-btn {
    position: relative !important; /* Keep relative position to preserve style */
    top: 100px !important; /* Adjust the top positioning to move it down */
    opacity: 1 !important; /* Ensure visibility */
    color: #fff !important; /* Keep text color white */
}

.hero-slider .owl-item.active .hs-item h2,
.hero-slider .owl-item.active .hs-item p,
.hero-slider .owl-item.active .hs-item .site-btn {
	top: 0;
	opacity: 1;
}

.hero-slider .owl-item.active .hs-item h2 {
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
}

.hero-slider .owl-item.active .hs-item p {
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

.hero-slider .owl-item.active .hs-item .site-btn {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.hero-slider .owl-dots {
	position: absolute; /* Changed to absolute */
	right: 20px; /* Positioned at bottom-right */
	bottom: 20px; /* Positioned at bottom-right */
	z-index: 5;
}

.hero-slider .owl-dots .owl-dot {
	display: inline-block;
	margin-right: 13px;
	width: 33px;
	height: 33px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	padding-top: 7px;
	border-radius: 40px;
	background: #dbe2ec;
}

.hero-slider .owl-dots .owl-dot.active {
	background: #ffb320;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .hero-slider .hs-item {
        height: 300px; /* Reduce height for smaller screens */
        padding-top: 30px; /* Adjust padding */
    }

    .hero-slider .hs-text h2 {
        font-size: 30px; /* Reduce font size */
        margin-bottom: 15px;
    }

    .hero-slider .hs-text p {
        font-size: 16px; /* Adjust text size */
        margin-bottom: 15px;
    }

    .hero-slider .hs-text .site-btn {
        top: 50px !important; /* Adjust button position */
        padding: 8px 15px; /* Reduce button size */
        font-size: 14px; /* Adjust font size */
    }

    .hero-slider .owl-dots {
        right: 10px; /* Adjust dot navigation position */
        bottom: 10px;
    }

    .hero-slider .owl-dots .owl-dot {
        width: 25px;
        height: 25px;
        font-size: 12px;
        padding-top: 5px;
    }
}



/*---------------------
  Latest News section
-----------------------*/

.latest-news-section {
	overflow: hidden;
	display: block;
	clear: both;
	background: #131313;
	padding: 24px 0;
	position: relative;
}

.ln-title {
	position: absolute;
	height: 100%;
	width: 29%;
	left: 0;
	top: 0;
	text-align: right;
	padding-top: 24px;
	padding-right: 66px;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	background: rgba(255, 47, 49, 0.7); /* Transparent red background with 70% opacity */
	z-index: 1;
}

.news-ticker {
	width: 71%;
	float: right;
	overflow: hidden;
	display: inline-block;
}

.news-ticker-contant .nt-item {
	margin-right: 35px;
	color: #fff;
	display: inline-block;
}

.news-ticker-contant .nt-item span {
	margin-right: 35px;
	display: inline-block;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	padding: 4px 20px;
}

.news-ticker-contant .nt-item span.new {
	background: #ff205f;
}

.news-ticker-contant .nt-item span.strategy {
	background: #4eae60;
}

.news-ticker-contant .nt-item span.racing {
	background: #694eae;
}




/* Trending Games Section Start */

/* Trending Games Section Start */
.trending-games {
    background: #0d0d0d; 
    padding: 40px 0;
    text-align: center;
}

.trending-games .section-title {
    color: #ff2f31;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.game-list {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adjust gap for larger items */
    flex-wrap: wrap;
}

.game-item {
    width: 180px; /* Increased size for larger images */
    text-align: center;
}

.game-item img {
    width: 100%;
    border-radius: 12px; /* Slightly larger border radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.game-item p {
    margin-top: 8px; /* Slightly larger gap */
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

/* Explore Section */
.explore-section {
    background: #0d0d0d;
    padding: 40px 0;
    text-align: center;
}

.explore-title {
    color: rgba(255, 255, 255, 0.08);
    font-size: 260px;
    font-weight: 900;
    letter-spacing: 8px;
    position: relative;
    margin-bottom: 50px;
}

.explore-title::after {
    content: "EXPLORE";
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.explore-categories {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    flex-wrap: nowrap;
    overflow-x: auto;
    align-items: flex-start; /* Aligns images towards the top */
    margin-top: -170px; /* Adjust this value to move the images closer */
}

.category-icon {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensures no part of the image is cut */
}


.category-icon img {
    width: 100%;
    height: 100%; /* Increase height so the head isn't cut */
    border-radius: 50%;
    object-fit: cover;
   object-position: Top; /* Move it up even more */
}

.category-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.category-item p {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Trending Games - Horizontal Scroll */
    .game-list {
        display: flex;
        flex-wrap: nowrap; /* Keep all items in one row */
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Smooth scrolling */
        gap: 15px;
        padding-bottom: 10px; /* Space for scroll visibility */
    }

    .game-item {
        flex: 0 0 auto; /* Prevent shrinking */
        width: 160px; /* Adjust size */
        max-width: 160px;
        scroll-snap-align: start; /* Snap items properly */
    }

    /* Explore Section - Horizontal Scroll */
    .explore-categories {
        display: flex;
        flex-wrap: nowrap; /* Keep all items in one row */
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Smooth scrolling */
        gap: 15px;
        padding-bottom: 10px;
        margin-top: -60px !important; /* Move up more */
    }

    .category-item {
        flex: 0 0 auto; /* Prevent shrinking */
        scroll-snap-align: start; /* Snap items properly */
    }

    .category-icon {
        width: 120px;
        height: 120px;
        margin-top: -5px !important; /* Move icons up */
    }

    .explore-title {
        font-size: 100px;
    }

    .explore-title::after {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    /* Adjust sizes for smaller screens */
    .game-item {
        width: 140px;
        max-width: 140px;
    }
    
    .explore-categories {
        margin-top: -25px; /* Less adjustment for very small screens */
    }

    .category-icon {
        width: 100px;
        height: 100px;
        margin-top: 3px; /* Slightly more spacing for smaller screens */
    }

    .explore-title {
        font-size: 80px;
    }

    .explore-title::after {
        font-size: 18px;
    }
}


/* Trending Games Section End */



/* Adventure Game Section Styling */

#adventure-game-section {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: 16px;
}

/* Background Animation */
.bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(63, 94, 251, 0.2), transparent 70%);
  animation: background-move 10s linear infinite;
  z-index: 0;
  opacity: 0.4;
}

/* Continuous Scrolling Animation */
@keyframes continuous-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Header Styling */
.adventure-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 20px;
  z-index: 1;
  position: relative;
}

.adventure-header h2 {
  font-size: 18px;
  font-weight: bold;
  color: #36d1dc;
}

.adventure-header .view-all {
  font-size: 14px;
  color: #40e0d0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, transform 0.3s;
}

.adventure-header .view-all:hover {
  color: #20b2aa;
  transform: scale(1.1);
}

/* Slider Container */
.adventure-slider-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.adventure-slider {
  display: flex;
  gap: 30px;
  animation: continuous-scroll 10s linear infinite;
  white-space: nowrap;
}

/* Continuous Scrolling Animation */
@keyframes continuous-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Adventure Card Styling */
.adventure-card {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adventure-card:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.6);
}

.adventure-img-container {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(0, 255, 255, 0.5);
  transition: border-color 0.3s ease;
}

.adventure-card:hover .adventure-img-container {
  border-color: #20b2aa;
}

.adventure-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.adventure-card:hover img {
  transform: scale(1.1);
}

.adventure-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 12px;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.adventure-card:hover .adventure-title {
  color: #40e0d0;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .adventure-header {
    flex-direction: column;
    text-align: center;
  }

  .adventure-slider-container {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    scroll-behavior: smooth;
  }

  .adventure-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    animation: none; /* Disable animation for better scrolling */
  }

  .adventure-card {
    width: 150px; /* Reduce card width */
    flex: 0 0 auto;
  }

  .adventure-img-container {
    width: 140px;
    height: 140px;
  }

  .adventure-title {
    font-size: 14px;
  }
}



/* Adventure Game Section Styling End */



/* Battle Games Section Styling Start */

#battle-games {
  background: #101010;
  position: relative;
  padding: 200px 20px; /* Increased top padding to move images further down */
  text-align: center;
  color: #fff;
  overflow: visible !important; /* Ensures the button is clickable */
}

/* Stylish Heading for Battle Games */
.battle-main-title {
  font-size: 48px;
  font-weight: bold;
  color: #ff4d4d;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 15px rgba(255, 77, 77, 0.8);
}

/* Background Title Styling */
.battle-title-bg {
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

/* Grid Container */
.battle-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-top: 120px;
}

/* Battle Card Styling */
.battle-card {
  width: 200px;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-shrink: 0; /* Prevent cards from shrinking */
}

.battle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure images remain round */
  transition: transform 0.3s ease;
}

.battle-card:hover img {
  transform: scale(1.1);
}

.battle-card .battle-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.battle-card:hover .battle-title {
  background: #ff4d4d;
  transform: translateY(-5px);
}

/* View All Button Styling */
.view-all-btn {
  margin-top: 40px;
  position: relative;
  z-index: 10; /* Ensure button is clickable */
}

.view-all-btn button {
  background: #ff4d4d;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all-btn button:hover {
  background: #e33b3b;
}

/* Background Animation */
#battle-games::before,
#battle-games::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 77, 77, 0.4), transparent);
  animation: pulse 6s infinite ease-in-out;
  z-index: 0;
}

#battle-games::before {
  top: -100px;
  left: -100px;
}

#battle-games::after {
  bottom: -100px;
  right: -100px;
}

/* Background Animation Fix for Sports Games */
#sports-games::before,
#sports-games::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent);
  animation: pulse 6s infinite ease-in-out;
  z-index: 0;
}

#sports-games::before {
  top: -100px;
  left: -100px;
}

#sports-games::after {
  bottom: -100px;
  right: -100px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .battle-title-bg {
    font-size: 80px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-align: center;
    width: 100%;
    opacity: 0.15;
  }

  /* Display images in a single row with horizontal scrolling */
  .battle-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding-bottom: 15px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  /* Ensure scrollbar is visible */
  .battle-grid::-webkit-scrollbar {
    height: 6px;
    background: rgba(255, 77, 77, 0.2);
  }
  .battle-grid::-webkit-scrollbar-thumb {
    background: #ff4d4d;
    border-radius: 10px;
  }
}



/* General Game Section Styling */
.game-section {
  background: #101010;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

/* Section Title Styling */
.section-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

/* Grid Styling for Games */
.game-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
}

/* Game Card Styling */
.game-card {
  width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

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

.game-card .game-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.game-card:hover .game-title {
  background: #ff4d4d;
  transform: translateY(-5px);
}

/* View All Button */
.view-all-btn button {
  background: #ff4d4d;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all-btn button:hover {
  background: #e33b3b;
}









/*------------------
  Feature Section
---------------------*/

.feature-item {
	height: 415px;
	position: relative;
}

.feature-item:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: .65;
}

.feature-item .cata {
	position: relative;
	margin-top: 28px;
	margin-left: 29px;
	z-index: 3;
}

.feature-item .fi-content {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	padding: 0 26px 24px;
	z-index: 2;
}

.feature-item .fi-content h5 {
	margin-bottom: 18px;
}

.feature-item .fi-content .fi-comment {
	font-size: 12px;
	opacity: .54;
}

/*----------------------
  Recent Game Section
------------------------*/

.recent-game-section {
	background-color: #eef2f6;
	border-top: 1px solid #d6dee7;
	border-bottom: 1px solid #d6dee7;
}

.recent-game-item .rgi-thumb {
	height: 204px;
	padding: 25px 28px;
}

.recent-game-item .rgi-content {
	padding: 34px 22px 20px;
	background: #fff;
	border: 1px solid #d6dee7;
	border-top: none;
	position: relative;
}

.recent-game-item .rgi-content h5 {
	margin-bottom: 20px;
	line-height: 1.5;
}

.recent-game-item .rgi-content .comment {
	font-size: 12px;
	color: #737373;
}

.recent-game-item .rgi-extra {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 70px;
}

.recent-game-item .rgi-extra .rgi-star,
.recent-game-item .rgi-extra .rgi-heart {
	height: 35px;
	width: 35px;
	float: left;
	display: block;
	padding: 6px 8px 0;
}

.recent-game-item .rgi-extra .rgi-star {
	background: #ffb320;
}

.recent-game-item .rgi-extra .rgi-heart {
	background: #ff205f;
}

/*----------------------
  Tournaments Section
------------------------*/

.tournaments-section {
	background-image: url("../img/pattern.png");
	background-repeat: repeat;
}

.tournament-title {
	display: inline-block;
	padding: 7px 25px;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	background: #fb6e10;
}

.tournament-item {
	background: #252525;
}

.tournament-item .ti-notic {
	display: inline-block;
	padding: 8px 21px;
	font-size: 12px;
	font-weight: 700;
	color: #131313;
	text-transform: uppercase;
	background: #ffb320;
}

.tournament-item .ti-content {
	padding: 38px 24px;
	overflow: hidden;
}

.tournament-item .ti-thumb {
	width: 168px;
	height: 178px;
	float: left;
}

.tournament-item .ti-text {
	padding-left: 195px;
}

.tournament-item .ti-text h4 {
	color: #ffb320;
	margin-bottom: 20px;
}

.tournament-item .ti-text ul {
	list-style: none;
	margin-bottom: 20px;
}

.tournament-item .ti-text ul li {
	color: #fff;
	font-size: 12px;
	margin-bottom: 6px;
}

.tournament-item .ti-text ul li span {
	color: #9a9a9a;
}

.tournament-item .ti-text p {
	font-size: 12px;
	margin-bottom: 0;
}

.tournament-item .ti-text p span {
	font-weight: 500;
	color: #ffb320;
}

/*---------------------- 
  Review Section
------------------------*/

.review-section {
    background-position: right top;
}

.review-item .review-cover {
    position: relative;
    margin-bottom: 30px;
    height: 345px;
}

.review-item .review-cover .score {
    position: absolute;
    width: 54px;
    height: 54px;
    top: -27px;
    left: 26px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
}

.review-item .review-cover .score.yellow {
    background: #ffb320;
}

.review-item .review-cover .score.purple {
    background: #694eae;
}

.review-item .review-cover .score.pink {
    background: #ff20ae;
}

.review-item .review-cover .score.green {
    background: #4eae60;
}

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

.review-item .review-text h5 {
    margin-bottom: 20px;
    color: #ff2f31;
}


.review-item .review-text p {
    margin-bottom: 0;
}

.review-item .rating {
    margin-bottom: 20px;
}

.review-item .rating i {
    font-size: 12px;
}

/* Styling for Recent Reviews text */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-align: center;
}


/* Hover effect for review images */
.review-item {
    text-decoration: none;
}

.review-item .review-cover {
    transition: transform 0.3s ease-in-out;
}

.review-item:hover .review-cover {
    transform: scale(1.05); /* Slight zoom effect */
}

.review-item .review-text h5 {
    transition: color 0.3s ease-in-out;
}

.review-item:hover .review-text h5 {
    color: #4caf50; /* Change text color on hover */
}






/*----------------------
  Footer top Section
------------------------*/

/* Game About Section Page Start */

.game-why-choose h3, .game-contact-us h3 {
    margin-top: 20px;
}

/* Game About Section */
.game-about {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

/* Section Title */
.game-section-title {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    animation: glow 2s infinite alternate;
}

/* Set All Text to White */
.game-about,
.game-about p,
.game-about h3,
.game-about ul,
.game-about li,
.game-about a {
    color: white;
}

/* Hover effect for links */
.game-about a:hover {
    color: #ffcc00;
}

/* Content Layout (Text & Image Side by Side) */
.game-about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

/* Game About Section Text */
.game-about-text {
    width: 45%;
    text-align: center;
}

/* Game About Section Image Container */
.game-about-image {
    width: 50%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Game About Section Image Styling */
.game-about-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover Effect on Image */
.game-about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* Vision & Mission Layout */
.game-vision-mission {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.game-vision, .game-mission {
    width: 45%;
    text-align: center;
}

/* Our Values Section */
.game-values ul {
    list-style-type: none;
    padding: 0;
}

.game-values li {
    margin: 15px 0;
    font-size: 18px;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}

.game-values li:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.4);
}

/* Game List */
.game-our-games ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.game-our-games li {
    margin: 10px;
    font-size: 20px;
    padding: 8px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.game-our-games li:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

/* Center Contact Us Section */
.game-contact-us {
    text-align: center;
}

/* Glow Animation */
@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 1); }
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .game-about-content {
        flex-direction: column;
        text-align: center;
    }

    .game-about-text, .game-about-image {
        width: 90%;
    }

    .game-vision-mission {
        flex-direction: column;
    }

    .game-vision, .game-mission {
        width: 100%;
    }
}

/* Game About Section Page End */



/* ABout Section Page End */



}

/* Our Values */
.our-values ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0;
}

.our-values li {
    margin: 15px 0;
    font-size: 18px;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.2); /* Light background */
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s, background 0.3s;
}

/* Hover Effect for Our Values */
.our-values li:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.4); /* Slightly darker on hover */
}

/* Game List */
.our-games ul {
    list-style-type: none; /* Remove default bullet points */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.our-games li {
    margin: 10px;
    font-size: 20px;
    padding: 8px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s;
}

/* Hover Effect for Game List */
.our-games li:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

/* Join Community */
.join-community a {
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
}

.join-community a:hover {
    text-decoration: underline;
}

/* Contact Us */
.contact-us a {
    color: #ffcc00;
    font-weight: bold;
}

/* Animations */
@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 1); }
}





/*----------------------
  Footer Section
------------------------*/

.footer-section {
	padding: 18px 0 16px;
	overflow: hidden;
	background: #252525;
}

.footer-menu {
	list-style: none;
	float: right;
}

.footer-menu li {
	display: inline;
}

.footer-menu li a {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: #aeaeae;
	margin-left: 30px;
}

.copyright {
	float: left;
	margin-bottom: 0;
	font-weight: 500;
	color: #aeaeae;
}

/*------------------
  Other Pages
--------------------
====================*/

.page-info-section {
	height: 499px;
	position: relative;
}

.page-info-section .pi-content {
	position: absolute;
	width: 100%;
	bottom: 65px;
	left: 0;
	z-index: 2;
}

.page-info-section .pi-content h2 {
	font-size: 60px;
	margin-bottom: 25px;
	font-weight: 400;
}

.site-pagination {
	padding-top: 50px;
}

.site-pagination a,
.site-pagination span {
	width: 33px;
	height: 33px;
	font-size: 14px;
	font-weight: 500;
	padding-top: 7px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	color: #131313;
	margin-right: 10px;
}

.site-pagination .active {
	background: #ffb320;
}

.site-pagination.sp-style-2 a,
.site-pagination.sp-style-2 span {
	background: #e5e5e5;
}

.site-pagination.sp-style-2 .active {
	background: #ffb320;
}

.widget-item {
	margin-bottom: 73px;
}

.widget-item:last-child {
	margin-bottom: 0;
}

.widget-item .widget-title {
	margin-bottom: 40px;
}

.widget-item .latest-blog .lb-item .lb-content p,
.widget-item .top-comment .tc-item .tc-content p {
	color: #131313;
}

.widget-item .latest-blog .lb-item .lb-content .lb-author {
	color: #737373;
}

.widget-item .top-comment .tc-item .tc-content {
	padding-right: 20px;
}

.widget-item .review-item {
	background: #eff2f5;
}

.widget-item .review-item .review-text {
	padding: 0 35px 20px;
}

.search-widget {
	position: relative;
}

.search-widget input {
	width: 100%;
	height: 41px;
	border: 1px solid #d6dee7;
	padding-left: 22px;
	padding-right: 45px;
	font-size: 12px;
}

.search-widget button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background: none;
	border: none;
	padding-right: 15px;
	color: #878787;
	cursor: pointer;
}

/*-----------------
  Categories page
--------------------*/

.recent-game-page .recent-game-item {
	margin-bottom: 42px;
}

/*-----------------
  Single blog page
--------------------*/

.single-blog-page .blog-thumb {
	height: 424px;
	padding-top: 24px;
	padding-left: 29px;
	margin-bottom: 40px;
	position: relative;
}

.single-blog-page .blog-thumb .rgi-extra {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 70px;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-star,
.single-blog-page .blog-thumb .rgi-extra .rgi-heart {
	height: 35px;
	width: 35px;
	float: left;
	display: block;
	padding: 6px 8px 0;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-star {
	background: #ffb320;
}

.single-blog-page .blog-thumb .rgi-extra .rgi-heart {
	background: #ff205f;
}

.single-blog-page .blog-content h3 {
	margin-bottom: 10px;
}

.single-blog-page .blog-content .meta-comment {
	display: block;
	font-size: 12px;
	color: #737373;
	margin-bottom: 25px;
}

.single-blog-page .blog-content p {
	margin-bottom: 25px;
}

.comment-warp {
	padding-top: 50px;
}

.comment-title {
	margin-bottom: 45px;
}

.comment-list {
	list-style: none;
}

.comment-list li {
	margin-bottom: 40px;
	overflow: hidden;
}

.comment-list .comment .comment-avator {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	float: left;
}

.comment-list .comment .comment-content {
	padding-left: 100px;
}

.comment-list .comment .comment-content h5 {
	font-size: 12px;
	color: #131313;
	font-weight: 400;
	margin-bottom: 10px;
}

.comment-list .comment .comment-content h5 span {
	color: #ffb320;
	padding-left: 18px;
}

.comment-list .comment .comment-content p {
	font-size: 12px;
	margin-bottom: 5px;
}

.comment-list .comment .comment-content .reply {
	font-size: 12px;
	color: #ff1d55;
}

.comment-form-warp {
	padding-top: 30px;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea {
	width: 100%;
	height: 41px;
	border: 1px solid #d6dee7;
	padding-left: 22px;
	padding-right: 45px;
	font-size: 12px;
	margin-bottom: 24px;
}

.comment-form textarea {
	height: 243px;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 38px;
}

/*-----------------
  Review page
--------------------*/

.review-page .review-item {
	margin-bottom: 63px;
}

.review-page .review-item .review-text h4 {
	margin-bottom: 10px;
}

.review-dark .review-item .review-text p {
	color: #b5b5b5;
}

.review-section.review-dark {
	background-position: center top;
}

@media (max-width: 768px) {
  /* Ensure background image is visible */
  .review-section {
    background-size: cover !important; /* Ensure it covers full area */
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  /* Keep all images in a single row */
  .review-section .row {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Smooth scrolling */
    gap: 15px;
    padding-bottom: 15px;
    justify-content: flex-start;
  }

  /* Make game cards uniform */
  .review-item {
    flex: 0 0 auto; /* Ensure fixed width */
    width: 140px; /* Same size for all */
    height: 180px;
    scroll-snap-align: start;
    border-radius: 10px; /* Rounded corners */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  /* Make sure images are properly aligned */
  .review-cover {
    width: 100%;
    height: 140px; /* Same height for all */
    background-size: cover !important; /* Ensure full image visibility */
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .review-item:hover .review-cover {
    transform: scale(1.05);
  }

  /* Stylish Game Name */
  .review-text {
    width: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark background for clear visibility */
    color: #ffcc00; /* Bright golden text */
    font-size: 14px; /* Adjusted for readability */
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
    border-radius: 0 0 10px 10px; /* Rounded bottom corners */
    transition: background 0.3s ease, transform 0.3s ease;
    letter-spacing: 1px; /* Spacing for better style */
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.7), 0 0 5px rgba(255, 255, 255, 0.5); /* Glow effect */
  }

  .review-item:hover .review-text {
    background: #ff7a18; /* Bright effect on hover */
    transform: translateY(-3px);
    color: #fff;
  }
}


/*-----------------
  Community page
--------------------*/

.community-page .site-pagination {
	padding-top: 62px;
}

.community-warp {
	max-width: 1367px;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0.28);
}

.community-post-list {
	list-style: none;
}

.community-post-list li {
	padding: 33px 55px 65px;
	margin-bottom: 21px;
	overflow: hidden;
	border: 1px solid #878787;
	background: #1f2225;
}

.community-post-list .community-post .author-avator {
	width: 63px;
	height: 63px;
	border-radius: 50%;
	float: left;
}

.community-post-list .community-post .post-content {
	padding-left: 100px;
}

.community-post-list .community-post .post-content h5 {
	font-size: 16px;
	color: #ff205f;
	font-weight: 400;
	margin-bottom: 10px;
}

.community-post-list .community-post .post-content h5 span {
	color: #7a7a7a;
	padding-left: 18px;
}

.community-post-list .community-post .post-content p {
	color: #fff;
	margin-bottom: 5px;
}

.community-post-list .community-post .post-content .post-date {
	font-size: 12px;
	color: #ffb320;
	margin-bottom: 18px;
}

.community-post-list .attachment-file {
	padding-top: 60px;
	max-width: 435px;
}

.community-top-title {
	margin-bottom: 50px;
}

.community-filter {
	margin-bottom: 80px;
}

.community-filter label {
	font-size: 18px;
	color: #1f2225;
	font-weight: 500;
	padding-right: 10px;
}

.community-filter select {
	width: 201px;
	height: 42px;
	font-size: 14px;
	padding: 0 18px;
	color: #1f2225;
	font-weight: 500;
}

/*-----------------
  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 a {
	color: #474747;
	font-size: 16px;
	margin-left: 10px;
	margin-right: 20px;
}

/*------------------
  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: 90px;
	}
	.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;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.site-logo {
		max-width: 130px;
	}
	.main-menu {
		margin-right: 25px;
	}
	.main-menu ul li a {
		margin-left: 15px;
	}
	.user-panel {
		padding: 8px 15px;
	}
	.hero-slider .hs-text h2 {
		font-size: 50px;
	}
	.hero-slider .owl-dots {
		max-width: 690px;
	}
	.recent-game-item {
		margin-bottom: 42px;
	}
	.tournament-item .ti-thumb {
		width: 100%;
		height: 230px;
		float: none;
	}
	.tournament-item .ti-text {
		padding-left: 0;
		padding-top: 20px;
	}
	.review-section {
		background-position: left top;
	}
	.review-item {
		margin-bottom: 63px;
	}
	.footer-logo {
		margin-bottom: 50px;
	}
	.latest-blog .lb-item .lb-thumb {
		width: 80px;
		height: 80px;
	}
	.latest-blog .lb-item .lb-content {
		padding-left: 95px;
	}
	.footer-top-bg {
		display: none;
	}
}

/* Large Mobile :480px. */


@media only screen and (max-width: 767px) {
	.header-section {
		overflow: visible;
		padding: 23px 0;
	}
	.header-section .container {
		position: relative;
	}
	.site-logo {
		float: none;
		padding-top: 0;
	}
	.main-menu {
		display: none;
		position: absolute;
		top: calc(100% + 24px);
		left: 0;
		width: 100%;
		background: #ffffff;
		z-index: 999;
	}
	.main-menu ul li {
		display: block;
		border-bottom: 1px solid #ececec;
	}
	.main-menu ul li a {
		margin-left: 0;
		color: #131313;
		padding: 13px 26px;
	}
	.nav-switch {
		color: #fff;
		display: block;
		float: right;
		cursor: pointer;
		font-size: 25px;
	}
	.user-panel {
		display: none;
	}
	.hero-slider .hs-item {
		height: 700px;
	}
	.hero-slider .hs-text h2 {
		font-size: 36px;
	}
	.hero-slider .owl-dots {
		max-width: 510px;
	}
	.ln-title {
		padding-right: 30px;
	}
	.feature-item {
		margin-bottom: 30px;
	}
	.recent-game-item {
		margin-bottom: 42px;
	}
	.review-section {
		background-position: left top;
	}
	.review-item {
		margin-bottom: 63px;
	}
	.footer-logo {
		margin-bottom: 50px;
	}
	.footer-top-bg {
		display: none;
	}
	.footer-section {
		padding: 30px 0 20px;
		text-align: center;
	}
	.footer-menu li:first-child a {
		margin-left: 0;
	}
	.footer-menu,
	.copyright {
		float: none;
	}
	.copyright {
		padding-top: 15px;
	}
	.community-post-list li {
		padding: 30px 25px 30px;
	}
	.page-info-section .pi-content h2 {
		font-size: 50px;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hero-slider .hs-item {
		height: auto;
		padding: 150px 0;
	}
	.ln-title {
		display: none;
	}
	.news-ticker {
		width: 100%;
	}
	.tournament-item .ti-thumb {
		width: 100%;
		height: 230px;
		float: none;
	}
	.tournament-item .ti-text {
		padding-left: 0;
		padding-top: 20px;
	}
	.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: 85px;
	}
	.site-btn {
		padding: 11px 30px;
		min-width: 145px;
	}
	.comment-list .comment .comment-avator {
		float: none;
	}
	.comment-list .comment .comment-content {
		padding-left: 0;
		padding-top: 20px;
	}
	.footer-widget {
		padding: 40px 15px 7px;
	}
	.page-info-section .pi-content h2 {
		font-size: 40px;
	}
}


/* Mobile view Css */


/* -----------------------
   Phase 1: Fix Unwanted Scrolling (No Design Changes)
----------------------- */

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
}




