/*
Theme Name: KBJFANS Theme
Theme URI: https://kbjkorean.com/
Author: KBJFANS Team
Author URI: https://kbjkorean.com/
Description: A responsive, modern WordPress theme for KBJFans with dazzling CSS effects.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kbjfans
*/

/* --- Reset & Base --- */
:root {
  --primary-color: #ff007f;
  --secondary-color: #8a2be2;
  --bg-color: #f8f9fa; /* High-light white/grayish background */
  --text-color: #222222; /* Dark text for contrast */
  --box-bg: #ffffff; /* White boxes */
  --accent-color: #007bff; /* Bright blue accent instead of neon cyan for white bg */
  --glow-color: rgba(255, 0, 127, 0.4);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1400px; /* Increased max width for PC */
  margin: 0 auto;
}

/* --- Breadcrumbs --- */
.breadcrumbs-container {
  margin-top: 20px;
  margin-bottom: -10px;
  padding: 10px 20px;
  background: var(--box-bg);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 127, 0.1);
  display: flex;
  align-items: center;
}

.kbjfans-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}

.kbjfans-breadcrumbs li {
  display: inline-flex;
  align-items: center;
}

.kbjfans-breadcrumbs a {
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
}

.kbjfans-breadcrumbs a:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 5px var(--glow-color);
}

.kbjfans-breadcrumbs .separator {
  margin: 0 8px;
  color: #aaa;
  font-size: 0.8rem;
}

.kbjfans-breadcrumbs .item-current strong {
  color: var(--text-color);
  font-weight: 600;
}

/* --- Header --- */
header {
  background: rgba(255, 255, 255, 0.95); /* Light header */
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-area img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
  transition: transform 0.3s ease;
}

.logo-area img:hover {
  transform: rotate(360deg);
}

