/* roulang page: index */
:root {
  --brand-yellow: #F5C518;
  --brand-yellow-dark: #E6B400;
  --brand-dark-green: #0B3D2E;
  --brand-dark-green-2: #144E3C;
  --brand-orange: #FF6B35;
  --brand-cyan: #2EC4B6;
  --bg-main: #F7F5F0;
  --bg-deep: #0B3D2E;
  --bg-soft-green: #EAF3EE;
  --card-bg: #FFFFFF;
  --text-dark: #0B3D2E;
  --text-body: #3A4A43;
  --text-muted: #78857E;
  --border-light: rgba(11,61,46,0.08);
  --shadow-card: 0 4px 20px rgba(11,61,46,0.06);
  --shadow-hover: 0 12px 40px rgba(11,61,46,0.12);
  --radius-card: 20px;
  --radius-medium: 14px;
  --radius-btn: 999px;
  --radius-input: 12px;
  --font-cn: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --font-num: "DIN Alternate", "Bebas Neue", "Roboto Condensed", sans-serif;
  --transition-item: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-link: all 0.25s ease;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-cn);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  transition: var(--transition-link);
}
a:hover {
  text-decoration: none;
}
input, button {
  font-family: var(--font-cn);
}
.ly-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(11,61,46,0.06);
  transition: var(--transition-link);
}
.ly-header.ly-header-scrolled {
  box-shadow: 0 6px 30px rgba(11,61,46,0.1);
}
.ly-topbar {
  background: var(--brand-dark-green);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  line-height: 36px;
}
.ly-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ly-topbar a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}
.ly-topbar a:hover {
  color: var(--brand-yellow);
}
.ly-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.ly-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-dark-green);
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}
.ly-logo:hover {
  color: var(--brand-dark-green);
}
.ly-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--brand-yellow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark-green);
  font-size: 18px;
  flex-shrink: 0;
}
.ly-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ly-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}
.ly-nav-list a {
  text-decoration: none;
  color: var(--text-body);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 0;
  position: relative;
  transition: var(--transition-link);
}
.ly-nav-list a:hover,
.ly-nav-list a.active {
  color: var(--brand-dark-green);
  font-weight: 700;
}
.ly-nav-list a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-cyan);
}
.ly-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--brand-dark-green);
  cursor: pointer;
  z-index: 1201;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: var(--transition-link);
}
.ly-nav-toggle:hover {
  background: rgba(11,61,46,0.06);
}
.ly-nav-close {
  display: none;
}
.btn-ly-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
  border: none;
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-link);
  line-height: 1.5;
  cursor: pointer;
}
.btn-ly-brand:hover {
  background: var(--brand-yellow-dark);
  color: var(--brand-dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,197,24,0.35);
}
.btn-ly-brand.btn-sm {
  padding: 8px 22px;
  font-size: 14px;
}
.btn-ly-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-link);
  line-height: 1.5;
  cursor: pointer;
}
.btn-ly-outline-light:hover {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.btn-ly-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--brand-dark-green);
  border: 2px solid var(--brand-dark-green);
  border-radius: var(--radius-btn);
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-link);
  line-height: 1.5;
  cursor: pointer;
}
.btn-ly-outline-dark:hover {
  background: var(--brand-dark-green);
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-ly-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,196,182,0.12);
  color: var(--brand-dark-green);
  border-radius: var(--radius-btn);
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-link);
}
.btn-ly-link:hover {
  background: rgba(46,196,182,0.22);
  color: var(--brand-dark-green);
}
.btn-ly-link i,
.btn-ly-link svg {
  transition: transform 0.25s ease;
}
.btn-ly-link:hover i,
.btn-ly-link:hover svg {
  transform: translateX(4px);
}
.ly-hero {
  background:
    linear-gradient(135deg, rgba(11,61,46,0.96) 0%, rgba(20,78,60,0.92) 55%, rgba(23,95,71,0.88) 100%),
    url('/assets/images/backpic/back-1.png') center/cover no-repeat;
  color: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0 72px;
  position: relative;
  overflow: hidden;
}
.ly-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-btn);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.ly-hero-badge i {
  color: var(--brand-yellow);
}
.ly-hero-title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px;
}
.ly-hero-title .highlight {
  color: var(--brand-yellow);
}
.ly-hero-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 0 28px;
}
.ly-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.ly-hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.ly-hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.ly-hero-trust i {
  color: var(--brand-cyan);
  font-size: 16px;
}
.ly-hero-img {
  border-radius: var(--radius-card);
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.ly-live-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-btn);
  padding: 12px 20px;
  margin-top: 48px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.ly-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-orange);
  position: relative;
  flex-shrink: 0;
  animation: lyPulse 1.8s ease infinite;
}
@keyframes lyPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}
.ly-stats {
  background: var(--bg-main);
  padding: clamp(40px, 6vw, 64px) 0 0;
  position: relative;
  z-index: 2;
}
.ly-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ly-stat-item {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-item);
}
.ly-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.ly-stat-num {
  display: block;
  font-family: var(--font-num);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-dark-green);
}
.ly-stat-item:nth-child(1) .ly-stat-num {
  color: var(--brand-orange);
}
.ly-stat-item:nth-child(2) .ly-stat-num {
  color: var(--brand-cyan);
}
.ly-stat-item:nth-child(3) .ly-stat-num {
  color: var(--brand-dark-green);
}
.ly-stat-item:nth-child(4) .ly-stat-num {
  color: #d4a500;
}
.ly-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.ly-section-padding {
  padding: clamp(56px, 8vw, 96px) 0;
}
.ly-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,196,182,0.12);
  color: var(--brand-dark-green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: var(--radius-btn);
  padding: 4px 16px;
  margin-bottom: 14px;
}
.ly-section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 12px;
}
.ly-section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}
.ly-story {
  background: var(--bg-main);
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}
.ly-story-img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.ly-story-text {
  margin: 20px 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 520px;
}
.ly-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  max-width: 520px;
}
.ly-feature-list li {
  background: #ffffff;
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-light);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-item);
}
.ly-feature-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.ly-feature-list i {
  color: var(--brand-cyan);
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.ly-featured {
  background: var(--bg-main);
  padding: 0 0 clamp(56px, 8vw, 96px);
}
.ly-card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition-item);
  position: relative;
  height: 100%;
}
.ly-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.ly-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--brand-yellow);
  border-radius: 0 0 4px 0;
  transition: width 0.35s ease;
  z-index: 2;
}
.ly-card:hover::before {
  width: 56px;
}
.ly-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
}
.ly-card-body {
  padding: 24px;
}
.ly-badge {
  display: inline-block;
  background: rgba(245,197,24,0.18);
  color: #8a6a00;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 4px 14px;
  margin-bottom: 12px;
}
.ly-badge-cyan {
  background: rgba(46,196,182,0.14);
  color: #137a70;
}
.ly-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
}
.ly-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ly-news {
  background: var(--bg-soft-green);
  padding: clamp(56px, 8vw, 96px) 0;
}
.ly-news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.ly-news-card {
  display: flex;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 16px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition-item);
  height: 100%;
  gap: 16px;
}
.ly-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  color: var(--text-dark);
  text-decoration: none;
}
.ly-news-thumb {
  flex: 0 0 168px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-soft-green);
}
.ly-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
}
.ly-news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.ly-news-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 8px 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ly-news-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ly-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}
.ly-news-date {
  font-size: 13px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ly-news-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark-green);
  white-space: nowrap;
}
.ly-news-empty {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 56px 24px;
  text-align: center;
}
.ly-news-empty i {
  font-size: 48px;
  color: rgba(11,61,46,0.18);
  margin-bottom: 16px;
}
.ly-news-empty p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.ly-news-empty span {
  font-size: 14px;
  color: var(--text-muted);
}
.ly-trust {
  background:
    linear-gradient(135deg, rgba(11,61,46,0.97), rgba(20,78,60,0.93)),
    url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  color: #ffffff;
  padding: clamp(56px, 8vw, 96px) 0;
}
.ly-section-tag-light {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
}
.ly-trust-title {
  color: #ffffff;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 16px;
}
.ly-trust-text {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.85;
  max-width: 460px;
}
.ly-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ly-trust-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-medium);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition-link);
}
.ly-trust-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.25);
}
.ly-trust-item i {
  display: block;
  font-size: 28px;
  color: var(--brand-yellow);
  margin-bottom: 10px;
}
.ly-trust-item span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.ly-faq {
  background: var(--bg-main);
  padding: clamp(56px, 8vw, 96px) 0;
}
.ly-faq-item {
  background: #ffffff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
  margin-bottom: 20px;
  transition: var(--transition-item);
  border-left: 4px solid transparent;
}
.ly-faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-left-color: var(--brand-yellow);
}
.ly-faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ly-faq-item h3 i {
  color: var(--brand-cyan);
  font-size: 18px;
  margin-top: 3px;
}
.ly-faq-item p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 0 28px;
}
.ly-cta {
  background: var(--brand-yellow);
  padding: clamp(48px, 6vw, 72px) 0;
}
.ly-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ly-cta h2 {
  color: var(--brand-dark-green);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin: 0 0 6px;
}
.ly-cta p {
  color: rgba(11,61,46,0.8);
  font-size: 15px;
  margin: 0;
}
.ly-subscribe-form {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 520px;
}
.ly-subscribe-form input {
  flex: 1;
  border: 2px solid rgba(11,61,46,0.12);
  background: #ffffff;
  border-radius: var(--radius-input);
  padding: 13px 18px;
  font-size: 15px;
  outline: none;
  color: var(--text-dark);
  transition: var(--transition-link);
  min-width: 0;
}
.ly-subscribe-form input:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(46,196,182,0.15);
}
.ly-subscribe-form input::placeholder {
  color: #9aa5a4;
}
.ly-subscribe-form button {
  background: var(--brand-dark-green);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 13px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-link);
  white-space: nowrap;
}
.ly-subscribe-form button:hover {
  background: var(--brand-dark-green-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,61,46,0.25);
}
.ly-footer {
  background: #082D22;
  color: rgba(255,255,255,0.85);
  padding: clamp(48px, 6vw, 72px) 0 0;
}
.ly-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 40px;
}
.ly-footer-brand .ly-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
}
.ly-footer-brand .ly-footer-logo i {
  color: var(--brand-yellow);
  font-size: 20px;
}
.ly-footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.8;
  margin: 16px 0 20px;
  max-width: 300px;
}
.ly-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  margin-right: 8px;
  transition: var(--transition-link);
  text-decoration: none;
}
.ly-footer-social a:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
  transform: translateY(-2px);
}
.ly-footer-links {
  display: flex;
  flex-direction: column;
}
.ly-footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.ly-footer-links h4,
.ly-footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.ly-footer-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 5px 0;
  font-size: 14px;
  transition: var(--transition-link);
}
.ly-footer-links a:hover {
  color: var(--brand-cyan);
  padding-left: 4px;
}
.ly-footer-contact p {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ly-footer-contact i {
  color: var(--brand-yellow);
  width: 18px;
  text-align: center;
}
.ly-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.ly-footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.ly-footer-bottom a:hover {
  color: var(--brand-yellow);
}
@media (max-width: 1199px) {
  .ly-nav-list {
    gap: 20px;
  }
  .ly-nav-menu {
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .ly-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ly-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--brand-dark-green);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1200;
  }
  .ly-nav-menu.ly-nav-open {
    transform: translateX(0);
  }
  .ly-nav-list {
    flex-direction: column;
    gap: 24px;
  }
  .ly-nav-list a {
    color: rgba(255,255,255,0.9);
    font-size: 24px;
    font-weight: 600;
  }
  .ly-nav-list a:hover,
  .ly-nav-list a.active {
    color: var(--brand-yellow);
  }
  .ly-nav-list a.active::after {
    background: var(--brand-yellow);
    bottom: 0;
  }
  .ly-nav-menu .btn-ly-brand {
    margin-top: 12px;
    font-size: 16px;
  }
  .ly-nav-contact {
    margin-top: 24px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
  }
  .ly-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .ly-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ly-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ly-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .ly-subscribe-form {
    max-width: 100%;
  }
  .ly-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ly-footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .ly-news-card {
    flex-direction: column;
  }
  .ly-news-thumb {
    flex: none;
    width: 100%;
  }
  .ly-news-thumb img {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 575px) {
  .ly-topbar-inner {
    justify-content: center;
  }
  .ly-topbar-inner span:first-child {
    display: none;
  }
  .ly-nav {
    height: 64px;
  }
  .ly-logo {
    font-size: 18px;
  }
  .ly-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .ly-nav-menu {
    padding: 32px 24px;
  }
  .ly-hero {
    padding: 48px 0 56px;
  }
  .ly-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ly-hero-actions .btn-ly-brand,
  .ly-hero-actions .btn-ly-outline-light {
    width: 100%;
  }
  .ly-live-bar {
    align-items: flex-start;
    border-radius: 16px;
    line-height: 1.6;
    margin-top: 36px;
  }
  .ly-stats-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
  }
  .ly-stat-item {
    flex: 0 0 240px;
    scroll-snap-align: start;
  }
  .ly-feature-list {
    grid-template-columns: 1fr;
  }
  .ly-news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .ly-news-card {
    padding: 0;
    overflow: hidden;
  }
  .ly-news-thumb {
    border-radius: 0;
  }
  .ly-news-content {
    padding: 0 16px 16px;
  }
  .ly-subscribe-form {
    flex-direction: column;
    gap: 12px;
  }
  .ly-subscribe-form button {
    width: 100%;
  }
  .ly-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .ly-footer-bottom p {
    margin-bottom: 4px;
  }
}

