/* ===================================
--------------------------------------
  TheQuest - Gaming Magazine Template
  Version: 1.0
--------------------------------------
======================================*/


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

html,
body {
	height: 100%;
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

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

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 16px;
	color: #8c8c8c;
	line-height: 1.8;
}

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 h2 {
	font-size: 36px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

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

.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;
}

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

/* buttons */

.site-btn {
	display: inline-block;
	border: none;
	font-size: 14px;
	font-weight: 600;
	min-width: 164px;
	padding: 21px 47px;
	border-radius: 50px;
	text-transform: uppercase;
	background: #10ddb4;
	color: #161616;
	line-height: 1;
	cursor: pointer;
	text-align: center;
}

.site-btn:hover {
	color: #161616;
}

.site-btn.sb-color {
	background: #ff1f56;
	color: #fff;
}

.site-btn.sb-color:hover {
	color: #fff;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-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;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

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

.header-section {
	position: relative;
	width: 100%;
	left: 0;
	top: 0;
	background: #1c1c1c;
	z-index: 999;
}

.site-logo {
	display: inline-block;
	padding: 21px 55px 20px;
	background: #222222;
}

.logo-text {
	display: inline-block;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1;
}

.main-menu {
	display: inline-block;
	padding-left: 44px;
	position: relative;
	z-index: 99;
}

.main-menu li {
	display: inline-block;
}

.main-menu li a {
	position: relative;
	display: block;
	padding: 44px 7px;
	margin-right: 55px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
}

.main-menu li a:after {
	position: absolute;
	content: "";
	width: 0;
	height: 3px;
	left: 0;
	bottom: 0;
	background: #10ddb4;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.main-menu li a:hover:after {
	width: 100%;
}




.header-add {
	position: absolute;
	right: 0;
	top: 0;
	width: 43%;
	height: 100%;
	text-align: right;
}

.header-add img {
	height: 100%;
}

/*------------------
   Hero-section
 ---------------------*/

.section-header {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.section-title {
	font-size: 48px;
	font-weight: 800;
	color: #10ddb4 !important;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 0;
	position: relative;
	display: inline-block;
}

.section-title span {
	background: linear-gradient(135deg, #10ddb4 0%, #0aa886 50%, #10ddb4 100%);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientFlow 4s ease-in-out infinite alternate;
}

@keyframes gradientFlow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@-webkit-keyframes gradientFlow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #10ddb4, #0aa886);
	border-radius: 2px;
}

.section-line {
	height: 1px;
	background: linear-gradient(90deg, transparent, #10ddb4, transparent);
	margin-top: 20px;
	width: 100%;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.blog-section {
	padding-top: 20px;
}

.hero-item {
	height: 804px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	position: relative;
	padding-top: 140px;
}

.hero-item:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #0d0d11;
	opacity: 0.74;
	z-index: 1;
}

.hero-item .container {
	position: relative;
	z-index: 9;
}

.hero-item h2 {
	font-size: 96px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.hero-item p {
	font-size: 20px;
	margin-bottom: 35px;
}

.hero-item .site-btn,
.hero-item p,
.hero-item h2 {
	position: relative;
	top: 50px;
	opacity: 0;
}

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

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

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

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

.slider-progress-bar {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}

.slider-progress-bar .progress {
	height: 4px;
	background: #10ddb4;
	-webkit-animation: sliderProgressBar ease;
	animation: sliderProgressBar ease;
}

.my-slider:hover .slider-progress-bar .progress {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}

@-webkit-keyframes sliderProgressBar {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

@keyframes sliderProgressBar {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}

/*------------------
   Blog-section
 ---------------------*/

.blog-section {
	background: #1c1c1c;
}

.blog-section .blog-posts {
	margin-bottom: -70px;
}

.blog-post {
	margin-bottom: 70px;
}

.blog-post img {
	margin-bottom: 34px;
	min-width: 100%;
}

.blog-post .post-date {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	padding: 3px 16px;
	margin-bottom: 25px;
	background: #10ddb4;
}

.blog-post h3 {
	color: #fff;
	margin-bottom: 10px;
}

.blog-post h4 {
	color: #fff;
	margin-bottom: 10px;
}

.blog-post .post-metas {
	margin-bottom: 30px;
}

.blog-post .post-metas .post-meta {
	position: relative;
	display: inline-block;
	color: #8c8c8c;
	font-size: 14px;
	padding-right: 15px;
	margin-right: 14px;
	margin-bottom: 5px;
}

.blog-post .post-metas .post-meta:after {
	position: absolute;
	content: "|";
	right: 0;
	top: 0;
	color: #8c8c8c;
	font-size: 14px;
}

.blog-post .post-metas .post-meta:last-child {
	margin-right: 0;
	padding-right: 0;
}

.blog-post .post-metas .post-meta:last-child:after {
	display: none;
}

.blog-post .post-metas a {
	color: #ffea00;
}

.blog-post .read-more {
	font-size: 14px;
	font-weight: 700;
	color: #10ddb4;
}

.blog-post.featured-post,
.blog-post.review-post,
.blog-post.single-post {
	margin-bottom: 80px;
}

.blog-post.featured-post p,
.blog-post.review-post p,
.blog-post.single-post p {
	margin-bottom: 40px;
}

.blog-post.featured-post .post-metas a,
.blog-post.review-post .post-metas a,
.blog-post.single-post .post-metas a {
	color: #10ddb4;
}

.blog-post.review-post .post-metas {
	margin-bottom: 5px;
}

.blog-post.review-post .rating {
	font-size: 17px;
	color: #ffd200;
	margin-bottom: 30px;
}

.blog-post.review-post .rating i {
	display: inline-block;
	margin-right: 4px;
}

.sb-widget {
	margin-bottom: 75px;
}

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

.sb-widget .sb-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 60px;
}

.sb-widget .sb-search input {
	width: 100%;
	height: 53px;
	font-size: 14px;
	font-style: italic;
	padding: 0 32px;
	border: none;
	border-bottom: 3px solid #10ddb4;
}

.sb-cata-list {
	list-style: none;
}

.sb-cata-list li {
	display: block;
	overflow: hidden;
	margin-bottom: 13px;
}

.sb-cata-list li a {
	display: block;
	color: #8c8c8c;
	font-size: 16px;
}

.sb-cata-list li span {
	float: right;
	display: inline-block;
	min-width: 25px;
	height: 25px;
	font-size: 11px;
	color: #1c1c1c;
	border-radius: 35px;
	background: #fff;
	text-align: center;
	padding: 5px 5px 0;
}

.sb-cata-list li:nth-child(1) span {
	background: #10ddb4;
}

.sb-cata-list li:nth-child(2) span {
	background: #ff1980;
}

.sb-cata-list li:nth-child(3) span {
	background: #ffe119;
}

.sb-cata-list li:nth-child(4) span {
	background: #5da9e4;
}

.sb-cata-list li:nth-child(5) span {
	background: #bd9bd2;
}

.sb-cata-list li:nth-child(6) span {
	background: #f89843;
}

.sb-cata-list li:last-child a {
	margin-bottom: 0;
}

.latest-news-widget .ln-item {
	margin-bottom: 29px;
	position: relative;
}

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

.latest-news-widget .ln-item img {
	width: 85px;
	height: 85px;
	float: left;
	margin-right: 27px;
}

.latest-news-widget .ln-text {
	overflow: hidden;
}

.latest-news-widget .ln-text .ln-date {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	padding: 1px 5px;
	margin-bottom: 10px;
	background: #10ddb4;
}

.latest-news-widget .ln-text h6 {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 5px;
}

.latest-news-widget .ln-text .ln-metas .ln-meta {
	position: relative;
	display: inline-block;
	color: #8c8c8c;
	font-size: 12px;
	padding-right: 13px;
	margin-right: 10px;
	margin-bottom: 5px;
}

.latest-news-widget .ln-text .ln-metas .ln-meta:after {
	position: absolute;
	content: "|";
	right: 0;
	top: 0;
	color: #8c8c8c;
	font-size: 14px;
}

.latest-news-widget .ln-text .ln-metas .ln-meta:last-child {
	margin-right: 0;
	padding-right: 0;
}

.latest-news-widget .ln-text .ln-metas .ln-meta:last-child:after {
	display: none;
}

.latest-news-widget .ln-text .ln-metas a {
	color: #ffea00;
}

.latest-news-widget.top-five .ln-index {
	position: absolute;
	left: 19px;
	top: -25px;
	width: 45px;
	height: 45px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	background: #10ddb4;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.latest-news-widget.top-five .ln-item {
	margin-bottom: 59px;
}

.latest-news-widget.top-five .ln-item:nth-child(1) .ln-index {
	background: #ff5581;
}

.latest-news-widget.top-five .ln-item:nth-child(2) .ln-index {
	background: #10ddb4;
}

.latest-news-widget.top-five .ln-item:nth-child(3) .ln-index {
	background: #5da9e4;
}

.latest-news-widget.top-five .ln-item:nth-child(4) .ln-index {
	background: #ffe119;
}

.latest-news-widget.top-five .ln-item:nth-child(5) .ln-index {
	background: #bd9bd2;
}

.latest-news-widget.top-five .ln-item:last-child {
	margin-bottom: 0;
}

.latest-comments-widget .lc-item {
	margin-bottom: 23px;
}

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

.latest-comments-widget .lc-item img {
	float: left;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	margin-right: 24px;
}

.latest-comments-widget .lc-text {
	overflow: hidden;
}

.latest-comments-widget .lc-text h6 {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}

.latest-comments-widget .lc-text span {
	color: #8c8c8c;
	font-size: 14px;
	font-weight: 400;
	display: inline-block;
	padding: 0 5px;
}

.latest-comments-widget .lc-text a {
	color: #10ddb4;
	font-size: 14px;
	font-weight: 400;
}

.latest-comments-widget .lc-date {
	color: #a5a4a4;
	font-weight: 700;
	font-size: 12px;
}

/* ------------------
Blog list section
 ---------------------*/

.blog-list-section {
	background: #222222;
}

.small-blog-list .sb-item {
	margin-bottom: 43px;
	position: relative;
}

.small-blog-list .sb-item:last-child {
	margin-bottom: 0;
}

.small-blog-list .sb-item img {
	width: 166px;
	float: left;
	margin-right: 27px;
}

.small-blog-list .sb-text {
	overflow: hidden;
}

.small-blog-list .sb-text .sb-date {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	padding: 1px 10px;
	margin-bottom: 10px;
	background: #10ddb4;
}

.small-blog-list .sb-text h6 {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 5px;
}

.small-blog-list .sb-text .sb-metas {
	margin-bottom: 10px;
}

.small-blog-list .sb-text .sb-metas .sb-meta {
	position: relative;
	display: inline-block;
	color: #8c8c8c;
	font-size: 12px;
	padding-right: 13px;
	margin-right: 10px;
	margin-bottom: 5px;
}

.small-blog-list .sb-text .sb-metas .sb-meta:after {
	position: absolute;
	content: "|";
	right: 0;
	top: 0;
	color: #8c8c8c;
	font-size: 14px;
}

.small-blog-list .sb-text .sb-metas .sb-meta:last-child {
	margin-right: 0;
	padding-right: 0;
}

.small-blog-list .sb-text .sb-metas .sb-meta:last-child:after {
	display: none;
}

.small-blog-list .sb-text .sb-metas a {
	color: #ffea00;
}

.small-blog-list .sb-text p {
	margin-bottom: 0;
}

/* ----------------
Video section
 ---------------------*/

.video-section {
	padding: 70px 0;
	background: #2d2d2d;
	text-align: center;
}

.video-logo {
	margin-bottom: 40px;
}

.video-logo p {
	padding-top: 10px;
	margin-bottom: 0;
}

.video-popup-warp {
	position: relative;
}

.video-popup-warp .video-play {
	display: block;
	position: absolute;
	width: 100px;
	height: 56px;
	padding-top: 9px;
	border-radius: 50px;
	top: calc(50% - 28px);
	left: calc(50% - 50px);
	font-size: 26px;
	color: #fff;
	background: #ff2260;
}

/* ----------------
Footer section
 ---------------------*/

.footer-section {
	background: #000000;
	padding-top: 73px;
}

.footer-widget {
	margin-bottom: 40px;
}

.footer-widget .fw-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	padding-top: 42px;
	margin-bottom: 44px;
}

.footer-widget .about-widget img {
	margin-bottom: 40px;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget ul li {
	display: block;
}

.footer-widget ul li a {
	display: inline-block;
	color: #8c8c8c;
	font-size: 16px;
	margin-bottom: 10px;
}

.footer-widget.fw-latest-post .fw-title {
	margin-bottom: 25px;
}

.copyright {
	color: #8c8c8c;
	font-size: 16px;
	padding: 35px 0 30px;
}

.copyright a {
	color: #8c8c8c;
}

.copyright a:hover {
	color: #10ddb4;
}

.copyright i {
	color: #a51111;
}

.social-links-warp {
	border-top: 1px solid #363636;
	padding: 45px 0;
}

.social-links a {
	margin-right: 104px;
	display: inline-block;
}

.social-links a:last-child {
	margin-right: 0;
}

.social-links a i {
	font-size: 30px;
	color: #d7d7d7;
	float: left;
	margin-right: 19px;
	overflow: hidden;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.social-links a span {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #9f9fa0;
	padding-top: 10px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.social-links a:hover i {
	color: #10ddb4;
}

/* ----------------
Other pages
 ---------------------*/

.page-top-section {
	height: 423px;
	position: relative;
	padding-top: 210px;
	text-align: center;
}

.page-top-section:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #0d0d11;
	opacity: 0.74;
	z-index: 1;
}

.page-top-section .container {
	position: relative;
	z-index: 99;
}

.page-top-section h2 {
	position: relative;
	font-size: 72px;
	color: #fff;
	padding-bottom: 10px;
}

.page-top-section h2:after {
	position: absolute;
	content: "";
	width: 70px;
	height: 4px;
	bottom: 0;
	left: calc(50% - 35px);
	background: #10ddb4;
}

.site-pagination a {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	font-weight: 500;
}

.site-pagination a.sp-next,
.site-pagination a.sp-prev {
	color: #8c8c8c;
	margin-right: 10px;
}

.site-pagination a.sp-next {
	margin-right: 0;
	margin-left: 10px;
}

.site-pagination a.active {
	color: #10ddb4;
}

/* ----------------
Single Post page
 ---------------------*/

.blog-post.single-post {
	margin-bottom: 0;
}

.blog-post.single-post p {
	margin-bottom: 30px;
}

.comments {
	padding-top: 50px;
}

.comments h5 {
	color: #fff;
	margin-bottom: 45px;
}

.comments-list {
	list-style: none;
	padding-top: 25px;
	padding-bottom: 25px;
}

.comments-list li {
	margin-bottom: 40px;
}

.comments-list img {
	float: left;
	margin-right: 28px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	min-width: auto;
}

.comments-list .comment-text {
	overflow: hidden;
}

.comments-list .comment-text h6 {
	color: #fff;
	font-weight: 500;
	margin-bottom: 5px;
}

.comments-list .comment-text .reply {
	padding-left: 7px;
	font-size: 14px;
	color: #10ddb4;
}

.comments-list .comment-text .comment-date {
	font-size: 12px;
	font-weight: 700;
	color: #a5a4a4;
	margin-bottom: 15px;
}

.comments-list .comment-text p {
	margin-bottom: 0;
}

.comment-form input,
.comment-form textarea {
	width: 100%;
	height: 53px;
	padding: 0 34px;
	margin-bottom: 34px;
	font-size: 14px;
	font-style: italic;
	color: #242424;
	border: none;
	border-bottom: 3px solid transparent;
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-bottom-color: #10ddb4;
}

.comment-form textarea {
	height: 240px;
	resize: none;
	padding: 20px 34px 15px;
	margin-bottom: 31px;
}

/* ----------------
Responsive
 ---------------------*/

.characters-section {
	padding: 144px 0 118px;
	overflow: hidden;
	position: relative;
}

.character-info img {
	margin-bottom: 3px;
}

.character-info h2 {
	font-size: 48px;
	color: #fff;
	margin-bottom: 15px;
}

.character-info h5 {
	color: #fff;
	margin-bottom: 9px;
}

.character-info p {
	padding-top: 30px;
	margin-bottom: 40px;
}

.circle-progress {
	text-align: center;
	display: block;
	position: relative;
	margin-bottom: 5px;
}

.circle-progress canvas {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.circle-progress .progress-value {
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -12px;
}

.cp-item {
	display: inline-block;
	text-align: center;
	margin-right: 50px;
	margin-left: 10px;
	margin-bottom: 40px;
}

.cp-item h3 {
	font-size: 14px;
	font-weight: 400;
	color: #10ddb4;
}

.cp-item h4 {
	font-size: 14px;
	font-weight: 400;
	color: #8c8c8c;
}

.character-img {
	position: absolute;
}

.character-one {
	background: #1c1c1c;
}

.character-one .character-img {
	bottom: -180px;
	right: 0;
	width: 42%;
	text-align: right;
}

.character-two {
	background: #2d2d2d;
}

.character-two .character-img {
	bottom: -285px;
	left: 0;
	width: 68%;
}

.character-three {
	background: #000;
	background: #1c1c1c;
}

.character-three .character-img {
	bottom: 0;
	right: 0;
	width: 50%;
	text-align: right;
}

.character-four {
	background: #2d2d2d;
}

.character-four .character-img {
	bottom: -145px;
	left: 0;
	width: 50%;
}

.banner-section {
	padding: 90px 0 80px;
}

.banner-text {
	max-width: 550px;
	text-align: center;
}

.banner-text .banner-logo {
	margin-bottom: 38px;
}

.banner-text .banner-logo h6 {
	margin-bottom: 25px;
}

.banner-text p {
	margin-bottom: 45px;
}

/* ------------
Game Page
 ---------------*/

.game-section {
	background: #1c1c1c;
	padding: 118px 0 60px;
	overflow: hidden;
}

.game-title {
	margin-bottom: 75px;
}

.game-title h2 {
	font-size: 48px;
	color: #fff;
	padding-top: 5px;
}

.about-game .rating {
	font-size: 17px;
	color: #ffd200;
	margin-bottom: 30px;
	padding-top: 5px;
}

.about-game .rating i {
	display: inline-block;
	margin-right: 4px;
}

.about-game p {
	margin-bottom: 70px;
}

.about-game-img {
	text-align: center;
	width: 570px;
	position: relative;
	top: -30px;
}

.characters-boxes-section {
	background: #000000;
	padding: 113px 0 90px;
}

.characters-box {
	margin-bottom: 30px;
}

.characters-box img {
	margin-bottom: 35px;
	min-width: 100%;
}

.characters-box h4 {
	color: #fff;
	margin-bottom: 20px;
}

.characters-box p {
	margin-bottom: 25px;
}

.characters-box .rm {
	color: #10ddb4;
	font-size: 16px;
	font-weight: 700;
	font-style: italic;
}

.work-steps-section {
	background: #1c1c1c;
	padding: 118px 0 120px;
	overflow: hidden;
}

.work-steps {
	position: relative;
}

.work-steps:after {
	position: absolute;
	content: "";
	max-width: 1127px;
	width: 100%;
	height: 152px;
	left: 25px;
	top: 25px;
	background-image: url("../img/work-line.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.work-step-box {
	text-align: center;
	padding-top: 40px;
	position: relative;
	z-index: 2;
}

.work-step-box .ws-icon {
	width: 147px;
	height: 147px;
	margin: 0 auto 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #000;
	border: 2px solid #10ddb4;
	border-radius: 50%;
}

.work-step-box h4 {
	color: #fff;
	margin-bottom: 25px;
}

.work-step-box p {
	margin-bottom: 35px;
}

.work-step-box ul {
	list-style: none;
}

.work-step-box ul li {
	font-size: 16px;
	color: rgba(140, 140, 140, 0.5);
	margin-bottom: 15px;
}

.work-step-box ul li img {
	margin-right: 12px;
}

.testimonials-section {
	padding: 125px 0;
	background: #222222;
	overflow: hidden;
}

.testimonial-slider {
	margin: 0 -39px;
	width: auto;
}

.testimonial-slider .owl-dots {
	position: absolute;
	right: 35px;
	bottom: 20px;
}

.testimonial-slider .owl-dots .owl-dot {
	width: 9px;
	height: 9px;
	background: #7a7e7d;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-right: 11px;
}

.testimonial-slider .owl-dots .owl-dot:last-child {
	margin-right: 0;
}

.testimonial-slider .owl-dots .owl-dot.active {
	background: #10ddb4;
}

.owl-item.active .testimonial-info {
	opacity: 1;
	padding-left: 39px;
	-webkit-transition: all 0.4s ease 0.6s;
	transition: all 0.4s ease 0.6s;
}

.testimonial-text {
	background: #fff;
	padding: 48px 115px 55px 78px;
	margin-bottom: 41px;
	position: relative;
}

.testimonial-text:after {
	position: absolute;
	content: "";
	left: 46px;
	bottom: -2px;
	width: 50px;
	height: 45px;
	background: #fff;
	-webkit-transform: rotate(50deg) skew(10deg);
	transform: rotate(50deg) skew(10deg);
}

.testimonial-text .test-date {
	display: inline-block;
	width: 143px;
	height: 37px;
	padding-top: 8px;
	margin-bottom: 45px;
	margin-left: -10px;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	border-radius: 50px;
	background: #10ddb4;
}

.testimonial-text h4 {
	margin-bottom: 20px;
}

.testimonial-text p {
	margin-bottom: 0;
}

.testimonial-info {
	padding-left: 59px;
	opacity: 0;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.testimonial-info img {
	float: left;
	width: 68px !important;
	height: 68px;
	margin-right: 17px;
	border: 2px solid #10ddb4;
	border-radius: 50%;
}

.testimonial-info .ti-text {
	padding-top: 20px;
}

.testimonial-info h5 {
	color: #10ddb4;
	font-style: italic;
	line-height: 1;
}

/* ----------------
Responsive
 ---------------------*/

@media (min-width: 1200px) {
	.container {
		max-width: 1176px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1360px) {
	.main-menu li a {
		margin-right: 30px;
	}
	.header-add {
		width: 35%;
	}
	.character-two .character-img {
		bottom: -100px;
	}
	.character-three .character-img {
		width: 40%;
	}
	.character-one .character-img,
	.character-four .character-img {
		bottom: 0;
	}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.main-menu {
		padding-left: 15px;
	}
	.main-menu li a {
		margin-right: 15px;
	}
	.header-add {
		width: 35%;
	}
	.social-links a {
		margin-right: 60px;
	}
	.character-one .character-img,
	.character-two .character-img,
	.character-four .character-img {
		bottom: 0;
	}
	.character-three .character-img {
		width: 44%;
	}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.site-logo {
		padding: 21px 10px;
	}
	.main-menu {
		padding-left: 15px;
	}
	.main-menu li a {
		margin-right: 15px;
	}
	.header-add {
		display: none;
	}
	.hero-item h2 {
		font-size: 70px;
	}
	.section-title {
		font-size: 38px;
	}
	.blog-section .blog-posts {
		margin-bottom: 0;
	}
	.small-blog-list,
	.site-pagination {
		margin-bottom: 70px;
	}
	.sb-cata-list {
		width: 360px;
	}
	.social-links a {
		margin-right: 12px;
	}
	.about-game-img {
		width: auto;
		top: 0;
		padding-top: 50px;
	}
	.work-steps:after {
		left: 0px;
		top: 55px;
	}
	.work-step-box h4 {
		font-size: 18px;
	}
	.characters-section {
		padding-bottom: 0;
	}
	.character-one .character-img,
	.character-two .character-img,
	.character-three .character-img,
	.character-four .character-img {
		position: relative;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		width: 100%;
		padding-top: 70px;
	}
	.blog-post.single-post {
		margin-bottom: 70px;
	}
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
	.site-logo {
		padding: 0;
		font-size: 18px;
	}
	.header-section {
		padding: 15px;
		min-height: 60px;
	}
	.hero-item h2 {
		font-size: 70px;
	}
	.section-title {
		font-size: 36px;
		letter-spacing: 2px;
	}
	.section-title::after {
		width: 60px;
		bottom: -12px;
	}
	.blog-section .blog-posts {
		margin-bottom: 0;
	}
	.small-blog-list,
	.site-pagination {
		margin-bottom: 70px;
	}
	.copyright {
		text-align: center;
	}
	.social-links {
		text-align: center;
	}
	.social-links a {
		margin-right: 20px;
	}
	.social-links a i {
		margin-right: 0;
	}
	.social-links a span {
		display: none;
	}
	.page-top-section h2 {
		font-size: 55px;
	}
	.about-game-img {
		width: auto;
		top: 0;
		padding-top: 50px;
	}
	.work-steps:after {
		display: none;
	}
	.testimonial-slider {
		margin: 0;
	}
	.testimonial-text {
		padding: 48px 40px 55px;
	}
	.characters-section {
		padding-bottom: 0;
	}
	.character-one .character-img,
	.character-two .character-img,
	.character-three .character-img,
	.character-four .character-img {
		position: relative;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		width: 100%;
		padding-top: 70px;
	}
	.blog-post.single-post {
		margin-bottom: 70px;
	}
}

/* Small Mobile :320px. */

@media only screen and (max-width: 479px) {
	.hero-item h2 {
		font-size: 50px;
	}
	.section-title {
		font-size: 32px;
		letter-spacing: 2px;
	}
	.small-blog-list .sb-item {
		margin-bottom: 30px;
	}

	.small-blog-list .sb-item img {
		float: none;
		width: 100%;
		height: auto;
		margin-bottom: 15px;
		margin-right: 0;
	}

	.small-blog-list .sb-text {
		overflow: visible;
	}

	.small-blog-list .sb-text h2 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.small-blog-list .sb-text .sb-metas {
		margin-bottom: 10px;
	}

	.comments-list img {
		float: none;
		margin-bottom: 15px;
	}
	.page-top-section h2 {
		font-size: 45px;
	}
	.testimonial-slider .owl-dots {
		position: relative;
		bottom: 0;
		right: 0;
		padding-left: 46px;
	}
	.game-title h2 {
		font-size: 36px;
	}
}

/* --------------------------------------
   Empty State Styles
-------------------------------------- */

.empty-state {
	text-align: center;
	padding: 80px 20px;
}

.empty-state .empty-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #10ddb4;
}

.empty-state .empty-title {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.empty-state .empty-description {
	font-size: 16px;
	color: #8c8c8c;
	line-height: 1.8;
	max-width: 500px;
	margin: 0 auto 30px;
}

.empty-state .site-btn {
	margin: 0 auto;
}

@media (max-width: 767px) {
	.empty-state {
		padding: 60px 15px;
	}

	.empty-state .empty-title {
		font-size: 24px;
	}

	.empty-state .empty-description {
		font-size: 14px;
	}

	.empty-state .empty-icon {
		width: 60px;
		height: 60px;
	}

	.empty-state .empty-icon svg {
		width: 60px;
		height: 60px;
	}
}

/* --------------------------------------
   Detail Page Section Titles
-------------------------------------- */

.section-subtitle {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin: 40px 0 20px;
	position: relative;
	padding-left: 15px;
}

.section-subtitle.reviews-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 32px;
	background: #10ddb4;
	border-radius: 2px;
}

.section-subtitle.about-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 32px;
	background: #fbbf24;
	border-radius: 2px;
}

@media (max-width: 767px) {
	.section-subtitle {
		font-size: 26px;
		margin: 30px 0 15px;
		padding-left: 12px;
	}

	.section-subtitle::before {
		height: 26px;
	}
}

/* ===== Nav Auth Buttons ===== */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-auth-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-auth-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn-register {
    background: linear-gradient(135deg, #6c5ce7, #5a4bd1);
    color: #fff;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108,92,231,0.4);
}

/* ===== Nav User (Logged In) ===== */
.nav-user {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 22px;
    transition: background 0.3s ease;
    user-select: none;
}

.nav-user:hover {
    background: rgba(16, 221, 180, 0.12);
}

.nav-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10ddb4, #0ab89a);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.nav-user-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-user-arrow {
    color: rgba(255,255,255,0.6);
    font-size: 10px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dropdown-open .nav-user-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-user-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #252525;
    border: 1px solid #353535;
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    z-index: 1001;
    overflow: hidden;
}

.dropdown-open .nav-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 16px;
    color: #bdb9b9;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background: rgba(16, 221, 180, 0.12);
    color: #10ddb4;
}

.nav-dropdown-item:last-child:hover {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

@media (max-width: 768px) {
    .nav-auth {
        margin-left: 0;
        margin-right: 60px;
        gap: 6px;
    }
    .nav-auth-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    .nav-user-name {
        max-width: 80px;
        font-size: 12px;
    }
    .nav-user-dropdown {
        min-width: 130px;
        right: -8px;
    }
}

/* ===== Login Modal Styles ===== */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.auth-modal {
    background: #252525;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 9999;
    border: 1px solid #353535;
}

.auth-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: color 0.3s ease;
}

.auth-modal-close:hover {
    color: #10ddb4;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-header h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.auth-header p {
    color: #bdb9b9;
    font-size: 0.85rem;
}

.auth-tabs {
    display: flex;
    border-bottom: 2px solid #353535;
    margin-bottom: 1.5rem;
}

.auth-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    text-align: center;
    cursor: pointer;
    color: #bdb9b9;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 0.9rem;
}

.auth-tab:hover {
    color: #10ddb4;
}

.auth-tab.active {
    color: #10ddb4;
    border-bottom-color: #10ddb4;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: #bdb9b9;
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid #353535;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #1c1c1c;
    color: #fff;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #10ddb4;
    box-shadow: 0 0 0 3px rgba(16, 221, 180, 0.15);
}

.form-group input::placeholder {
    color: #666;
}

.form-group .error-text {
    color: #e74c3c;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.has-error input {
    border-color: #e74c3c;
}

.form-group.has-error .error-text {
    display: block;
}

.btn-auth {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: #10ddb4;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-auth:hover {
    background: #0ec89f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 221, 180, 0.4);
}

.btn-auth:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-auth.loading {
    position: relative;
    color: transparent;
}

.btn-auth.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin-left: -9px;
    margin-top: -9px;
    border: 2px solid rgba(0,0,0,0.3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.auth-footer {
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #353535;
}

.auth-footer p {
    color: #bdb9b9;
    font-size: 0.85rem;
}

.auth-footer a {
    color: #10ddb4;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.alert-box {
    padding: 0.7rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    display: none;
}

.alert-box.show {
    display: block;
}

.alert-box.success {
    background: rgba(16, 221, 180, 0.1);
    color: #10ddb4;
    border: 1px solid #10ddb4;
}

.alert-box.error {
    background: rgba(231,76,60,0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.password-toggle {
    position: relative;
}

.password-toggle input {
    padding-right: 2.5rem;
}

.password-toggle .toggle-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 1rem;
    user-select: none;
    transition: color 0.3s;
}

.password-toggle .toggle-icon:hover {
    color: #10ddb4;
}

/* 移动端登录弹框适配 */
@media (max-width: 767px) {
    .auth-overlay {
        padding: 15px;
        align-items: flex-start;
        padding-top: 60px;
    }

    .auth-modal {
        padding: 1.5rem;
        max-width: 100%;
        border-radius: 10px;
    }

    .auth-header h2 {
        font-size: 1.3rem;
    }

    .form-group input {
        padding: 0.65rem 0.8rem;
        font-size: 16px; /* 防止 iOS 缩放 */
    }

    .btn-auth {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
    }
}


/* ===== Comments Section ===== */
.comments-section {
    width: 100%;
    box-sizing: border-box;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.comments-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin: 0;
}

.comments-count {
    color: #636e72;
    font-size: 0.85rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-item {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #5a4bd1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-author {
    font-weight: 500;
    color: #2d3436;
}

.comment-date {
    font-size: 0.75rem;
    color: #636e72;
}

.comment-star {
    margin-left: auto;
    font-size: 13px;
    color: #f39c12;
}

.comment-content {
    color: #2d3436;
    line-height: 1.6;
    font-size: 0.9rem;
}

.comments-empty {
    text-align: center;
    padding: 40px;
    color: #636e72;
}

.comments-empty-icon {
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.5;
}

.comments-loading {
    text-align: center;
    padding: 20px;
    color: #636e72;
}

.load-more-comments {
    margin-top: 15px;
    text-align: center;
}

.btn-load-more {
    display: inline-block;
    padding: 8px 20px;
    background: #fff;
    color: #2d3436;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-load-more:hover {
    background: #f0eeff;
}

.btn-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== Comment Form ===== */
.comment-form {
    margin-bottom: 20px;
    padding: 18px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.comment-form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.comment-form-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #5a4bd1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.comment-form-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-form-author {
    font-weight: 500;
    color: #2d3436;
}

.comment-form-rating {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.comment-form-rating label {
    font-size: 0.85rem;
    color: #636e72;
    margin-right: 8px;
}

.rating-star {
    font-size: 20px;
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
    user-select: none;
}

.rating-star:hover,
.rating-star.active {
    color: #f39c12;
}

.comment-form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
    color: #2d3436;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 90px;
    margin-bottom: 12px;
    box-sizing: border-box;
    font-family: inherit;
}

.comment-form-textarea:focus {
    outline: none;
    border-color: #6c5ce7;
}

.comment-form-footer {
    display: flex;
    justify-content: flex-end;
}

.btn-comment-submit {
    padding: 8px 22px;
    background: linear-gradient(135deg, #6c5ce7, #5a4bd1);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-comment-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108,92,231,0.4);
}

.btn-comment-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.comment-login-hint {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
    color: #636e72;
    font-size: 0.85rem;
}

.comment-login-hint a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 500;
}

.comment-login-hint a:hover {
    text-decoration: underline;
}

/* ===== Toast Message ===== */
.toast-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.7rem 1.5rem;
    background: #333;
    color: #fff;
    border-radius: 8px;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85rem;
}

.toast-message.show {
    opacity: 1;
}

.toast-message.success {
    background: #27ae60;
}

.toast-message.error {
    background: #e74c3c;
}

.toast-message.warning {
    background: #f39c12;
}


/* ===== Share buttons & copy modal (theme-adaptive) ===== */
.geme-social-share p {
	color: #10ddb4;
	font-size: 16px;
	font-weight: 600;
	margin: 0 12px 0 0;
}
.geme-social-share a {
	display: -webkit-inline-flex;
	display: -ms-inline-flex;
	display: inline-flex;
	width: 38px;
	height: 38px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(16, 221, 180, .12);
	color: #10ddb4;
	border: 1px solid rgba(16, 221, 180, .3);
	margin-left: 12px;
	font-size: 15px;
	-webkit-transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.geme-social-share a:hover {
	background: #10ddb4;
	color: #1c1c1c;
	border-color: #10ddb4;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(16, 221, 180, .35);
}
.share-copy-modal {
	position: fixed;
	inset: 0;
	background: rgba(8, 8, 16, .85);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 9999;
	padding: 15px;
}
.share-copy-modal.show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.share-copy-box {
	background: #1c1c1c;
	border: 1px solid rgba(16, 221, 180, .35);
	border-radius: 14px;
	max-width: 460px;
	width: 100%;
	padding: 30px 26px 26px;
	position: relative;
	box-shadow: 0 0 40px rgba(16, 221, 180, .2), 0 8px 32px rgba(0, 0, 0, .6);
}
.share-copy-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	color: #8c8c8c;
	cursor: pointer;
	transition: color .3s;
}
.share-copy-close:hover {
	color: #10ddb4;
}
.share-copy-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}
.share-copy-desc {
	margin: 0 0 18px;
	color: #8c8c8c;
	font-size: 14px;
	line-height: 1.5;
}
.share-copy-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
}
.share-copy-input {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	min-width: 0;
	padding: 11px 14px;
	border: 1px solid rgba(16, 221, 180, .3);
	border-radius: 8px;
	font-size: 14px;
	color: #c0c0c0;
	background: rgba(255, 255, 255, .06);
	transition: border-color .3s, box-shadow .3s;
}
.share-copy-input:focus {
	outline: none;
	border-color: #10ddb4;
	box-shadow: 0 0 0 3px rgba(16, 221, 180, .12);
}
.share-copy-btn {
	padding: 11px 20px;
	border: none;
	border-radius: 8px;
	background: #10ddb4;
	color: #1c1c1c;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
	transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.share-copy-btn:hover {
	background: #0ec89f;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(16, 221, 180, .35);
}
.share-copy-status {
	margin: 14px 0 0;
	font-size: 13px;
	color: #10ddb4;
	min-height: 18px;
}

.hero-section{
	min-height: 0!important;
}