/* Dazzling Effect Font */
.site-title {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 3s linear infinite;
  letter-spacing: 2px;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.main-nav ul {
  display: flex;
  gap: 25px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(45deg, #000, #444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff007f, #8a2be2, #00f2fe);
  transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 3px;
}

.main-nav a:hover {
  background: linear-gradient(45deg, #ff007f, #8a2be2, #00f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(255, 0, 127, 0.2);
  transform: translateY(-2px);
}

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

.auth-buttons {
  display: flex;
  gap: 15px;
}

.btn-auth {
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #fff;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  letter-spacing: 1px;
}

.btn-login {
  background: linear-gradient(45deg, #00f2fe, #4facfe);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

.btn-register {
  background: linear-gradient(45deg, #ff0844, #ffb199);
  box-shadow: 0 5px 15px rgba(255, 8, 68, 0.3);
}

/* Cool neon box effect */
.btn-auth::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: linear-gradient(45deg, #ff007f, #8a2be2, #00f2fe);
  background-size: 200% 200%;
  transition: opacity 0.4s ease;
  opacity: 0;
  animation: authBgGlow 3s linear infinite;
}

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

.btn-auth:hover::before {
  opacity: 1;
}

.btn-auth:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
}

.btn-login:hover {
  box-shadow: 0 10px 25px rgba(0, 242, 254, 0.5);
}

.btn-register:hover {
  box-shadow: 0 10px 25px rgba(255, 8, 68, 0.5);
}

/* --- Banner Slider --- */
.banner-section {
  width: 100%;
  position: relative;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.banner-content {
  max-width: 600px;
  color: #fff;
  animation: slideInUp 1s ease-out;
}

.banner-content h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00f2fe, #4facfe, #ff0844, #8a2be2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  line-height: 1.6;
}

.banner-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff007f, #8a2be2);
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(255, 0, 127, 0.4);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.banner-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 0, 127, 0.6);
  border-color: #fff;
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Body Section 1: Capsule --- */
.capsule-section {
  padding: 60px 0;
  text-align: center;
}

.capsule-box {
  background: linear-gradient(135deg, #00f2fe, #4facfe, #ff0844, #8a2be2);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
  border-radius: 50px;
  padding: 35px 50px; /* Reduced vertical padding, increased horizontal */
  max-width: 1200px; /* Made even wider */
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.4);
  position: relative;
  overflow: hidden;
}

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

.capsule-box::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: rgba(255,255,255,0.15);
  transform: rotate(45deg);
  animation: glare 4s infinite linear;
}

@keyframes glare {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.capsule-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

.capsule-desc {
  font-size: 16px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.capsule-box h2 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-weight: normal;
}

.capsule-btn {
  display: inline-block;
  background: #fff;
  color: #8a2be2;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.capsule-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #fff;
  color: #ff007f;
}

/* --- Body Section 2: Popular Models & Advantages --- */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.models-section {
  padding: 60px 0;
  background-color: transparent; /* Remove solid background */
}

.models-outer-frame {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 0 0 2px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.models-outer-frame::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 0, 127, 0.1) 25%, transparent 50%, rgba(0, 242, 254, 0.1) 75%, transparent 100%);
  animation: spinBg 10s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes spinBg {
  100% { transform: rotate(360deg); }
}

.models-outer-frame > * {
  position: relative;
  z-index: 1;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.model-item {
  text-align: center;
  position: relative;
}

/* 炫酷的头像圆圈外边框容器 */
.model-avatar-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(45deg, #ff007f, #8a2be2, #00f2fe, #ff007f);
  background-size: 400% 400%;
  animation: borderGlow 4s linear infinite;
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

/* 边框流动发光动画 */
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.model-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff; /* 内部白色隔离边框 */
  transition: 0.5s ease;
  position: relative;
  z-index: 2;
}

/* 悬停时的炫酷特效：整体上浮，外圈狂暴发光，内部图片轻微放大并旋转 */
.model-avatar-wrapper:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 0 20px #ff007f, 0 0 40px #8a2be2, 0 0 60px #00f2fe;
  animation: borderGlow 1s linear infinite; /* 加速流动 */
}

.model-avatar-wrapper:hover .model-avatar {
  transform: scale(1.05) rotate(5deg);
  filter: contrast(1.1) brightness(1.1);
}

/* 伪元素：悬停时在头像后面产生脉冲光圈效果 */
.model-avatar-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: transparent;
  z-index: 1;
  transition: 0.4s;
}

.model-avatar-wrapper:hover::after {
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
  opacity: 0;
  animation: pulseGlow 1s ease-out infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.model-name {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.model-item:hover .model-name {
  color: var(--primary-color);
}

.advantages-section {
  padding: 60px 0;
}

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

.adv-card {
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  color: #fff;
}

.adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: 200% 200%;
  animation: bgFlow 5s ease infinite;
  z-index: -1;
}

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

.adv-card:hover {
  transform: translateY(-15px) scale(1.03);
}

.adv-card-1 {
  box-shadow: 0 10px 30px rgba(255, 8, 68, 0.3);
}
.adv-card-1::before {
  background-image: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
}

.adv-card-2 {
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}
.adv-card-2::before {
  background-image: linear-gradient(135deg, #8a2be2 0%, #00f2fe 100%);
}

.adv-card-3 {
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
}
.adv-card-3::before {
  background-image: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.adv-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.adv-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.adv-card h3 {
  font-size: 22px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin: 0;
}

.adv-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* --- Body Section 3: Work Showcase --- */
.showcase-section {
  padding: 60px 0;
}

.showcase-area {
  margin-bottom: 60px;
}

.showcase-area h3 {
  font-size: 24px;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary-color);
  padding-left: 15px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.work-card {
  background: var(--box-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,0,127,0.1), rgba(0,242,254,0.1), transparent);
  z-index: 1;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}

.work-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 0 20px rgba(0,242,254,0.3);
  border-color: rgba(0,242,254,0.5);
}

.work-card:hover::before {
  opacity: 1;
}

.work-img-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.work-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.work-card:hover .work-img-wrapper img {
  transform: scale(1.15) rotate(-2deg);
  filter: brightness(1.1) contrast(1.1);
}

.work-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-overlay-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(30px) scale(0.5);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 20px var(--primary-color);
  color: #fff;
  font-size: 20px;
}

.work-card:hover .work-overlay-icon {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.work-info {
  padding: 20px 15px;
  position: relative;
  z-index: 2;
  background: var(--box-bg);
}

.work-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.work-card:hover .work-name {
  color: var(--primary-color);
}

.work-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* --- News Page Layout --- */
.news-page-container {
  padding: 60px 0;
}

.news-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-page-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 15px;
}

.news-page-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
}

.news-divider-glow {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff007f, #00f2fe);
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0, 242, 254, 0.4);
}

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

.news-card {
  background: var(--box-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1), 0 0 15px rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.3);
}

.news-img-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-img-wrapper img {
  transform: scale(1.08);
}

.news-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(45deg, #ff007f, #8a2be2);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(255, 0, 127, 0.3);
}

.news-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 15px;
}