/* roulang page: category1 */
:root {
            --brand-yellow: #F5C518;
            --brand-yellow-dark: #E6B400;
            --brand-dark-green: #0B3D2E;
            --brand-orange: #FF6B35;
            --brand-cyan: #2EC4B6;
            --bg-main: #F7F5F0;
            --bg-soft-green: #EEF3EF;
            --bg-card: #FFFFFF;
            --text-dark: #14231C;
            --text-body: #3D4F46;
            --text-muted: #6C7A73;
            --border-light: rgba(11, 61, 46, 0.08);
            --border-input: rgba(11, 61, 46, 0.12);
            --shadow-card: 0 4px 20px rgba(11, 61, 46, 0.06);
            --shadow-hover: 0 12px 40px rgba(11, 61, 46, 0.12);
            --radius-card: 20px;
            --radius-mid: 14px;
            --radius-btn: 999px;
            --radius-input: 12px;
            --font-cn: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
            --font-num: "DIN Alternate", "Bebas Neue", "Roboto Condensed", sans-serif;
            --spacing-section: clamp(56px, 8vw, 96px);
            --transition-base: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-cn);
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            color: var(--brand-cyan);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--brand-dark-green);
        }

        .container {
            max-width: 1140px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .ly-section {
            padding-top: var(--spacing-section);
            padding-bottom: var(--spacing-section);
        }

        /* ========== Header / Nav ========== */
        .ly-header {
            background: #fff;
            border-bottom: 1px solid var(--border-light);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        .ly-header.scrolled {
            box-shadow: 0 6px 24px rgba(11, 61, 46, 0.08);
        }

        .ly-header .ly-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 78px;
            gap: 24px;
        }

        .ly-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: var(--brand-dark-green);
        }

        .ly-logo:hover {
            color: var(--brand-dark-green);
        }

        .ly-logo-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-orange) 100%);
            border-radius: 12px;
            color: var(--brand-dark-green);
            font-size: 18px;
        }

        .ly-nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            flex: 1;
            justify-content: flex-end;
        }

        .ly-nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 6px;
        }

        .ly-nav-list li a {
            display: inline-block;
            padding: 8px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-body);
            border-radius: 999px;
            border-bottom: 3px solid transparent;
            transition: var(--transition-base);
        }

        .ly-nav-list li a:hover {
            color: var(--brand-dark-green);
            background: rgba(11, 61, 46, 0.04);
        }

        .ly-nav-list li a.active {
            color: var(--brand-dark-green);
            font-weight: 700;
            border-bottom-color: var(--brand-cyan);
            background: rgba(46, 196, 182, 0.08);
        }

        .ly-nav-cta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ly-nav-contact {
            font-size: 13px;
            color: var(--text-muted);
            white-space: nowrap;
        }

        .ly-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            color: var(--brand-dark-green);
            cursor: pointer;
            padding: 8px;
        }
        /* ========== Buttons ========== */
        .btn-ly-brand {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--brand-yellow);
            color: var(--brand-dark-green);
            border: 1px solid transparent;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 15px;
            padding: 10px 24px;
            transition: var(--transition-base);
            cursor: pointer;
            text-decoration: none;
        }

        .btn-ly-brand:hover {
            background: var(--brand-yellow-dark);
            color: var(--brand-dark-green);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 197, 24, 0.35);
        }

        .btn-ly-brand.btn-sm {
            padding: 7px 18px;
            font-size: 14px;
        }

        .btn-ly-outline-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--brand-dark-green);
            border: 2px solid var(--brand-dark-green);
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 15px;
            padding: 9px 24px;
            transition: var(--transition-base);
            cursor: pointer;
            text-decoration: none;
        }

        .btn-ly-outline-dark:hover {
            background: var(--brand-dark-green);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-ly-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #fff;
            color: var(--brand-dark-green);
            border: 1px solid transparent;
            border-radius: var(--radius-btn);
            font-weight: 700;
            font-size: 15px;
            padding: 10px 24px;
            transition: var(--transition-base);
            cursor: pointer;
            text-decoration: none;
        }
        .btn-ly-light:hover {
            background: var(--brand-yellow);
            color: var(--brand-dark-green);
            transform: translateY(-2px);
        }
        .btn-ly-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.8);
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 15px;
            padding: 8px 22px;
            transition: var(--transition-base);
            cursor: pointer;
            text-decoration: none;
        }
        .btn-ly-outline-light:hover {
            background: #fff;
            color: var(--brand-dark-green);
            transform: translateY(-2px);
        }

        .btn-ly-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(46, 196, 182, 0.1);
            color: var(--brand-dark-green);
            border-radius: 999px;
            padding: 6px 16px 6px 12px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition-base);
            text-decoration: none;
        }
        .btn-ly-link i {
            transition: transform 0.25s ease;
            font-size: 12px;
        }
        .btn-ly-link:hover {
            background: rgba(46, 196, 182, 0.2);
            color: var(--brand-dark-green);
        }
        .btn-ly-link:hover i {
            transform: translateX(4px);
        }

        /* ========== Page Hero ========== */
        .category-hero {
            background: linear-gradient(135deg, var(--brand-dark-green) 0%, #14543C 60%, #1A6B4A 100%);
            padding: clamp(56px, 7vw, 90px) 0;
            position: relative;
            overflow: hidden;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 280px;
            height: 280px;
            background: radial-gradient(circle, rgba(245, 197, 24, 0.12) 0%, transparent 70%);
            border-radius: 50%;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: 10%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(46, 196, 182, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .category-hero .ly-crumb {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        .category-hero .ly-crumb a {
            color: rgba(255, 255, 255, 0.7);
        }
        .category-hero .ly-crumb a:hover {
            color: var(--brand-yellow);
        }
        .category-hero h1 {
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 18px;
        }
        .category-hero h1 span {
            color: var(--brand-yellow);
        }
        .category-hero .ly-hero-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 680px;
            line-height: 1.9;
            margin-bottom: 30px;
        }
        .category-hero .ly-hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* ========== Cards ========== */
        .ly-card {
            background: var(--bg-card);
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            border: none;
            overflow: hidden;
            transition: var(--transition-base);
            position: relative;
        }
        .ly-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .ly-card:hover::before {
            transform: scaleX(1);
        }
        .ly-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--brand-yellow);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
            z-index: 1;
        }

        /* Sports list cards */
        .sport-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: var(--transition-base);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .sport-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }
        .sport-card .sport-thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: var(--bg-soft-green);
        }
        .sport-card .sport-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .sport-card:hover .sport-thumb img {
            transform: scale(1.05);
        }
        .sport-card .sport-body {
            padding: 24px 26px 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .sport-card .sport-tag {
            display: inline-block;
            background: rgba(46, 196, 182, 0.12);
            color: var(--brand-dark-green);
            font-size: 13px;
            font-weight: 600;
            border-radius: 999px;
            padding: 3px 14px;
            margin-bottom: 12px;
            align-self: flex-start;
        }
        .sport-card h3 {
            font-size: 21px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        .sport-card p {
            font-size: 15px;
            color: var(--text-body);
            line-height: 1.75;
            margin-bottom: 16px;
            flex: 1;
        }
        .sport-card .sport-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
            padding-top: 14px;
            border-top: 1px solid var(--border-light);
        }
        .sport-card .sport-meta i {
            color: var(--brand-cyan);
            margin-right: 4px;
        }

        /* ========== Stats ========== */
        .ly-stats-section {
            background: #fff;
            padding: clamp(40px, 5vw, 60px) 0;
            border-bottom: 1px solid var(--border-light);
        }
        .ly-stat-item {
            text-align: center;
            padding: 16px 8px;
        }
        .ly-stat-num {
            font-family: var(--font-num);
            font-size: clamp(36px, 4.5vw, 52px);
            font-weight: 800;
            color: var(--brand-dark-green);
            line-height: 1.2;
        }
        .ly-stat-num em {
            font-style: normal;
            color: var(--brand-orange);
        }
        .ly-stat-label {
            font-size: 14px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* ========== Feature bullets ========== */
        .ly-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .ly-feature-item {
            padding: 30px 26px;
            border-radius: var(--radius-card);
            background: #fff;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
            border-top: 4px solid var(--brand-yellow);
        }
        .ly-feature-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .ly-feature-item i {
            font-size: 30px;
            color: var(--brand-orange);
            margin-bottom: 16px;
        }
        .ly-feature-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark);
        }
        .ly-feature-item p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ========== Steps ========== */
        .ly-steps-section {
            background: var(--bg-soft-green);
        }
        .ly-step-item {
            text-align: center;
            padding: 24px 16px;
            position: relative;
        }
        .ly-step-num {
            width: 56px;
            height: 56px;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange));
            color: var(--brand-dark-green);
            font-family: var(--font-num);
            font-size: 24px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
        }
        .ly-step-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-dark);
        }
        .ly-step-item p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            max-width: 260px;
            margin: 0 auto;
        }

        /* ========== FAQ ========== */
        .ly-faq-section {
            background: var(--bg-main);
        }
        .ly-faq-item {
            background: #fff;
            border-radius: var(--radius-mid);
            padding: 22px 26px;
            margin-bottom: 14px;
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
        }
        .ly-faq-item:hover {
            box-shadow: var(--shadow-hover);
        }
        .ly-faq-item h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .ly-faq-item h3 i {
            color: var(--brand-yellow);
            font-size: 14px;
        }
        .ly-faq-item p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 0;
            padding-left: 24px;
        }

        /* ========== CTA ========== */
        .ly-cta-band {
            background: linear-gradient(135deg, var(--brand-yellow) 0%, #FFD95C 50%, var(--brand-orange) 100%);
            padding: clamp(40px, 6vw, 70px) 0;
            position: relative;
            overflow: hidden;
        }
        .ly-cta-band::after {
            content: '';
            position: absolute;
            right: -30px;
            bottom: -30px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
            border-radius: 50%;
        }
        .ly-cta-band .ly-cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        .ly-cta-band h2 {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            color: var(--brand-dark-green);
            margin-bottom: 6px;
        }
        .ly-cta-band p {
            font-size: 16px;
            color: rgba(11, 61, 46, 0.75);
            margin-bottom: 0;
        }

        /* ========== Footer ========== */
        .ly-footer {
            background: var(--brand-dark-green);
            color: rgba(255, 255, 255, 0.85);
            padding: clamp(48px, 6vw, 70px) 0 0;
        }
        .ly-footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 0.8fr 1fr;
            gap: 48px;
            padding-bottom: 40px;
        }
        .ly-footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .ly-footer-logo i {
            color: var(--brand-yellow);
        }
        .ly-footer-logo:hover {
            color: var(--brand-yellow);
        }
        .ly-footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 20px;
            max-width: 320px;
        }
        .ly-footer-social {
            display: flex;
            gap: 12px;
        }
        .ly-footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 16px;
            transition: var(--transition-base);
        }
        .ly-footer-social a:hover {
            background: var(--brand-yellow);
            color: var(--brand-dark-green);
        }
        .ly-footer h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
        }
        .ly-footer-columns {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .ly-footer-columns a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: color 0.25s ease;
        }
        .ly-footer-columns a:hover {
            color: var(--brand-yellow);
        }
        .ly-footer-contact p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 10px;
        }
        .ly-footer-contact i {
            color: var(--brand-cyan);
            margin-right: 10px;
            width: 16px;
            text-align: center;
        }
        .ly-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            flex-wrap: wrap;
            gap: 10px;
        }
        .ly-footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }
        .ly-footer-bottom a:hover {
            color: var(--brand-yellow);
        }

        /* ========== Section Titles ========== */
        .ly-section-head {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 48px;
        }
        .ly-section-head .ly-eyebrow {
            display: inline-block;
            background: rgba(245, 197, 24, 0.2);
            color: var(--brand-dark-green);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 16px;
            border-radius: 999px;
            margin-bottom: 14px;
        }
        .ly-section-head h2 {
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 12px;
        }
        .ly-section-head p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ========== Section title left ========== */
        .ly-section-head-left {
            margin-bottom: 32px;
        }
        .ly-section-head-left .ly-eyebrow {
            display: inline-block;
            background: rgba(46, 196, 182, 0.1);
            color: var(--brand-dark-green);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
            margin-bottom: 12px;
        }
        .ly-section-head-left h2 {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 800;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .ly-section-head-left p {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 640px;
        }

        /* ========== Approach band ========== */
        .ly-scene-card {
            background: #fff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 32px 30px;
            height: 100%;
            transition: var(--transition-base);
            border-left: 4px solid var(--brand-cyan);
        }
        .ly-scene-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .ly-scene-card i {
            font-size: 28px;
            color: var(--brand-cyan);
            margin-bottom: 14px;
        }
        .ly-scene-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }
        .ly-scene-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ly-scene-card ul li {
            font-size: 14px;
            color: var(--text-body);
            padding: 4px 0;
            padding-left: 20px;
            position: relative;
        }
        .ly-scene-card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 13px;
            width: 8px;
            height: 8px;
            background: var(--brand-yellow);
            border-radius: 50%;
        }

        /* ========== Mobile Nav ========== */
        @media (max-width: 991.98px) {
            .ly-nav {
                height: 64px !important;
            }
            .ly-nav-toggle {
                display: block;
                z-index: 1200;
            }
            .ly-nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(80vw, 380px);
                height: 100vh;
                background: var(--brand-dark-green);
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 80px 32px 40px;
                gap: 20px;
                transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                z-index: 1100;
                box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
                overflow-y: auto;
            }
            .ly-nav-menu.open {
                right: 0;
            }
            .ly-nav-list {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                gap: 4px;
            }
            .ly-nav-list li {
                width: 100%;
            }
            .ly-nav-list li a {
                display: block;
                font-size: 18px;
                color: rgba(255, 255, 255, 0.85);
                padding: 12px 16px;
                border-radius: 10px;
                border-left: 4px solid transparent;
                border-bottom: none;
            }
            .ly-nav-list li a:hover {
                background: rgba(255, 255, 255, 0.06);
                color: #fff;
            }
            .ly-nav-list li a.active {
                background: rgba(245, 197, 24, 0.12);
                color: var(--brand-yellow);
                border-left-color: var(--brand-yellow);
                border-bottom: none;
            }
            .ly-nav-menu .btn-ly-brand {
                margin-top: 10px;
                width: 100%;
            }
            .ly-nav-contact {
                color: rgba(255, 255, 255, 0.6);
                font-size: 14px;
            }
        }

        @media (max-width: 767.98px) {
            .ly-feature-grid {
                grid-template-columns: 1fr 1fr;
            }
            .ly-footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .ly-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .sport-card .sport-body {
                padding: 20px;
            }
        }

        @media (max-width: 575.98px) {
            .ly-feature-grid {
                grid-template-columns: 1fr;
            }
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .category-hero {
                padding: 48px 0;
            }
            .category-hero .ly-hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .category-hero .ly-hero-actions .btn {
                width: 100%;
            }
            .ly-stats-section .ly-stat-item {
                padding: 12px 4px;
            }
            .ly-step-item {
                padding: 16px 8px;
            }
            .ly-cta-band .ly-cta-content {
                flex-direction: column;
                text-align: center;
            }
        }

