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

/*---------------------------*/
/* Template default CSS
/*---------------------------*/
html {
    scroll-behavior: smooth;
}

html,
body {
	height: 100%;
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

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: #7FD2F0;
	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;
}

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

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	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 {
	background: #131313;
	clear: both;
	overflow: hidden;
	padding: 18px 0;
	border-bottom: 1px solid #7FD2F0;
}

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

.user-panel {
	float: right;
	font-weight: 500;
	background: #7FD2F0;
	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;
}

.main-menu ul li a {
	display: inline-block;
	font-size: 16px;
	color: #fff;
	margin-left: 35px;
	font-weight: 500;
	padding: 10px 5px;
}

.main-menu ul li a:hover {
	color: #7FD2F0;
}

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

.nav-switch {
	display: none;
}

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

.hero-slider .hs-item {
	height: 865px;
	display: table;
	width: 100%;
	position: relative;
}

/* 添加渐变遮罩提升可读性 */
.hero-slider .hs-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.75) 0%,
		rgba(0, 0, 0, 0.4) 40%,
		rgba(0, 0, 0, 0.2) 70%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 1;
}

.hero-slider .hs-text {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	z-index: 2;
}

/* 内容包装器 */
.slider-content-wrapper {
	max-width: 700px;
	padding: 40px;
	background: rgba(15, 23, 42, 0.65);
	backdrop-filter: blur(12px);
	border-radius: 20px;
	border: 1px solid rgba(127, 210, 240, 0.3);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* 标题样式 */
.hero-slider .hs-text h2.animated-title {
	color: #fff;
	font-weight: 600;
	font-size: 56px;
	margin-bottom: 30px;
	position: relative;
	top: -80px;
	opacity: 0;
	text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-slider .hs-text h2.animated-title span {
	color: #7FD2F0;
	text-shadow: 0 0 20px rgba(127, 210, 240, 0.6);
}

/* 描述文字 */
.slider-description {
	color: #e5ecff;
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 30px;
	position: relative;
	top: -90px;
	opacity: 0;
}

/* 状态卡片 */
.status-card {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding: 25px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	margin-bottom: 30px;
	position: relative;
	top: -90px;
	opacity: 0;
}

.status-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.status-label {
	font-size: 14px;
	color: #cbd5e1;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.status-value {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.status-value.running {
	color: #4ade80;
	text-shadow: 0 0 15px rgba(74, 222, 128, 0.6);
}

.status-value.online-count {
	color: #7FD2F0;
}

.status-divider {
	width: 2px;
	height: 50px;
	background: linear-gradient(to bottom, transparent, rgba(127, 210, 240, 0.5), transparent);
}

/* 合作伙伴徽章 */
.partner-badge {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
	position: relative;
	top: -90px;
	opacity: 0;
}

.badge-3rd {
	display: inline-block;
	padding: 12px 24px;
	font-size: 32px;
	font-weight: 900;
	color: #0f172a;
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
	letter-spacing: 2px;
}

.badge-text {
	font-size: 20px;
	font-weight: 600;
	color: #7FD2F0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* 增强按钮 */
.site-btn.btn-enhanced {
	position: relative;
	top: -100px;
	opacity: 0;
	font-size: 18px;
	padding: 18px 40px;
	font-weight: 600;
	background: linear-gradient(135deg, #7FD2F0, #5db6e5);
	box-shadow: 0 8px 25px rgba(127, 210, 240, 0.4);
	transition: all 0.3s ease;
}

.site-btn.btn-enhanced i {
	margin-right: 8px;
}

.site-btn.btn-enhanced:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(127, 210, 240, 0.6);
	background: linear-gradient(135deg, #5db6e5, #3ba8e5);
}

/* 动画效果 */
.hero-slider .owl-item.active .hs-item h2.animated-title,
.hero-slider .owl-item.active .hs-item .slider-description,
.hero-slider .owl-item.active .hs-item .status-card,
.hero-slider .owl-item.active .hs-item .partner-badge,
.hero-slider .owl-item.active .hs-item .site-btn {
	top: 0;
	opacity: 1;
}

.hero-slider .owl-item.active .hs-item h2.animated-title {
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.hero-slider .owl-item.active .hs-item .slider-description,
.hero-slider .owl-item.active .hs-item .status-card,
.hero-slider .owl-item.active .hs-item .partner-badge {
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}

.hero-slider .owl-item.active .hs-item .site-btn {
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s;
}

/* 轮播指示器 */
.hero-slider .owl-dots {
	position: relative;
	max-width: 1146px;
	margin: -33px auto 0;
	top: -67px;
	z-index: 5;
}

.hero-slider .owl-dots .owl-dot {
	display: inline-block;
	margin-right: 13px;
	width: 40px;
	height: 40px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	padding-top: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(8px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	cursor: pointer;
}

.hero-slider .owl-dots .owl-dot:hover {
	background: rgba(127, 210, 240, 0.5);
	border-color: rgba(127, 210, 240, 0.6);
	transform: scale(1.1);
}

.hero-slider .owl-dots .owl-dot.active {
	background: #7FD2F0;
	border-color: #5db6e5;
	box-shadow: 0 4px 15px rgba(127, 210, 240, 0.5);
	transform: scale(1.15);
}

/*---------------------
  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: #7FD2F0;
	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;
}

/*------------------
  Feature Section · GTA-S High-end
---------------------*/

.feature-item {
    height: 415px;
    position: relative;
    border-radius: 14px;                  /* 圆角卡片 */
    overflow: hidden;                     /* 裁掉多余背景 */
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
    transform: translateY(0);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* 悬浮：微微抬起 + 阴影加强 */
.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* 背景遮罩：改成从透明过渡到深色，底部重点突出文字 */
.feature-item:after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.15) 75%,
            rgba(0, 0, 0, 0.0) 100%
        );
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

/* 分类标签：做成胶囊高亮 */
.feature-item .cata {
    position: relative;
    margin-top: 24px;
    margin-left: 24px;
    z-index: 3;
    font-size: 14px;
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(8, 47, 73, 0.92);
    border: 1px solid rgba(148, 216, 255, 0.75);
}

/* 可选：不同类型轻微换色（如果你有 new / strategy / racing） */
.feature-item .cata.new {
    background: rgba(59, 130, 246, 0.92);
    border-color: rgba(191, 219, 254, 0.9);
}

.feature-item .cata.strategy {
    background: rgba(14, 148, 136, 0.94);
    border-color: rgba(153, 246, 228, 0.9);
}

.feature-item .cata.racing {
    background: rgba(244, 63, 94, 0.94);
    border-color: rgba(254, 202, 202, 0.9);
}

/* 内容区：底部略带玻璃感 */
.feature-item .fi-content {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 0 26px 26px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* 标题字体增大 + 更紧凑的行高 */
.feature-item .fi-content h5 {
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

/* 描述文字：稍大 + 更易读 */
.feature-item .fi-content p {
    font-size: 15px;
    line-height: 1.55;
    opacity: 0.96;
}

/* 底部小字提示：做成“辅助说明”感觉 */
.feature-item .fi-content .fi-comment {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    opacity: 0.75;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: opacity .2s ease, border-color .2s ease;
}

/* 悬浮时小提示更亮一点 */
.feature-item:hover .fi-content .fi-comment {
    opacity: 1;
    border-color: rgba(93, 182, 229, 0.9);
}



/*----------------------
  Recent Game Section · GTA-S High-end
------------------------*/

/* 区块背景：浅色渐变 + 分隔线 */
.recent-game-section {
    background: radial-gradient(circle at top left, #f4f7fb 0%, #e5edf7 35%, #dde6f1 100%);
    border-top: 1px solid #d6dee7;
    border-bottom: 1px solid #d6dee7;
    padding: 70px 0;
}

/* 每一项整体：图片 + 文本组合成一张卡片的感觉 */
.recent-game-item {
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
    transform: translateY(0);
    transition: transform .22s ease, box-shadow .22s ease;
}

/* 悬浮略微抬起 + 阴影增强 */
.recent-game-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.32);
}

/* 上半部分：图 + 角标 */
.recent-game-item .rgi-thumb {
    height: 210px;
    padding: 22px 24px;
    position: relative;
}

/* 左上角的类别小标签（使用原来的 .cata） */
.recent-game-item .rgi-thumb .cata {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.88);
    color: #e5f4ff;
    text-transform: none;
    letter-spacing: 0.04em;
}

/* 下半部分卡片内容 */
.recent-game-item .rgi-content {
    padding: 24px 22px 20px;
    background: #ffffff;
    border: 1px solid #d6dee7;
    border-top: none;
    position: relative;
}

/* 标题：稍微加大一点 */
.recent-game-item .rgi-content h5 {
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 600;
}

/* 文本描述：比原模板大一号 */
.recent-game-item .rgi-content p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 底部小字（原 comment），改成辅助说明风格 */
.recent-game-item .rgi-content .comment {
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
}

/* 右下角小图标区域 */
.recent-game-item .rgi-extra {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: auto;
}

/* 星星 / 心形改成圆形徽章风格 */
.recent-game-item .rgi-extra .rgi-star,
.recent-game-item .rgi-extra .rgi-heart {
    height: 32px;
    width: 32px;
    float: left;
    display: block;
    padding: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(4px);
    margin-left: 6px;
}

/* 星星偏蓝一点 */
.recent-game-item .rgi-extra .rgi-star {
    background: rgba(125, 211, 252, 0.25);
}

/* 爱心偏粉一点 */
.recent-game-item .rgi-extra .rgi-heart {
    background: rgba(248, 113, 113, 0.25);
}


#server-features.set-bg {
    background-image:
        url("img/recent-game-bg.png"),                      /* 你的除虫专家图 */
        radial-gradient(circle at top left, #f4f7fb 0%, #e5edf7 35%, #dde6f1 100%);  /* 你的渐变 */

    background-size:
        cover,   /* 图片 cover，不套娃 */
        cover;   /* 渐变永远铺满 */

    background-repeat:
        no-repeat,
        no-repeat;

    background-position:
        center top,
        center top;

    border-top: 1px solid #d6dee7;
    border-bottom: 1px solid #d6dee7;
    padding: 70px 0;
}


/*----------------------
  加入我们的社区
------------------------*/

/* 背景改为纯白 */
.tournaments-section {
    background: #ffffff;
    padding: 80px 0;
}

/* 模块标题（保持蓝色渐变） */
.tournament-title {
    display: inline-block;
    padding: 10px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: none;
    background: linear-gradient(135deg, #53b7e8, #4ec8ff);
    border-radius: 6px;
    margin-bottom: 40px;
}

/* 卡片整体 */
.tournament-item {
    background: rgba(255, 255, 255, 0.5); /* 白底更适配黑字 */
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.08); /* 边框也更适配白底 */
    border-radius: 12px;
    overflow: hidden;
    transition: all .25s ease;
}

/* 悬浮效果 */
.tournament-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

/* 小标签（保持蓝色） */
.tournament-item .ti-notic {
    display: inline-block;
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 700;
    background: #7FD2F0;
    color: #0f2b3c; /* 蓝系深色 */
    border-radius: 0 0 6px 0;
}

/* 内容区域 */
.tournament-item .ti-content {
    padding: 40px 28px;
    overflow: hidden;
}

/* 左侧图 */
.tournament-item .ti-thumb {
    width: 180px;
    height: 190px;
    float: left;
    border-radius: 8px;
}

/* 右侧文字区域 */
.tournament-item .ti-text {
    padding-left: 210px;
}

/* 标题：黑色 + 蓝色强调 */
.tournament-item .ti-text h4 {
    color: #0f172a; /* 黑色偏深蓝，提高高级感 */
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 700;
}

/* 列表内容：改为黑色 */
.tournament-item .ti-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.tournament-item .ti-text ul li {
    color: #1e293b;        /* 主黑色 */
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* 列表中描述的标签文字（浅灰） */
.tournament-item .ti-text ul li span {
    color: #64748b;        /* 干净的灰色，不蓝 */
}

/* 加入按钮文字（黑色） */
.tournament-item .ti-text p {
    font-size: 14px;
    margin-bottom: 0;
    color: #1e293b;
}

/* 蓝色强调词（保持蓝色） */
.tournament-item .ti-text p span {
    font-weight: 600;
    color: #3ba8e5;
}



/*----------------------
  Review Section · GTA-S Org Cards
------------------------*/

.review-section {
    background-position: right top;
    padding: 80px 0;
}

/* 整个卡片 */
.review-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
    transform: translateY(0);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

/* 悬浮：微微抬起 */
.review-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.95);
    border-color: rgba(94, 234, 212, 0.6);
}

/* 上半部分封面图 */
.review-item .review-cover {
    position: relative;
    margin-bottom: 20px;
    height: 260px; /* 稍微矮一点更现代 */
    overflow: hidden;
}

/* 封面加一层渐变，底部信息更清晰 */
.review-item .review-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(15, 23, 42, 0.0) 55%
    );
    pointer-events: none;
}

/* 左上角徽章：从分数改成组织缩写，用高光圆点 */
.review-item .review-cover .score {
    position: absolute;
    width: 54px;
    height: 54px;
    top: 18px;
    left: 18px;
    padding-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #0b1120;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.7),
        0 0 0 1px rgba(15, 23, 42, 0.6);
}

/* 下面几个颜色你按需要套：blue/green/gold/red 等 */
.review-item .review-cover .score.yellow {
    background: #7FD2F0;
}

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

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

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

/* 你如果用了 blue / red / gold 可以加上这几个 */
.review-item .review-cover .score.blue {
    background: #60a5fa;
}

.review-item .review-cover .score.red {
    background: #f97373;
}

.review-item .review-cover .score.gold {
    background: #fbbf24;
}

/* 文字区域 */
.review-item .review-text {
    text-align: left;
    padding: 16px 18px 18px;
}

/* 标题：更大更硬朗 */
.review-item .review-text h5 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #e5ecff;
}

/* 描述：浅灰，易读 */
.review-item .review-text p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5f5;
}