.news-title a {
  color: var(--text-color);
  transition: color 0.3s;
}

.news-card:hover .news-title a {
  color: var(--primary-color);
}

.news-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  color: var(--accent-color);
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: auto;
}

.news-read-more svg {
  transition: transform 0.3s ease;
}

.news-card:hover .news-read-more {
  color: var(--primary-color);
}

.news-card:hover .news-read-more svg {
  transform: translateX(5px);
}

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.news-pagination ul.page-numbers {
  display: flex;
  gap: 10px;
  align-items: center;
}

.news-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border-radius: 8px;
  background: var(--box-bg);
  color: var(--text-color);
  font-weight: bold;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.news-pagination a.page-numbers:hover {
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent-color);
  border-color: rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
}

.news-pagination .page-numbers.current {
  background: linear-gradient(45deg, #00f2fe, #4facfe);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

.news-pagination .page-numbers.dots {
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* --- Footer Pro Max --- */
.site-footer {
  background: var(--bg-color);
  color: var(--text-color);
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.02);
}

.footer-gradient-line {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ff007f, #8a2be2, #00f2fe, #ff007f);
  background-size: 300% 100%;
  animation: footerLineGlow 4s linear infinite;
  box-shadow: 0 2px 15px rgba(138, 43, 226, 0.4);
}

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

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0;
  gap: 30px;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-divider {
  width: 2px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(255, 0, 127, 0.4), rgba(0, 242, 254, 0.4), transparent);
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
  border-radius: 2px;
}

/* Brand Col */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .circle-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.footer-site-title {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

/* Telegram Link */
.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 30px;
  background: linear-gradient(45deg, #0088cc, #00f2fe, #8a2be2);
  background-size: 200% 200%;
  color: #fff !important;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: telegramGlow 3s ease infinite;
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes telegramGlow {
  0% { background-position: 0% 50%; box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4); }
  50% { background-position: 100% 50%; box-shadow: 0 5px 25px rgba(138, 43, 226, 0.6); }
  100% { background-position: 0% 50%; box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4); }
}

.telegram-link:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Headings */
.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 20px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.3s;
}

.footer-col:hover .footer-heading::after {
  width: 100%;
}

/* Menus */
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-menu a {
  font-size: 15px;
  color: #444;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer-menu a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.footer-menu a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
}

.footer-menu a:hover::before {
  width: 100%;
}

/* Compliance specific */
.compliance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
}

.compliance-menu a.compliance-item:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
}

.compliance-menu a.compliance-item::before {
  background: var(--secondary-color);
}

.age-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ff007f;
  color: #ff007f;
  font-weight: 800;
  font-size: 11px;
  box-shadow: 0 0 8px rgba(255, 0, 127, 0.3);
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.2);
}

.disclaimer {
  opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
  color: #888;
  background: rgba(0,0,0,0.02);
}

/* --- Single Article Page --- */
.single-article-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.entry-header {
  margin-bottom: 30px;
  text-align: center;
}

.entry-category a {
  display: inline-block;
  padding: 5px 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.entry-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.2;
}

.entry-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #777;
  font-size: 0.95rem;
}

.entry-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.article-main-content {
  background: var(--box-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 127, 0.1);
}

.entry-thumbnail {
  margin: -30px -30px 30px -30px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.entry-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.entry-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content h2, .entry-content h3 {
  color: var(--text-color);
  margin: 30px 0 15px;
  font-weight: 700;
}

.entry-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin: 20px 0;
  background: rgba(255, 0, 127, 0.05);
  font-style: italic;
  color: var(--secondary-color);
  border-radius: 0 8px 8px 0;
}

/* Mission & Responsibility Box */
.mission-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  padding: 30px;
  background: linear-gradient(to right, rgba(255,0,127,0.05), rgba(138,43,226,0.05));
  border: 1px solid rgba(255,0,127,0.1);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}

.mission-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.mission-content {
  flex: 2;
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 15px;
}

.mission-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.mission-icons {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.m-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  color: var(--primary-color);
}

.m-icon-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Compliance & Info Pages --- */
.compliance-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.compliance-article {
  background: var(--box-bg);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 127, 0.1);
  margin-bottom: 40px;
  text-align: center;
}

.compliance-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--text-color);
}

.compliance-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.compliance-content h2 {
  color: var(--text-color);
  margin: 40px 0 20px;
  font-size: 1.8rem;
}

.compliance-content h3 {
  color: var(--text-color);
  margin: 30px 0 15px;
  font-size: 1.4rem;
}