/* roulang page: category2 */
:root {
            --brand-yellow: #F5C518;
            --brand-yellow-dark: #E6B400;
            --brand-dark-green: #0B3D2E;
            --brand-orange: #FF6B35;
            --brand-cyan: #2EC4B6;
            --bg-main: #F7F5F0;
            --bg-light-green: #F0F5F2;
            --card-bg: #FFFFFF;
            --text-main: #0B3D2E;
            --text-body: #3A5247;
            --text-light: #6C8578;
            --border-light: rgba(11, 61, 46, 0.08);
            --shadow-card: 0 4px 20px rgba(11, 61, 46, 0.06);
            --shadow-hover: 0 12px 40px rgba(11, 61, 46, 0.12);
            --radius-card: 20px;
            --radius-medium: 14px;
            --radius-input: 12px;
            --radius-pill: 999px;
            --font-cn: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
            --font-num: "DIN Alternate", "Bebas Neue", "Roboto Condensed", "Arial Narrow", sans-serif;
            --space-section: clamp(56px, 8vw, 96px);
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-cn);
            background-color: var(--bg-main);
            color: var(--text-body);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: var(--brand-dark-green);
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--brand-cyan);
        }

        button,
        input {
            font-family: inherit;
        }

        .container {
            max-width: 1140px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== 顶部细条 ===== */
        .ly-topbar {
            background: var(--brand-dark-green);
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            line-height: 36px;
            height: 36px;
        }
        .ly-topbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .ly-topbar i {
            color: var(--brand-yellow);
            margin-right: 5px;
        }
        .ly-topbar-right a {
            color: rgba(255, 255, 255, 0.85);
            margin-left: 18px;
        }
        .ly-topbar-right a:hover {
            color: var(--brand-yellow);
        }

        /* ===== 导航 ===== */
        .ly-header {
            background: #ffffff;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-light);
            transition: box-shadow 0.3s ease;
        }
        .ly-header.scrolled {
            box-shadow: 0 4px 20px rgba(11, 61, 46, 0.08);
        }
        .ly-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 76px;
            gap: 24px;
        }
        .ly-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 22px;
            color: var(--brand-dark-green) !important;
            white-space: nowrap;
        }
        .ly-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange));
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-dark-green);
            font-size: 18px;
            flex-shrink: 0;
        }
        .ly-nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
        }
        .ly-nav-list {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
            padding: 0;
        }
        .ly-nav-list li a {
            display: inline-block;
            padding: 8px 14px;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-main);
            border-radius: 8px;
            position: relative;
            transition: all 0.25s ease;
        }
        .ly-nav-list li a:hover {
            color: var(--brand-cyan);
        }
        .ly-nav-list li a.active {
            color: var(--brand-cyan);
            font-weight: 700;
        }
        .ly-nav-list li a.active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 2px;
            height: 3px;
            background: var(--brand-cyan);
            border-radius: 3px;
        }
        .btn-ly-brand {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--brand-yellow);
            color: var(--brand-dark-green) !important;
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-pill);
            padding: 10px 24px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn-ly-brand:hover {
            background: var(--brand-yellow-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(245, 197, 24, 0.35);
        }
        .ly-nav-contact {
            font-size: 13px;
            color: var(--text-light);
            white-space: nowrap;
        }
        .ly-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--brand-dark-green);
            cursor: pointer;
            padding: 6px 10px;
        }

        /* ===== 按钮通用 ===== */
        .btn-ly-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.7);
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 15px;
            padding: 10px 26px;
            transition: all 0.25s ease;
        }
        .btn-ly-outline-light:hover {
            background: #ffffff;
            color: var(--brand-dark-green);
        }
        .btn-ly-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--brand-cyan);
            font-weight: 600;
            font-size: 14px;
            transition: all 0.25s ease;
        }
        .btn-ly-link:hover {
            color: var(--brand-dark-green);
        }
        .btn-ly-link i {
            transition: transform 0.25s ease;
        }
        .btn-ly-link:hover i {
            transform: translateX(4px);
        }

        /* ===== 页面页头 ===== */
        .ly-page-hero {
            background: linear-gradient(120deg, #0B3D2E 0%, #145240 60%), var(--brand-dark-green);
            position: relative;
            padding: clamp(56px, 7vw, 88px) 0;
            overflow: hidden;
        }
        .ly-page-hero::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -40px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: rgba(245, 197, 24, 0.08);
        }
        .ly-page-hero::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: 20%;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(46, 196, 182, 0.06);
        }
        .ly-page-hero .container {
            position: relative;
            z-index: 2;
        }
        .ly-crumb {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }
        .ly-crumb a {
            color: rgba(255, 255, 255, 0.75);
        }
        .ly-crumb a:hover {
            color: var(--brand-yellow);
        }
        .ly-crumb .sep {
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.35);
        }
        .ly-crumb .current {
            color: var(--brand-yellow);
            font-weight: 600;
        }
        .ly-page-hero h1 {
            font-size: clamp(30px, 5vw, 44px);
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 16px;
        }
        .ly-page-hero h1 .highlight {
            color: var(--brand-yellow);
        }
        .ly-page-hero .lead {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 640px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* ===== 筛选标签 ===== */
        .ly-filter-section {
            background: var(--bg-main);
            padding-top: 0;
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }
        .ly-filter-wrap {
            background: #ffffff;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-card);
            padding: 18px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }
        .ly-filter-label {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-main);
            margin-right: 6px;
        }
        .ly-filter-wrap .ly-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 18px;
            border-radius: var(--radius-pill);
            background: var(--bg-main);
            color: var(--text-body);
            font-size: 14px;
            font-weight: 500;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .ly-filter-wrap .ly-tag:hover {
            background: rgba(46, 196, 182, 0.12);
            color: var(--brand-cyan);
        }
        .ly-filter-wrap .ly-tag.active {
            background: var(--brand-dark-green);
            color: #ffffff;
        }

        /* ===== 赛事时间线 ===== */
        .ly-timeline-section {
            padding: var(--space-section) 0;
            background: var(--bg-main);
        }
        .ly-section-head {
            margin-bottom: 44px;
        }
        .ly-section-head h2 {
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 10px;
        }
        .ly-section-head p {
            color: var(--text-light);
            font-size: 16px;
            max-width: 560px;
        }

        .ly-timeline {
            position: relative;
        }
        .ly-timeline::before {
            content: "";
            position: absolute;
            left: 90px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: repeating-linear-gradient(to bottom, rgba(11, 61, 46, 0.12) 0 4px, transparent 4px 8px);
        }
        .ly-timeline-item {
            position: relative;
            display: flex;
            gap: 32px;
            align-items: flex-start;
            margin-bottom: 32px;
            padding-left: 0;
        }
        .ly-timeline-date {
            flex-shrink: 0;
            width: 90px;
            text-align: center;
            background: var(--brand-dark-green);
            border-radius: var(--radius-medium);
            color: #fff;
            padding: 14px 8px;
            box-shadow: 0 4px 16px rgba(11, 61, 46, 0.18);
            position: relative;
            z-index: 1;
        }
        .ly-timeline-date .month {
            display: block;
            font-size: 13px;
            letter-spacing: 2px;
            opacity: 0.75;
        }
        .ly-timeline-date .day {
            display: block;
            font-family: var(--font-num);
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--brand-yellow);
        }
        .ly-timeline-card {
            flex: 1;
            background: #ffffff;
            border-radius: var(--radius-card);
            padding: 24px 28px;
            box-shadow: var(--shadow-card);
            border-left: 4px solid transparent;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .ly-timeline-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-left-color: var(--brand-yellow);
        }
        .ly-timeline-main {
            flex: 1;
            min-width: 240px;
        }
        .ly-timeline-main h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .ly-timeline-main p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .ly-status {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: var(--radius-pill);
            margin-left: 8px;
            vertical-align: middle;
        }
        .ly-status-signup {
            background: rgba(255, 107, 53, 0.12);
            color: var(--brand-orange);
        }
        .ly-status-ready {
            background: rgba(46, 196, 182, 0.12);
            color: #1E9E93;
        }
        .ly-status-soon {
            background: rgba(108, 133, 120, 0.12);
            color: var(--text-light);
        }
        .ly-timeline-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .ly-timeline-tags span {
            font-size: 12px;
            background: var(--bg-main);
            color: var(--text-body);
            padding: 4px 10px;
            border-radius: var(--radius-pill);
        }
        .ly-timeline-thumb {
            width: 180px;
            height: 120px;
            border-radius: var(--radius-medium);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-light-green);
        }
        .ly-timeline-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .ly-timeline-card:hover .ly-timeline-thumb img {
            transform: scale(1.05);
        }

        /* ===== 数据亮点 ===== */
        .ly-stats-band {
            background: var(--brand-dark-green);
            padding: clamp(48px, 6vw, 76px) 0;
            position: relative;
            overflow: hidden;
        }
        .ly-stats-band::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(245, 197, 24, 0.08), transparent 40%);
        }
        .ly-stat-item {
            text-align: center;
            padding: 24px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-card);
            backdrop-filter: blur(2px);
            transition: all 0.3s ease;
        }
        .ly-stat-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }
        .ly-stat-num {
            font-family: var(--font-num);
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 700;
            color: var(--brand-yellow);
            line-height: 1.1;
            display: block;
            margin-bottom: 6px;
        }
        .ly-stat-item:nth-child(even) .ly-stat-num {
            color: var(--brand-cyan);
        }
        .ly-stat-label {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.82);
            letter-spacing: 1px;
        }

        /* ===== 合作机构 ===== */
        .ly-partners-section {
            padding: var(--space-section) 0;
            background: #ffffff;
        }
        .ly-partner-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .ly-partner-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 22px 16px;
            background: var(--bg-main);
            border-radius: var(--radius-medium);
            font-size: 16px;
            font-weight: 600;
            color: var(--text-body);
            transition: all 0.25s ease;
            text-align: center;
            border: 1px solid transparent;
        }
        .ly-partner-item:hover {
            background: #fff;
            box-shadow: var(--shadow-card);
            border-color: var(--border-light);
            color: var(--brand-dark-green);
        }
        .ly-partner-item i {
            color: var(--brand-cyan);
            font-size: 20px;
        }

        /* ===== FAQ ===== */
        .ly-faq-section {
            padding: var(--space-section) 0;
            background: var(--bg-light-green);
        }
        .ly-faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .ly-faq-item {
            background: #ffffff;
            border-radius: var(--radius-medium);
            padding: 0;
            margin-bottom: 14px;
            box-shadow: var(--shadow-card);
            overflow: hidden;
            transition: box-shadow 0.3s ease;
        }
        .ly-faq-item:hover {
            box-shadow: var(--shadow-hover);
        }
        .ly-faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            transition: color 0.25s ease;
        }
        .ly-faq-q:hover {
            color: var(--brand-cyan);
        }
        .ly-faq-q i {
            color: var(--brand-cyan);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        .ly-faq-item.open .ly-faq-q i {
            transform: rotate(45deg);
        }
        .ly-faq-a {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-body);
        }
        .ly-faq-item.open .ly-faq-a {
            padding: 0 24px 20px;
            max-height: 300px;
        }

        /* ===== CTA ===== */
        .ly-cta-section {
            background: linear-gradient(120deg, var(--brand-yellow), #FFD23E);
            padding: clamp(48px, 6vw, 72px) 0;
            position: relative;
            overflow: hidden;
        }
        .ly-cta-section::after {
            content: "";
            position: absolute;
            right: -40px;
            bottom: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(11, 61, 46, 0.06);
        }
        .ly-cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 28px;
            position: relative;
            z-index: 1;
        }
        .ly-cta-content h2 {
            font-size: clamp(26px, 4vw, 36px);
            font-weight: 800;
            color: var(--brand-dark-green);
            margin-bottom: 6px;
        }
        .ly-cta-content p {
            color: rgba(11, 61, 46, 0.75);
            font-size: 16px;
            margin-bottom: 0;
        }
        .ly-cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .btn-ly-dark-green {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--brand-dark-green);
            color: #ffffff !important;
            border-radius: var(--radius-pill);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.25s ease;
            border: 2px solid transparent;
        }
        .btn-ly-dark-green:hover {
            background: #145240;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(11, 61, 46, 0.25);
        }
        .btn-ly-outline-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--brand-dark-green);
            border: 2px solid var(--brand-dark-green);
            border-radius: var(--radius-pill);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.25s ease;
        }
        .btn-ly-outline-dark:hover {
            background: var(--brand-dark-green);
            color: #fff;
        }

        /* ===== Footer ===== */
        .ly-footer {
            background: var(--brand-dark-green);
            color: rgba(255, 255, 255, 0.75);
            padding-top: 64px;
            font-size: 14px;
        }
        .ly-footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 40px;
        }
        .ly-footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 14px;
        }
        .ly-footer-logo i {
            color: var(--brand-yellow);
        }
        .ly-footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 280px;
            line-height: 1.7;
        }
        .ly-footer-social {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }
        .ly-footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.25s ease;
        }
        .ly-footer-social a:hover {
            background: var(--brand-yellow);
            color: var(--brand-dark-green);
        }
        .ly-footer-links h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .ly-footer-columns {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }
        .ly-footer-columns a {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            transition: color 0.25s ease;
        }
        .ly-footer-columns a:hover {
            color: var(--brand-yellow);
        }
        .ly-footer-contact h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .ly-footer-contact p {
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 8px;
            font-size: 14px;
        }
        .ly-footer-contact p i {
            width: 22px;
            color: var(--brand-yellow);
        }
        .ly-footer-contact p a {
            color: rgba(255, 255, 255, 0.65);
        }
        .ly-footer-contact p a:hover {
            color: var(--brand-yellow);
        }
        .ly-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }
        .ly-footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }
        .ly-footer-bottom a:hover {
            color: var(--brand-yellow);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 991.98px) {
            .ly-nav-menu {
                position: fixed;
                top: 0;
                right: -320px;
                width: 300px;
                height: 100vh;
                background: var(--brand-dark-green);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 32px 32px;
                gap: 20px;
                transition: right 0.3s ease;
                z-index: 1030;
                box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
                overflow-y: auto;
            }
            .ly-nav-menu.open {
                right: 0;
            }
            .ly-nav-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
                width: 100%;
            }
            .ly-nav-list li {
                width: 100%;
            }
            .ly-nav-list li a {
                display: block;
                color: rgba(255, 255, 255, 0.85);
                font-size: 18px;
                padding: 12px 8px;
                border-left: 3px solid transparent;
                border-radius: 0;
            }
            .ly-nav-list li a.active {
                color: var(--brand-yellow);
                border-left-color: var(--brand-yellow);
            }
            .ly-nav-list li a.active::after {
                display: none;
            }
            .ly-nav-menu .btn-ly-brand {
                margin-top: 12px;
                width: 100%;
            }
            .ly-nav-contact {
                color: rgba(255, 255, 255, 0.6);
            }
            .ly-nav-toggle {
                display: block;
                position: relative;
                z-index: 1040;
            }
            .ly-nav-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.4);
                z-index: 1020;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            .ly-nav-overlay.open {
                opacity: 1;
                visibility: visible;
            }
            .ly-timeline::before {
                left: 24px;
            }
            .ly-timeline-item {
                flex-direction: column;
                gap: 12px;
                padding-left: 0;
            }
            .ly-timeline-date {
                width: auto;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 8px 20px;
                border-radius: var(--radius-pill);
            }
            .ly-timeline-date .day {
                font-size: 24px;
            }
            .ly-timeline-card {
                margin-left: 0;
                width: 100%;
            }
            .ly-partner-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .ly-footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
        }

        @media (max-width: 767.98px) {
            .ly-topbar-right a {
                margin-left: 10px;
            }
            .ly-stat-item {
                margin-bottom: 16px;
            }
            .ly-timeline-thumb {
                width: 100%;
                height: 160px;
            }
            .ly-timeline-card {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
            }
            .ly-filter-wrap {
                padding: 14px 16px;
                gap: 8px;
            }
            .ly-cta-actions .btn-ly-dark-green,
            .ly-cta-actions .btn-ly-outline-dark {
                width: 100%;
            }
        }

        @media (max-width: 575.98px) {
            .ly-logo {
                font-size: 18px;
            }
            .ly-logo-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
                border-radius: 10px;
            }
            .ly-partner-grid {
                grid-template-columns: 1fr 1fr;
            }
            .ly-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .ly-timeline-card {
                padding: 18px;
            }
        }