/* 如果保留 .rating，可以这样处理成小行文字，而不是星星 */
.review-item .rating {
    margin-bottom: 10px;
}

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


/*----------------------
  Footer Top Section · White Modern UI
------------------------*/

/* 背景改为纯白 */
.footer-top-section {
    background: #fafafa;
    padding: 80px 0;
}

.footer-top-section .container {
    position: relative;
}

/* 背景图弱化 */
.footer-top-bg {
    position: absolute;
    left: -30px;
    bottom: -85px;
    z-index: 2;

}

/* Logo 与简介字号增大 */
.footer-logo img {
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

/* 小卡片：白底 + 玻璃感 + 阴影 */
.footer-widget {
    padding: 40px 30px 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

/* 标题加大 */
.footer-widget .fw-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
}

/*----------------------
  Latest Blog
-----------------------*/

.latest-blog .lb-item {
    margin-bottom: 25px;
    overflow: hidden;
}

.latest-blog .lb-item .lb-thumb {
    width: 100px;
    height: 100px;
    float: left;
    border-radius: 10px;
}

.latest-blog .lb-item .lb-content {
    padding-left: 120px;
}

/* 日期字体更突出 */
.latest-blog .lb-item .lb-content .lb-date {
    font-size: 14px;
    font-weight: 600;
    color: #3ba8e5;
    margin-bottom: 6px;
}

/* 文章内容 */
.latest-blog .lb-item .lb-content p {
    font-size: 14px;
    color: #334155;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* 作者名 */
.latest-blog .lb-item .lb-content .lb-author {
    font-size: 13px;
    color: #64748b;
}


.top-comment {
    overflow: hidden;
}

.top-comment .tc-item {
    margin-bottom: 25px;
    overflow: hidden;
}

.top-comment .tc-item .tc-thumb {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    float: left;
}

.top-comment .tc-item .tc-content {
    padding-left: 95px;
}

/* 评论文字 */
.top-comment .tc-item .tc-content p {
    font-size: 14px;
    color: #334155;
    margin-bottom: 4px;
}

/* 评论中链接 */
.top-comment .tc-item .tc-content p a {
    color: #0ea5e9;
    font-weight: 600;
}

/* 灰色的“评论于 XX” */
.top-comment .tc-item .tc-content p span {
    color: #64748b;
}

/* 日期 */
.top-comment .tc-item .tc-content .tc-date {
    font-size: 13px;
    color: #3ba8e5;
    margin-top: 2px;
}


/*----------------------
  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: #7FD2F0;
}

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

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

.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: #7FD2F0;
}

.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: #7FD2F0;
	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;
}

/*-----------------
  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: #7FD2F0;
	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: #7FD2F0;
}

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

/* Medium Mobile :480px. */

@media only screen and (max-width: 576px) {
	.hero-slider .owl-dots {
		padding: 0 15px;
	}
	.feature-section {
		padding-left: 15px;
		padding-right: 15px;
	}
	.community-post-list .community-post .author-avator {
		float: none;
	}
	.community-post-list .community-post .post-content {
		padding-left: 0;
		padding-top: 30px;
	}
}

/* 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;
	}
}


/* Hero Section 响应式优化 */
@media only screen and (max-width: 991px) {
	.slider-content-wrapper {
		padding: 30px 25px;
	}

	.hero-slider .hs-text h2.animated-title {
		font-size: 42px;
	}

	.slider-description {
		font-size: 16px;
	}

	.status-card {
		flex-direction: column;
		gap: 20px;
		padding: 20px;
	}

	.status-divider {
		width: 80%;
		height: 2px;
		background: linear-gradient(to right, transparent, rgba(127, 210, 240, 0.5), transparent);
	}

	.partner-badge {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	.badge-3rd {
		font-size: 28px;
		padding: 10px 20px;
	}

	.badge-text {
		font-size: 18px;
	}
}

@media only screen and (max-width: 767px) {
	.hero-slider .hs-item {
		height: 700px;
	}

	.slider-content-wrapper {
		padding: 25px 20px;
		border-radius: 15px;
	}

	.hero-slider .hs-text h2.animated-title {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.slider-description {
		font-size: 15px;
		line-height: 1.6;
		margin-bottom: 20px;
	}

	.status-value {
		font-size: 24px;
	}

	.status-label {
		font-size: 12px;
	}

	.site-btn.btn-enhanced {
		font-size: 16px;
		padding: 15px 30px;
	}

	.badge-3rd {
		font-size: 24px;
		padding: 8px 16px;
	}

	.badge-text {
		font-size: 16px;
	}

	.hero-slider .owl-dots .owl-dot {
		width: 35px;
		height: 35px;
		font-size: 14px;
		padding-top: 8px;
		margin-right: 8px;
	}
}

@media only screen and (max-width: 479px) {
	.hero-slider .hs-item {
		height: auto;
		padding: 120px 0;
	}

	.slider-content-wrapper {
		padding: 20px 15px;
	}

	.hero-slider .hs-text h2.animated-title {
		font-size: 28px;
	}

	.slider-description {
		font-size: 14px;
	}

	.status-card {
		padding: 15px;
	}

	.status-value {
		font-size: 20px;
	}

	.site-btn.btn-enhanced {
		font-size: 15px;
		padding: 12px 25px;
		width: 100%;
	}

	.badge-3rd {
		font-size: 20px;
	}

	.badge-text {
		font-size: 14px;
	}
}