.compliance-content p, .compliance-content ul, .compliance-content ol {
  margin-bottom: 20px;
}

.compliance-content ul, .compliance-content ol {
  padding-left: 20px;
}

.compliance-content li {
  margin-bottom: 10px;
}

/* 6 Interconnected Animated Boxes */
.compliance-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.comp-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  background: var(--box-bg);
  border-radius: 15px;
  border: 1px solid rgba(255, 0, 127, 0.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.comp-nav-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,0,127,0.05), rgba(138,43,226,0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.comp-nav-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 127, 0.3);
  box-shadow: 0 15px 30px rgba(255, 0, 127, 0.15);
}

.comp-nav-card:hover::before {
  opacity: 1;
}

.comp-icon {
  width: 60px;
  height: 60px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Individual Card Colors & Gradients */
.card-contact .comp-icon { background: linear-gradient(135deg, #00f2fe, #4facfe); }
.card-contact:hover { border-color: #4facfe; box-shadow: 0 15px 30px rgba(79, 172, 254, 0.2); }
.card-contact:hover::before { background: linear-gradient(135deg, rgba(0,242,254,0.05), rgba(79,172,254,0.05)); opacity: 1; }
.card-contact:hover .comp-icon { box-shadow: 0 0 15px rgba(0,242,254,0.5); }

.card-dmca .comp-icon { background: linear-gradient(135deg, #ff0844, #ffb199); }
.card-dmca:hover { border-color: #ff0844; box-shadow: 0 15px 30px rgba(255, 8, 68, 0.2); }
.card-dmca:hover::before { background: linear-gradient(135deg, rgba(255,8,68,0.05), rgba(255,177,153,0.05)); opacity: 1; }
.card-dmca:hover .comp-icon { box-shadow: 0 0 15px rgba(255,8,68,0.5); }

.card-privacy .comp-icon { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.card-privacy:hover { border-color: #43e97b; box-shadow: 0 15px 30px rgba(67, 233, 123, 0.2); }
.card-privacy:hover::before { background: linear-gradient(135deg, rgba(67,233,123,0.05), rgba(56,249,215,0.05)); opacity: 1; }
.card-privacy:hover .comp-icon { box-shadow: 0 0 15px rgba(67,233,123,0.5); }

.card-terms .comp-icon { background: linear-gradient(135deg, #fa709a, #fee140); }
.card-terms:hover { border-color: #fa709a; box-shadow: 0 15px 30px rgba(250, 112, 154, 0.2); }
.card-terms:hover::before { background: linear-gradient(135deg, rgba(250,112,154,0.05), rgba(254,225,64,0.05)); opacity: 1; }
.card-terms:hover .comp-icon { box-shadow: 0 0 15px rgba(250,112,154,0.5); }

.card-protected .comp-icon { background: linear-gradient(135deg, #f83600, #f9d423); }
.card-protected:hover { border-color: #f83600; box-shadow: 0 15px 30px rgba(248, 54, 0, 0.2); }
.card-protected:hover::before { background: linear-gradient(135deg, rgba(248,54,0,0.05), rgba(249,212,35,0.05)); opacity: 1; }
.card-protected:hover .comp-icon { box-shadow: 0 0 15px rgba(248,54,0,0.5); }

.card-report .comp-icon { background: linear-gradient(135deg, #8a2be2, #ff007f); }
.card-report:hover { border-color: #8a2be2; box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2); }
.card-report:hover::before { background: linear-gradient(135deg, rgba(138,43,226,0.05), rgba(255,0,127,0.05)); opacity: 1; }
.card-report:hover .comp-icon { box-shadow: 0 0 15px rgba(138,43,226,0.5); }


.comp-nav-card:hover .comp-icon {
  transform: scale(1.1) rotate(5deg);
}

.comp-nav-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
}

.comp-nav-card p {
  font-size: 0.85rem;
  color: #777;
}

/* Post Navigation (上下篇文章推荐) */
.post-navigation-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.post-nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--bg-color);
  border-radius: 12px;
  border: 1px solid rgba(255, 0, 127, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.post-nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 127, 0.1);
  border-color: rgba(255, 0, 127, 0.3);
}

.post-nav-link.empty-nav {
  background: transparent;
  border: none;
}

.post-nav-link.next-post {
  text-align: right;
}

.nav-label {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.nav-title {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.post-nav-link:hover .nav-title {
  color: var(--primary-color);
}

/* Sidebar Widgets */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--box-bg);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 127, 0.1);
  position: relative;
  overflow: hidden;
}

.sidebar-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Celebrity Intro */
.celeb-card {
  text-align: center;
}

.celeb-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  overflow: hidden;
}

.celeb-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--box-bg);
}

.celeb-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.celeb-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.celeb-btn {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.celeb-btn:hover {
  background: var(--secondary-color);
  color: #fff;
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Trust Authority */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 0, 127, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 3px;
}

.trust-text span {
  display: block;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
}

/* Responsive Adjustments for Single Page */
@media (max-width: 992px) {
  .article-content-wrapper {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
  .mission-box {
    flex-direction: column;
    text-align: center;
  }
  .mission-box::before {
    width: 100%;
    height: 5px;
  }
  .compliance-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .entry-title {
    font-size: 2rem;
  }
  .compliance-nav-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-container {
    flex-wrap: wrap;
  }
  .footer-col {
    flex: 1 1 40%;
  }
  .footer-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .footer-col {
    flex: 1 1 100%;
  }
}

/* --- About Us Page Pro Max --- */
.about-page {
  padding-top: 60px;
  padding-bottom: 80px;
}

/* Hero Section */
.about-hero {
  margin-bottom: 80px;
  position: relative;
}

.about-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge-pro {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(138, 43, 226, 0.1);
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-color);
  margin-bottom: 25px;
}

.hero-title span {
  background: linear-gradient(45deg, #ff007f, #8a2be2, #00f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 3s linear infinite;
  background-size: 200% auto;
}

.hero-desc {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 4px 15px rgba(255, 0, 127, 0.2);
}

.stat-label {
  font-size: 0.9rem;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Bento Grid Visual */
.about-hero-visual {
  position: relative;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}

.bento-item {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.bento-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15), 0 0 25px rgba(255, 0, 127, 0.2);
}

.bento-item:hover img {
  transform: scale(1.08);
}

.main-img {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.sub-img-1 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.sub-img-2 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* Mission & Values */
.about-mission {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,249,250,1) 100%);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 20px auto 50px;
  line-height: 1.6;
}

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

.value-card {
  background: var(--box-bg);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-purple {
  background: rgba(138, 43, 226, 0.1);
  color: #8a2be2;
}
.icon-pink {
  background: rgba(255, 0, 127, 0.1);
  color: #ff007f;
}
.icon-blue {
  background: rgba(0, 242, 254, 0.1);
  color: #00f2fe;
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-color);
}

.value-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Authority Content */
.about-authority {
  padding: 80px 0;
}

.authority-content-box {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: center;
}

.auth-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--text-color);
}

.auth-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.auth-list {
  margin-top: 30px;
}

.auth-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 15px;
  padding: 12px 20px;
  background: var(--box-bg);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.auth-list li svg {
  color: var(--primary-color);
}

/* Glassmorphism Card */
.glass-card-effect {
  position: relative;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(135deg, #ff007f, #8a2be2, #00f2fe);
  background-size: 200% 200%;
  animation: borderGlow 4s linear infinite;
  box-shadow: 0 20px 50px rgba(138, 43, 226, 0.3);
}

.glass-inner {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 21px;
  padding: 50px 40px;
  text-align: center;
  height: 100%;
}

.glass-inner h3 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  line-height: 1.3;
}

.glass-divider {
  width: 50px;
  height: 4px;
  background: var(--accent-color);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.glass-inner p {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

@media (max-width: 992px) {
  .about-hero-container, .authority-content-box {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-rows: auto;
  }
  .main-img, .sub-img-1, .sub-img-2 {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
}

/* --- Latest News Section (Home) --- */
.latest-news-section {
  padding: 60px 0;
  margin-top: 40px;
}

.news-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .news-grid-home {
    grid-template-columns: 1fr;
  }
}

.home-news-card {
  background: var(--box-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.home-news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 0, 127, 0.1);
  border-color: rgba(255, 0, 127, 0.3);
}

.home-news-card .news-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%; /* 5:3 Aspect Ratio */
  overflow: hidden;
}

.home-news-card .news-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-news-card:hover .news-img-wrapper img {
  transform: scale(1.08);
}

.home-news-card .news-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.home-news-card .news-meta {
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 600;
}

.home-news-card .news-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-news-card .news-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
  /* Display Max 2 Lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-news-card:hover .news-title {
  color: var(--primary-color);
}

.home-news-card .news-excerpt {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  /* Display Max 3 Lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