/* roulang page: article */
:root {
  --brand-yellow: #F5C518;
  --brand-dark-green: #0B3D2E;
  --brand-orange: #FF6B35;
  --brand-cyan: #2EC4B6;
  --bg-main: #F7F5F0;
  --bg-light-green: #F0F4F1;
  --text-dark: #0B3D2E;
  --text-body: #3D5A4E;
  --text-muted: #7A8F85;
  --border-light: rgba(11, 61, 46, 0.08);
  --shadow-card: 0 4px 20px rgba(11, 61, 46, 0.06);
  --shadow-hover: 0 12px 40px rgba(11, 61, 46, 0.12);
  --radius-card: 20px;
  --radius-sm: 14px;
  --font-cn: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  --font-num: "DIN Alternate", "Bebas Neue", "Roboto Condensed", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-cn);
  background: var(--bg-main);
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: var(--brand-cyan);
  transition: all 0.25s ease;
}
a:hover {
  color: var(--brand-dark-green);
}
img {
  max-width: 100%;
  height: auto;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}
button,
input {
  font-family: inherit;
}

/* ===== Topbar ===== */
.ly-topbar {
  background: var(--brand-dark-green);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  height: 36px;
  display: flex;
  align-items: center;
}
.ly-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ly-topbar i {
  margin-right: 4px;
}

/* ===== Header / Nav ===== */
.ly-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(11, 61, 46, 0.06);
  transition: box-shadow 0.3s ease;
}
.ly-header.scrolled {
  box-shadow: 0 4px 20px rgba(11, 61, 46, 0.08);
}
.ly-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.ly-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-dark-green);
  white-space: nowrap;
}
.ly-logo:hover {
  color: var(--brand-dark-green);
}
.ly-logo-icon {
  background: var(--brand-yellow);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark-green);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.35);
}
.ly-nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ly-nav-list {
  display: flex;
  gap: 6px;
  align-items: center;
}
.ly-nav-list li {
  margin: 0;
}
.ly-nav-list a {
  color: var(--text-body);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
}
.ly-nav-list a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--brand-cyan);
  border-radius: 3px;
  transition: width 0.3s ease;
}
.ly-nav-list a:hover {
  color: var(--brand-dark-green);
  background: rgba(46, 196, 182, 0.08);
}
.ly-nav-list a:hover::after,
.ly-nav-list a.active::after {
  width: 60%;
}
.ly-nav-list a.active {
  color: var(--brand-dark-green);
  font-weight: 700;
  background: rgba(46, 196, 182, 0.1);
}
.ly-nav-contact {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  display: none;
}
.ly-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--brand-dark-green);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}
.ly-nav-toggle:hover {
  background: rgba(11, 61, 46, 0.06);
}
.ly-nav-toggle:focus {
  outline: 2px solid var(--brand-cyan);
  outline-offset: 2px;
}

/* ===== Buttons ===== */
.btn-ly-brand {
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.3);
}
.btn-ly-brand:hover {
  background: #E6B400;
  transform: translateY(-2px);
  color: var(--brand-dark-green);
  box-shadow: 0 8px 24px rgba(245, 197, 24, 0.4);
}
.btn-ly-brand:active {
  transform: translateY(0);
}
.btn-ly-brand.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}
.btn-ly-brand.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}
.btn-ly-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-weight: 600;
  padding: 10px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-ly-outline-light:hover {
  background: #fff;
  color: var(--brand-dark-green);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===== Badge ===== */
.ly-badge {
  display: inline-block;
  background: rgba(46, 196, 182, 0.12);
  color: var(--brand-cyan);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(46, 196, 182, 0.2);
  margin-right: 6px;
}

/* ===== Breadcrumb ===== */
.ly-breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.ly-breadcrumb a {
  color: var(--text-muted);
}
.ly-breadcrumb a:hover {
  color: var(--brand-cyan);
}
.ly-breadcrumb .ly-breadcrumb-sep {
  color: #c0c8c4;
}
.ly-breadcrumb .current {
  color: var(--brand-dark-green);
  font-weight: 700;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ly-breadcrumb i {
  font-size: 13px;
  margin-right: 2px;
}

/* ===== Article Section ===== */
.ly-article-section {
  background: #fff;
  padding: clamp(36px, 5vw, 60px) 0 clamp(48px, 6vw, 72px);
}
.ly-article-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.ly-article-header {
  margin-bottom: 36px;
}
.ly-article-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--brand-dark-green);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.ly-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
  align-items: center;
}
.ly-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ly-article-meta i {
  color: var(--brand-cyan);
}
.ly-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ly-article-content {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.ly-article-content p {
  margin-bottom: 18px;
}
.ly-article-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-dark-green);
  margin: 40px 0 16px;
  position: relative;
  padding-left: 18px;
}
.ly-article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 26px;
  background: var(--brand-yellow);
  border-radius: 4px;
}
.ly-article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark-green);
  margin: 32px 0 12px;
}
.ly-article-content blockquote {
  border-left: 4px solid var(--brand-yellow);
  background: rgba(245, 197, 24, 0.06);
  padding: 18px 24px;
  border-radius: 0 14px 14px 0;
  margin: 24px 0;
  color: var(--text-dark);
  font-style: normal;
}
.ly-article-content ul {
  margin-bottom: 18px;
  padding-left: 0;
}
.ly-article-content ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.ly-article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--brand-yellow);
  border-radius: 50%;
}
.ly-article-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.ly-article-content ol li {
  margin-bottom: 8px;
}
.ly-article-content ol li::marker {
  color: var(--brand-dark-green);
  font-weight: 700;
}
.ly-article-content strong {
  color: var(--brand-dark-green);
  font-weight: 700;
}
.ly-article-content a {
  color: var(--brand-cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ly-article-content a:hover {
  color: var(--brand-dark-green);
}
.ly-article-content img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}
.ly-article-content figure {
  margin: 24px 0;
}
.ly-article-content figcaption {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 8px;
}
.ly-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  display: block;
  overflow-x: auto;
  font-size: 14px;
}
.ly-article-content table th {
  background: var(--brand-dark-green);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.ly-article-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  white-space: nowrap;
}
.ly-article-content table tr:nth-child(even) td {
  background: rgba(11, 61, 46, 0.03);
}
.ly-article-content code {
  background: rgba(11, 61, 46, 0.06);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--brand-dark-green);
}

/* ===== Article Footer ===== */
.ly-article-footer {
  max-width: 780px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ly-article-share {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.ly-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11, 61, 46, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark-green);
  transition: all 0.25s ease;
}
.ly-share-btn:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
  transform: translateY(-2px);
}

/* ===== Empty State ===== */
.ly-article-empty {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-main);
  border-radius: var(--radius-card);
}
.ly-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--brand-yellow);
  margin-bottom: 20px;
}
.ly-article-empty h1 {
  font-size: 28px;
  color: var(--brand-dark-green);
  margin-bottom: 12px;
}
.ly-article-empty p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ===== Related Section ===== */
.ly-related-section {
  background: var(--bg-light-green);
  padding: clamp(48px, 6vw, 80px) 0;
}
.ly-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.ly-section-header h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--brand-dark-green);
  margin-bottom: 8px;
}
.ly-section-header p {
  color: var(--text-muted);
  font-size: 15px;
}
.ly-related-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  height: 100%;
  position: relative;
}
.ly-related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--brand-yellow);
  transition: height 0.3s ease;
  z-index: 1;
  border-radius: 0 0 4px 0;
}
.ly-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.ly-related-card:hover::before {
  height: 100%;
}
.ly-related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.ly-related-body {
  padding: 22px;
}
.ly-related-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark-green);
  margin-bottom: 8px;
  line-height: 1.4;
}
.ly-related-body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ly-related-date {
  font-size: 13px;
  color: var(--text-muted);
}
.ly-related-date i {
  color: var(--brand-cyan);
  margin-right: 4px;
}
.ly-related-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  padding: 40px 0;
}

/* ===== CTA Section ===== */
.ly-cta-section {
  background: linear-gradient(rgba(11, 61, 46, 0.88), rgba(11, 61, 46, 0.88)), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  padding: clamp(48px, 6vw, 64px) 0;
  text-align: center;
  position: relative;
}
.ly-cta-section h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 10px;
}
.ly-cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 24px;
}
.ly-cta-section .btn-ly-brand {
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
}

/* ===== Footer ===== */
.ly-footer {
  background: var(--brand-dark-green);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(48px, 6vw, 64px) 0 0;
}
.ly-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.ly-footer-brand .ly-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.ly-footer-brand .ly-footer-logo i {
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.ly-footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  max-width: 280px;
}
.ly-footer-social {
  display: flex;
  gap: 10px;
}
.ly-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.25s ease;
}
.ly-footer-social a:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
  border-color: var(--brand-yellow);
  transform: translateY(-2px);
}
.ly-footer-links h4,
.ly-footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.ly-footer-links h4::after,
.ly-footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--brand-yellow);
  border-radius: 3px;
}
.ly-footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.ly-footer-columns a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.25s ease;
}
.ly-footer-columns a:hover {
  color: var(--brand-yellow);
  transform: translateX(4px);
}
.ly-footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ly-footer-contact i {
  color: var(--brand-yellow);
  width: 18px;
}
.ly-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ly-footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.ly-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ly-footer-bottom a:hover {
  color: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

/* ===== Responsive ===== */
@media (min-width: 992px) {
  .ly-nav-contact {
    display: inline-block;
  }
}

@media (max-width: 991.98px) {
  .ly-nav-toggle {
    display: block;
  }
  .ly-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--brand-dark-green);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 9999;
    padding: 40px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ly-nav-menu.active {
    right: 0;
  }
  .ly-nav-list {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  .ly-nav-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 24px;
    padding: 12px 24px;
    border-radius: 12px;
  }
  .ly-nav-list a::after {
    display: none;
  }
  .ly-nav-list a.active {
    color: var(--brand-yellow);
    background: rgba(245, 197, 24, 0.1);
    border-left: 4px solid var(--brand-yellow);
    border-radius: 0 12px 12px 0;
  }
  .ly-nav-list a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: none;
  }
  .ly-nav-list li {
    width: 100%;
  }
  .ly-nav-menu .btn-ly-brand {
    margin-top: 8px;
    font-size: 16px;
    padding: 14px 40px;
  }
  .ly-nav-contact {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
  }
  .ly-nav-toggle {
    z-index: 10001;
    position: relative;
  }
  .ly-nav-toggle.active {
    color: #fff;
  }
}

@media (max-width: 767.98px) {
  .ly-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ly-topbar .container span:first-child {
    display: none;
  }
  .ly-topbar .container {
    justify-content: center;
  }
  .ly-article-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .ly-related-card img {
    height: 160px;
  }
}

@media (max-width: 575.98px) {
  .ly-logo {
    font-size: 18px;
  }
  .ly-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
  }
  .ly-article-title {
    font-size: 30px;
  }
  .ly-article-meta {
    gap: 12px;
    font-size: 13px;
  }
  .ly-article-content {
    font-size: 15px;
  }
  .ly-article-content h2 {
    font-size: 22px;
  }
  .ly-article-content h3 {
    font-size: 18px;
  }
  .ly-related-body {
    padding: 18px;
  }
  .ly-related-body h3 {
    font-size: 16px;
  }
  .ly-related-card img {
    height: 140px;
  }
  .ly-section-header h2 {
    font-size: 24px;
  }
}

/* roulang page: category3 */
:root {
  --brand-yellow: #F5C518;
  --brand-yellow-hover: #E6B400;
  --brand-dark-green: #0B3D2E;
  --brand-dark-green-soft: #155A44;
  --brand-orange: #FF6B35;
  --brand-cyan: #2EC4B6;
  --bg-main: #F7F5F0;
  --bg-green-soft: #E9F2EE;
  --bg-dark: #0B3D2E;
  --text-main: #1F2A24;
  --text-muted: #6C757D;
  --border-light: rgba(11, 61, 46, 0.08);
  --shadow-card: 0 4px 20px rgba(11, 61, 46, 0.06);
  --shadow-card-hover: 0 12px 40px rgba(11, 61, 46, 0.12);
  --radius-card: 20px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --font-cn: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --font-num: "DIN Alternate", "Bebas Neue", "Roboto Condensed", sans-serif;
  --transition-base: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-cn);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--brand-cyan);
  transition: color 0.25s ease;
}

a:hover {
  color: var(--brand-dark-green-soft);
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============ Topbar ============ */
.ly-topbar {
  background: var(--brand-dark-green);
  color: #fff;
  font-size: 13px;
  line-height: 36px;
  padding: 0 24px;
}

.ly-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.ly-topbar span {
  opacity: 0.85;
  letter-spacing: 0.2px;
}

.ly-topbar i {
  margin-right: 6px;
  color: var(--brand-yellow);
}

/* ============ Header ============ */
.ly-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #fff;
  box-shadow: 0 1px 8px rgba(11, 61, 46, 0.06);
  transition: box-shadow 0.3s ease, min-height 0.3s ease;
}

.ly-header.scrolled {
  box-shadow: 0 4px 18px rgba(11, 61, 46, 0.1);
}

.ly-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px 0;
}

.ly-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-dark-green);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.ly-logo:hover {
  color: var(--brand-dark-green);
}

.ly-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-orange) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark-green);
  font-size: 19px;
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.3);
}

.ly-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ly-nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.ly-nav-list li a {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  border-radius: 999px;
  position: relative;
  transition: var(--transition-base);
}

.ly-nav-list li a:hover {
  color: var(--brand-dark-green);
  background: rgba(46, 196, 182, 0.08);
}

.ly-nav-list li a.active {
  color: var(--brand-dark-green);
  font-weight: 700;
  background: rgba(46, 196, 182, 0.1);
  position: relative;
}

.ly-nav-list li a.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-cyan);
}

.btn-ly-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #FFD34D 100%);
  color: var(--brand-dark-green);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 28px;
  transition: var(--transition-base);
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(245, 197, 24, 0.25);
}

.btn-ly-brand:hover {
  background: var(--brand-yellow-hover);
  color: var(--brand-dark-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.35);
}

.btn-ly-brand:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 8px 22px;
  font-size: 14px;
}

.ly-nav-contact {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-left: 1px solid var(--border-light);
  padding-left: 24px;
  white-space: nowrap;
}

.ly-nav-contact i {
  color: var(--brand-orange);
  margin-right: 4px;
}

.ly-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand-dark-green);
  cursor: pointer;
  transition: var(--transition-base);
}

.ly-nav-toggle:hover {
  background: rgba(46, 196, 182, 0.08);
}

/* ============ Page Hero ============ */
.ly-page-hero {
  position: relative;
  background-color: var(--brand-dark-green);
  background-image: url('/assets/images/backpic/back-2.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(56px, 7vw, 90px) 0;
  overflow: hidden;
}

.ly-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 61, 46, 0.92) 0%, rgba(11, 61, 46, 0.72) 65%, rgba(11, 61, 46, 0.45) 100%);
}

.ly-page-hero .container {
  position: relative;
  z-index: 2;
}

.ly-page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 28px;
  font-size: 14px;
}

.ly-page-hero .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.ly-page-hero .breadcrumb-item a {
  color: var(--brand-cyan);
}

.ly-page-hero .breadcrumb-item a:hover {
  color: var(--brand-yellow);
}

.ly-page-hero .breadcrumb-item.active {
  color: var(--brand-yellow);
  font-weight: 600;
}

.ly-page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.ly-page-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 720px;
  letter-spacing: 0.5px;
}

.ly-page-hero h1 .ly-highlight {
  color: var(--brand-yellow);
}

.ly-page-hero .hero-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.ly-page-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ly-hero-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-cyan);
  font-weight: 600;
  font-size: 15px;
}

.ly-hero-arrow:hover {
  color: var(--brand-yellow);
}

.ly-hero-arrow i {
  transition: transform 0.25s ease;
}

.ly-hero-arrow:hover i {
  transform: translateX(4px);
}

/* ============ Section base ============ */
.ly-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.ly-section-bg-green {
  background: var(--bg-green-soft);
}

.ly-section-bg-white {
  background: #fff;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head .ly-badge {
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--brand-dark-green);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
}

/* ============ Badge ============ */
.ly-badge {
  display: inline-block;
  background: rgba(46, 196, 182, 0.12);
  color: var(--brand-dark-green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.ly-badge-yellow {
  background: rgba(245, 197, 24, 0.18);
  color: #5C4A00;
}

.ly-badge-orange {
  background: rgba(255, 107, 53, 0.12);
  color: #B33A12;
}

.ly-badge-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* ============ 品牌文化区 ============ */
.ly-culture {
  background: #fff;
}

.ly-culture-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.ly-culture-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.ly-culture-img::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 24px;
  right: 24px;
  height: 24px;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.4), transparent);
  border-radius: 999px;
  filter: blur(8px);
  z-index: 1;
}

.ly-culture-content {
  padding-left: 24px;
}

.ly-culture-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--brand-dark-green);
  margin: 16px 0 20px;
  line-height: 1.4;
}

.ly-culture-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ly-culture-points {
  margin-top: 24px;
}

.ly-culture-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.ly-culture-points li:last-child {
  border-bottom: none;
}

.ly-culture-points li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============ 人才理念 ============ */
.ly-values {
  background: var(--bg-main);
}

.ly-value-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ly-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
  opacity: 0;
  transition: var(--transition-base);
}

.ly-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.ly-value-card:hover::before {
  opacity: 1;
}

.ly-value-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 197, 24, 0.15), rgba(255, 107, 53, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--brand-orange);
}

.ly-value-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark-green);
  margin-bottom: 12px;
}

.ly-value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ 职位列表 ============ */
.ly-jobs {
  background: #fff;
}

.ly-job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(11, 61, 46, 0.04);
  transition: var(--transition-base);
  border-left: 4px solid transparent;
}

.ly-job-card:hover {
  background: #fff;
  box-shadow: var(--shadow-card);
  border-left-color: var(--brand-cyan);
  transform: translateX(4px);
}

.ly-job-info {
  flex: 1;
  min-width: 200px;
}

.ly-job-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark-green);
  margin-bottom: 6px;
}

.ly-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.ly-job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ly-job-meta i {
  color: var(--brand-cyan);
  font-size: 14px;
}

.ly-job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-right: 8px;
}

.ly-job-tags .ly-tag {
  background: rgba(46, 196, 182, 0.09);
  color: var(--brand-dark-green-soft);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
}

.ly-job-action .btn-ly-brand {
  white-space: nowrap;
}

/* ============ FAQ ============ */
.ly-faq {
  background: var(--bg-main);
}

.ly-faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.ly-accordion-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-base);
}

.ly-accordion-item:hover {
  box-shadow: var(--shadow-card-hover);
}

.ly-accordion-head {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: var(--transition-base);
}

.ly-accordion-head:hover {
  color: var(--brand-cyan);
}

.ly-accordion-head i {
  font-size: 15px;
  transition: transform 0.3s ease;
  color: var(--brand-cyan);
}

.ly-accordion-item.open .ly-accordion-head i {
  transform: rotate(45deg);
}

.ly-accordion-body {
  display: none;
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

.ly-accordion-item.open .ly-accordion-body {
  display: block;
}

/* ============ CTA 区 ============ */
.ly-cta-band {
  background: linear-gradient(120deg, var(--brand-yellow) 0%, #FFD34D 60%, #FFC914 100%);
  color: var(--brand-dark-green);
  padding: clamp(56px, 6vw, 72px) 0;
  position: relative;
  overflow: hidden;
}

.ly-cta-band::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.ly-cta-band::after {
  content: "";
  position: absolute;
  left: 60px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.ly-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.ly-cta-inner h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 8px;
}

.ly-cta-inner p {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.75;
}

.ly-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-ly-cta-light {
  background: var(--brand-dark-green);
  color: var(--brand-yellow);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
  box-shadow: 0 6px 18px rgba(11, 61, 46, 0.15);
}

.btn-ly-cta-light:hover {
  background: #0f4d39;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 61, 46, 0.22);
}

.btn-ly-outline-dark {
  background: transparent;
  color: var(--brand-dark-green);
  border: 2px solid var(--brand-dark-green);
  border-radius: 999px;
  padding: 12px 34px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.btn-ly-outline-dark:hover {
  background: var(--brand-dark-green);
  color: var(--brand-yellow);
}

/* ============ Footer ============ */
.ly-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
  font-size: 14px;
}

.ly-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.ly-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.ly-footer-logo:hover {
  color: var(--brand-yellow);
}

.ly-footer-logo i {
  width: 38px;
  height: 38px;
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.ly-footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

.ly-footer-social {
  display: flex;
  gap: 12px;
}

.ly-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  transition: var(--transition-base);
}

.ly-footer-social a:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark-green);
}

.ly-footer h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.ly-footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--brand-yellow);
}

.ly-footer-columns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ly-footer-columns a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.25s ease;
}

.ly-footer-columns a:hover {
  color: var(--brand-yellow);
  padding-left: 6px;
}

.ly-footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.ly-footer-contact i {
  color: var(--brand-cyan);
  width: 18px;
  text-align: center;
}

.ly-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.ly-footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
}

.ly-footer-bottom a:hover {
  color: var(--brand-yellow);
}

/* ============ 移动端抽屉导航 ============ */
@media (max-width: 991.98px) {
  .ly-nav {
    flex-wrap: wrap;
  }

  .ly-nav-toggle {
    display: flex;
  }

  .ly-nav-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 86%;
    max-width: 360px;
    height: 100vh;
    background: var(--brand-dark-green);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
    padding: 60px 32px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1090;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ly-nav-menu.open {
    right: 0;
  }

  .ly-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 28px;
  }

  .ly-nav-list li {
    width: 100%;
  }

  .ly-nav-list li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 3px solid transparent;
  }

  .ly-nav-list li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .ly-nav-list li a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--brand-yellow);
    border-left-color: var(--brand-yellow);
    font-weight: 700;
  }

  .ly-nav-list li a.active::after {
    display: none;
  }

  .ly-nav-menu .btn-ly-brand {
    width: 100%;
    margin-bottom: 16px;
  }

  .ly-nav-contact {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ly-culture-content {
    padding-left: 0;
    margin-top: 32px;
  }

  .ly-job-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .ly-job-action {
    width: 100%;
  }

  .ly-job-action .btn-ly-brand {
    width: 100%;
  }

  .ly-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ly-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .ly-topbar .container {
    font-size: 12px;
  }

  .ly-topbar .container span:first-child {
    display: none;
  }

  .ly-nav {
    min-height: 68px;
  }

  .ly-logo {
    font-size: 18px;
  }

  .ly-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .ly-page-hero {
    padding: 56px 0;
  }

  .ly-page-hero h1 {
    font-size: 28px;
  }

  .ly-section {
    padding: 48px 0;
  }

  .ly-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ly-job-tags {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .ly-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ly-nav-contact {
    font-size: 12px;
  }

  .ly-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .ly-cta-actions .btn-ly-cta-light,
  .ly-cta-actions .btn-ly-outline-dark {
    width: 100%;
    justify-content: center;
  }

  .ly-value-card {
    padding: 28px 20px;
  }

  .ly-accordion-head {
    font-size: 14px;
    padding: 18px 20px;
  }

  .ly-accordion-body {
    padding: 0 20px 18px;
    font-size: 14px;
  }
}
