/* roulang page: index */
:root {
  --primary-dark: #0A2F1D;
  --primary-green: #14472F;
  --accent-gold: #D4AF37;
  --accent-amber: #FFBF00;
  --text-cream: #F5F5F7;
  --text-gold: #E5C158;
  --bg-dark: #0D1117;
  --bg-card: #161B22;
  --border-subtle: rgba(212, 175, 55, 0.2);
  --shadow-gold: rgba(212, 175, 55, 0.3);
  --gradient-primary: linear-gradient(135deg, #0A2F1D 0%, #14472F 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFBF00 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, .btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-cream);
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-login {
  color: var(--accent-gold);
  font-weight: 600;
  padding: 8px 16px;
}

.btn-signup {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 4px 12px var(--shadow-gold);
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-gold);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  margin-top: 72px;
  background: linear-gradient(rgba(10, 47, 29, 0.85), rgba(13, 17, 23, 0.95)), url('/assets/images/backpic/back-1.jpg') center/cover;
  padding: 80px 24px 60px;
  border-bottom: 2px solid var(--border-subtle);
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-cream) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 20px;
  color: var(--text-gold);
  max-width: 880px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 6px 20px var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow-gold);
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
  padding: 14px 38px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
}

.section {
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-cream);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gold);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.group-progress {
  background: var(--gradient-primary);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.progress-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.progress-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-gold);
  border-color: var(--accent-gold);
}

.progress-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-dark);
}

.progress-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--accent-gold);
}

.progress-card p {
  color: var(--text-gold);
  font-size: 15px;
  line-height: 1.7;
}

.hot-groups {
  background: var(--bg-dark);
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.group-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.group-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.group-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.25);
  border-color: var(--accent-gold);
}

.group-card:hover::before {
  opacity: 1;
}

.group-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.group-content {
  padding: 24px;
}

.group-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.group-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-cream);
}

.group-content p {
  color: var(--text-gold);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.group-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.group-participants {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--accent-gold);
}

.btn-join {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.btn-join:hover {
  transform: scale(1.05);
}

.news-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
}

.news-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  display: block;
}

.news-item:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
  transform: translateX(8px);
}

.news-item h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--text-cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-item h3::before {
  content: '▶';
  color: var(--accent-gold);
  font-size: 14px;
}

.news-excerpt {
  color: var(--text-gold);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.news-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--accent-gold);
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
}

.sidebar-widget h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--accent-gold);
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 12px;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.sidebar-widget li:last-child {
  border-bottom: none;
}

.sidebar-widget a {
  color: var(--text-gold);
  font-size: 14px;
}

.sidebar-widget a:hover {
  color: var(--accent-gold);
  padding-left: 8px;
}

.create-group {
  background: var(--gradient-primary);
  text-align: center;
}

.create-group-content {
  max-width: 720px;
  margin: 0 auto;
}

.create-group h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: var(--text-cream);
}

.create-group p {
  font-size: 18px;
  color: var(--text-gold);
  margin-bottom: 32px;
  line-height: 1.8;
}

.stats-section {
  background: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-gold);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--text-gold);
  font-weight: 600;
}

.faq-section {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-gold);
}

.faq-question {
  padding: 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 28px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-gold);
  font-size: 15px;
  line-height: 1.8;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

footer {
  background: var(--primary-dark);
  border-top: 2px solid var(--border-subtle);
  padding: 64px 24px 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto 48px;
}

.footer-brand h3 {
  font-size: 24px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-gold);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-4px);
}

.footer-links h4 {
  font-size: 16px;
  color: var(--text-cream);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-gold);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-gold);
  font-size: 14px;
}

.fab-left {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px var(--shadow-gold);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  animation: fabFloat 3s ease-in-out infinite;
}

.fab-left:hover {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 32px var(--shadow-gold);
}

.fab-left i {
  font-size: 28px;
  color: var(--primary-dark);
}

@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gold);
  font-size: 13px;
}

.badge-item i {
  color: var(--accent-gold);
  font-size: 20px;
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 20px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .news-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    flex-direction: column;
    background: rgba(13, 17, 23, 0.98);
    width: 100%;
    padding: 32px 24px;
    gap: 20px;
    transition: left 0.3s ease;
    align-items: flex-start;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-desc {
    font-size: 17px;
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .progress-grid,
  .groups-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .fab-left {
    width: 56px;
    height: 56px;
    left: 16px;
    bottom: 16px;
  }
  
  .fab-left i {
    font-size: 24px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  .nav-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    padding: 16px;
    justify-content: center;
    border-top: 1px solid var(--border-subtle);
  }
}

/* roulang page: article */
:root {
      --primary-green: #0A2F1D;
      --casino-felt: #14472F;
      --luxury-gold: #D4AF37;
      --warm-amber: #FFBF00;
      --cream-white: #F5F5F7;
      --soft-gold: #E5C158;
      --dark-bg: #0D1B14;
      --card-bg: #1A2E23;
      --border-gold: rgba(212, 175, 55, 0.3);
      --glow-gold: rgba(212, 175, 55, 0.5);
      --text-muted: #A0A0A5;
      --spacing-xs: 0.5rem;
      --spacing-sm: 1rem;
      --spacing-md: 1.5rem;
      --spacing-lg: 2rem;
      --spacing-xl: 3rem;
      --spacing-2xl: 4rem;
      --radius-sm: 6px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
      --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
      --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.3);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-green) 100%);
      color: var(--cream-white);
      line-height: 1.7;
      min-height: 100vh;
    }
    
    a {
      color: var(--soft-gold);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    a:hover {
      color: var(--luxury-gold);
    }
    
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
    
    button, .btn {
      cursor: pointer;
      border: none;
      outline: none;
      font-family: inherit;
      transition: all 0.3s ease;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
    }
    
    /* Header & Navigation */
    header {
      background: rgba(10, 47, 29, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-gold);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
    }
    
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--spacing-sm) var(--spacing-md);
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--luxury-gold);
      text-shadow: 0 0 20px var(--glow-gold);
      letter-spacing: 0.5px;
      white-space: nowrap;
    }
    
    nav {
      display: flex;
      align-items: center;
      gap: var(--spacing-lg);
    }
    
    .nav-menu {
      display: flex;
      list-style: none;
      gap: var(--spacing-md);
      align-items: center;
    }
    
    .nav-menu a {
      color: var(--cream-white);
      font-weight: 500;
      padding: var(--spacing-xs) var(--spacing-sm);
      border-radius: var(--radius-sm);
      transition: all 0.3s ease;
      position: relative;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--luxury-gold);
      background: rgba(212, 175, 55, 0.1);
    }
    
    .nav-menu a.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      height: 2px;
      background: var(--luxury-gold);
      box-shadow: 0 0 8px var(--glow-gold);
    }
    
    .auth-buttons {
      display: flex;
      gap: var(--spacing-sm);
      align-items: center;
    }
    
    .btn-login {
      color: var(--cream-white);
      padding: 0.5rem 1.25rem;
      font-weight: 500;
      border-radius: var(--radius-sm);
      transition: all 0.3s ease;
    }
    
    .btn-login:hover {
      color: var(--luxury-gold);
      background: rgba(212, 175, 55, 0.1);
    }
    
    .btn-signup {
      background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--warm-amber) 100%);
      color: var(--primary-green);
      padding: 0.5rem 1.5rem;
      border-radius: var(--radius-sm);
      font-weight: 600;
      box-shadow: var(--shadow-gold);
      transition: all 0.3s ease;
    }
    
    .btn-signup:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(212, 175, 55, 0.4);
    }
    
    .mobile-menu-toggle {
      display: none;
      background: transparent;
      color: var(--luxury-gold);
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    /* Article Banner */
    .article-banner {
      position: relative;
      height: 400px;
      background: linear-gradient(135deg, rgba(10, 47, 29, 0.9) 0%, rgba(20, 71, 47, 0.8) 100%),
                  url('/assets/images/backpic/back-1.jpg') center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-bottom: 2px solid var(--border-gold);
      overflow: hidden;
    }
    
    .article-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, transparent 0%, rgba(10, 47, 29, 0.6) 100%);
    }
    
    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: var(--spacing-md);
    }
    
    .article-category {
      display: inline-block;
      background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--warm-amber) 100%);
      color: var(--primary-green);
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: var(--spacing-sm);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    
    .article-banner h1 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--cream-white);
      margin-bottom: var(--spacing-sm);
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }
    
    .article-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--spacing-md);
      color: var(--soft-gold);
      font-size: 0.95rem;
      flex-wrap: wrap;
    }
    
    .article-meta i {
      margin-right: 0.3rem;
      color: var(--luxury-gold);
    }
    
    /* Main Content */
    main {
      padding: var(--spacing-2xl) 0;
    }
    
    .article-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: var(--spacing-xl);
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
    }
    
    .article-content {
      background: rgba(26, 46, 35, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-gold);
      border-radius: var(--radius-lg);
      padding: var(--spacing-xl);
      box-shadow: var(--shadow-lg);
    }
    
    .article-content h2 {
      color: var(--luxury-gold);
      font-size: 1.8rem;
      margin-top: var(--spacing-lg);
      margin-bottom: var(--spacing-md);
      text-shadow: 0 0 10px var(--glow-gold);
    }
    
    .article-content h3 {
      color: var(--soft-gold);
      font-size: 1.4rem;
      margin-top: var(--spacing-md);
      margin-bottom: var(--spacing-sm);
    }
    
    .article-content p {
      margin-bottom: var(--spacing-md);
      color: var(--cream-white);
      line-height: 1.8;
    }
    
    .article-content ul,
    .article-content ol {
      margin-bottom: var(--spacing-md);
      padding-left: var(--spacing-lg);
    }
    
    .article-content li {
      margin-bottom: var(--spacing-xs);
      color: var(--cream-white);
    }
    
    .article-content img {
      border-radius: var(--radius-md);
      margin: var(--spacing-lg) 0;
      box-shadow: var(--shadow-md);
    }
    
    .article-content blockquote {
      border-left: 4px solid var(--luxury-gold);
      padding-left: var(--spacing-md);
      margin: var(--spacing-lg) 0;
      font-style: italic;
      color: var(--soft-gold);
      background: rgba(212, 175, 55, 0.05);
      padding: var(--spacing-md);
      border-radius: var(--radius-sm);
    }
    
    .article-content a {
      color: var(--luxury-gold);
      text-decoration: underline;
    }
    
    .article-content a:hover {
      color: var(--warm-amber);
    }
    
    .not-found-message {
      text-align: center;
      padding: var(--spacing-2xl);
    }
    
    .not-found-message h2 {
      color: var(--luxury-gold);
      font-size: 2rem;
      margin-bottom: var(--spacing-md);
    }
    
    .not-found-message p {
      color: var(--text-muted);
      margin-bottom: var(--spacing-lg);
    }
    
    .btn-home {
      display: inline-block;
      background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--warm-amber) 100%);
      color: var(--primary-green);
      padding: 0.75rem 2rem;
      border-radius: var(--radius-sm);
      font-weight: 600;
      box-shadow: var(--shadow-gold);
      transition: all 0.3s ease;
    }
    
    .btn-home:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(212, 175, 55, 0.4);
    }
    
    /* Sidebar */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-lg);
    }
    
    .sidebar-widget {
      background: rgba(26, 46, 35, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-gold);
      border-radius: var(--radius-lg);
      padding: var(--spacing-lg);
      box-shadow: var(--shadow-md);
    }
    
    .sidebar-widget h3 {
      color: var(--luxury-gold);
      font-size: 1.2rem;
      margin-bottom: var(--spacing-md);
      padding-bottom: var(--spacing-sm);
      border-bottom: 2px solid var(--border-gold);
      text-shadow: 0 0 10px var(--glow-gold);
    }
    
    .related-articles {
      display: flex;
      flex-direction: column;
      gap: var(--spacing-md);
    }
    
    .related-item {
      display: flex;
      gap: var(--spacing-sm);
      padding: var(--spacing-sm);
      border-radius: var(--radius-sm);
      transition: all 0.3s ease;
      border: 1px solid transparent;
    }
    
    .related-item:hover {
      background: rgba(212, 175, 55, 0.1);
      border-color: var(--border-gold);
      transform: translateX(4px);
    }
    
    .related-item img {
      width: 80px;
      height: 60px;
      object-fit: cover;
      border-radius: var(--radius-sm);
      flex-shrink: 0;
    }
    
    .related-info h4 {
      font-size: 0.9rem;
      color: var(--cream-white);
      margin-bottom: 0.25rem;
      line-height: 1.4;
    }
    
    .related-info .date {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    
    .category-tags {
      display: flex;
      flex-wrap: wrap;
      gap: var(--spacing-xs);
    }
    
    .tag {
      background: rgba(212, 175, 55, 0.15);
      color: var(--soft-gold);
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.85rem;
      border: 1px solid var(--border-gold);
      transition: all 0.3s ease;
    }
    
    .tag:hover {
      background: rgba(212, 175, 55, 0.25);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    }
    
    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, rgba(20, 71, 47, 0.9) 0%, rgba(10, 47, 29, 0.9) 100%);
      border: 2px solid var(--border-gold);
      border-radius: var(--radius-lg);
      padding: var(--spacing-xl);
      text-align: center;
      margin: var(--spacing-2xl) 0;
      box-shadow: var(--shadow-gold);
    }
    
    .cta-section h2 {
      color: var(--luxury-gold);
      font-size: 2rem;
      margin-bottom: var(--spacing-md);
      text-shadow: 0 0 20px var(--glow-gold);
    }
    
    .cta-section p {
      color: var(--cream-white);
      margin-bottom: var(--spacing-lg);
      font-size: 1.1rem;
    }
    
    .cta-buttons {
      display: flex;
      gap: var(--spacing-md);
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--warm-amber) 100%);
      color: var(--primary-green);
      padding: 0.875rem 2rem;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 1.05rem;
      box-shadow: var(--shadow-gold);
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--luxury-gold);
      padding: 0.875rem 2rem;
      border: 2px solid var(--luxury-gold);
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 1.05rem;
      transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
      background: rgba(212, 175, 55, 0.1);
      transform: translateY(-3px);
      box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    }
    
    /* FAB */
    .fab {
      position: fixed;
      left: 24px;
      bottom: 24px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--warm-amber) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 999;
      border: 3px solid rgba(212, 175, 55, 0.3);
      animation: fabFloat 3s ease-in-out infinite;
    }
    
    @keyframes fabFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    
    .fab:hover {
      transform: scale(1.1) rotate(360deg);
      box-shadow: 0 6px 32px rgba(212, 175, 55, 0.7), 0 0 60px rgba(212, 175, 55, 0.5);
    }
    
    .fab i {
      color: var(--primary-green);
      font-size: 1.5rem;
    }
    
    /* Footer */
    footer {
      background: rgba(10, 47, 29, 0.95);
      border-top: 2px solid var(--border-gold);
      padding: var(--spacing-2xl) 0 var(--spacing-lg);
      margin-top: var(--spacing-2xl);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: var(--spacing-xl);
      margin-bottom: var(--spacing-xl);
    }
    
    .footer-brand h3 {
      color: var(--luxury-gold);
      font-size: 1.5rem;
      margin-bottom: var(--spacing-sm);
      text-shadow: 0 0 15px var(--glow-gold);
    }
    
    .footer-brand p {
      color: var(--text-muted);
      margin-bottom: var(--spacing-md);
      line-height: 1.6;
    }
    
    .social-links {
      display: flex;
      gap: var(--spacing-sm);
    }
    
    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(212, 175, 55, 0.1);
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--soft-gold);
      transition: all 0.3s ease;
    }
    
    .social-link:hover {
      background: var(--luxury-gold);
      color: var(--primary-green);
      transform: translateY(-4px);
      box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    }
    
    .footer-links h4 {
      color: var(--luxury-gold);
      font-size: 1.1rem;
      margin-bottom: var(--spacing-md);
    }
    
    .footer-links ul {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: var(--spacing-xs);
    }
    
    .footer-links a {
      color: var(--text-muted);
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--luxury-gold);
      padding-left: 4px;
    }
    
    .trust-badges {
      display: flex;
      justify-content: center;
      gap: var(--spacing-xl);
      padding: var(--spacing-lg) 0;
      border-top: 1px solid var(--border-gold);
      border-bottom: 1px solid var(--border-gold);
      margin-bottom: var(--spacing-lg);
    }
    
    .badge-item {
      display: flex;
      align-items: center;
      gap: var(--spacing-xs);
      color: var(--soft-gold);
    }
    
    .badge-item i {
      color: var(--luxury-gold);
      font-size: 1.2rem;
    }
    
    .footer-bottom {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
      .article-layout {
        grid-template-columns: 1fr;
      }
      
      .sidebar {
        order: -1;
      }
      
      .footer-content {
        grid-template-columns: 1fr 1fr;
      }
      
      .footer-brand {
        grid-column: 1 / -1;
      }
    }
    
    @media (max-width: 768px) {
      .logo {
        font-size: 1.1rem;
      }
      
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 47, 29, 0.98);
        flex-direction: column;
        padding: var(--spacing-md);
        border-top: 1px solid var(--border-gold);
        box-shadow: var(--shadow-lg);
      }
      
      .nav-menu.active {
        display: flex;
      }
      
      .mobile-menu-toggle {
        display: block;
      }
      
      .article-banner {
        height: 300px;
      }
      
      .article-banner h1 {
        font-size: 1.8rem;
      }
      
      .article-content {
        padding: var(--spacing-lg);
      }
      
      .cta-section {
        padding: var(--spacing-lg);
      }
      
      .cta-section h2 {
        font-size: 1.5rem;
      }
      
      .cta-buttons {
        flex-direction: column;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
      }
      
      .trust-badges {
        flex-direction: column;
        gap: var(--spacing-md);
      }
      
      .fab {
        width: 50px;
        height: 50px;
        left: 16px;
        bottom: 16px;
      }
      
      .fab i {
        font-size: 1.2rem;
      }
    }
    
    @media (max-width: 520px) {
      .header-container {
        padding: var(--spacing-sm);
      }
      
      .article-meta {
        font-size: 0.85rem;
        gap: var(--spacing-sm);
      }
      
      .btn-primary,
      .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
      }
    }

/* roulang page: category1 */
:root {
            --primary-dark: #0A2F1D;
            --primary-green: #14472F;
            --accent-gold: #D4AF37;
            --accent-amber: #FFBF00;
            --text-cream: #F5F5F7;
            --text-gold: #E5C158;
            --bg-dark: #0d1117;
            --bg-darker: #010409;
            --bg-card: #161b22;
            --border-subtle: rgba(212, 175, 55, 0.2);
            --shadow-glow: rgba(212, 175, 55, 0.3);
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-darker);
            color: var(--text-cream);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            color: var(--text-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-gold);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }
        
        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
            border-bottom: 2px solid var(--border-subtle);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--spacing-sm) 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 0 20px var(--shadow-glow);
        }
        
        .logo i {
            font-size: 1.8rem;
        }
        
        nav ul.nav-menu {
            display: flex;
            list-style: none;
            gap: var(--spacing-md);
            align-items: center;
        }
        
        nav ul.nav-menu li a {
            color: var(--text-cream);
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul.nav-menu li a:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
        }
        
        nav ul.nav-menu li a.active {
            background: var(--accent-gold);
            color: var(--primary-dark);
            font-weight: 600;
        }
        
        .auth-buttons {
            display: flex;
            gap: var(--spacing-sm);
        }
        
        .btn-login {
            color: var(--text-gold);
            padding: 0.5rem 1.25rem;
            font-weight: 500;
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            border-color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
        }
        
        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
            color: var(--primary-dark);
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            transition: all 0.3s ease;
        }
        
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
        }
        
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            background: linear-gradient(rgba(10, 47, 29, 0.85), rgba(13, 17, 23, 0.95)), url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: var(--spacing-xl) 0 var(--spacing-lg);
            border-bottom: 3px solid var(--accent-gold);
        }
        
        .hero-content {
            max-width: 900px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-sm);
            line-height: 1.2;
            text-shadow: 0 0 30px var(--shadow-glow);
        }
        
        .hero-subtitle {
            font-size: 1.35rem;
            color: var(--text-cream);
            margin-bottom: var(--spacing-md);
            line-height: 1.7;
        }
        
        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-md);
        }
        
        .hero-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
        }
        
        .hero-feature i {
            color: var(--accent-gold);
            font-size: 1.5rem;
        }
        
        .hero-cta {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
            margin-top: var(--spacing-md);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
            color: var(--primary-dark);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-cream);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid var(--accent-gold);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.15);
            transform: translateY(-3px);
        }
        
        .trust-strip {
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
            margin-top: var(--spacing-md);
            padding-top: var(--spacing-md);
            border-top: 1px solid var(--border-subtle);
            flex-wrap: wrap;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-gold);
            font-size: 0.95rem;
        }
        
        .trust-item i {
            color: var(--accent-gold);
        }
        
        /* Main Content Sections */
        section {
            padding: var(--spacing-lg) 0;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--spacing-lg);
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-sm);
            text-shadow: 0 0 20px var(--shadow-glow);
        }
        
        .section-header p {
            font-size: 1.15rem;
            color: var(--text-cream);
            opacity: 0.9;
        }
        
        /* Featured Games Grid */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-lg);
        }
        
        .game-card {
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .game-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: 0 12px 40px var(--shadow-glow);
        }
        
        .game-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .game-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .game-card:hover .game-card-image img {
            transform: scale(1.1);
        }
        
        .game-badge {
            position: absolute;
            top: var(--spacing-sm);
            right: var(--spacing-sm);
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
            color: var(--primary-dark);
            padding: 0.4rem 0.8rem;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
        }
        
        .game-card-content {
            padding: var(--spacing-md);
        }
        
        .game-card h3 {
            font-size: 1.4rem;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }
        
        .game-studio {
            color: var(--text-gold);
            font-size: 0.9rem;
            margin-bottom: var(--spacing-sm);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .game-studio i {
            font-size: 0.8rem;
        }
        
        .game-description {
            color: var(--text-cream);
            opacity: 0.85;
            margin-bottom: var(--spacing-sm);
            line-height: 1.6;
        }
        
        .game-stats {
            display: flex;
            gap: var(--spacing-md);
            margin-top: var(--spacing-sm);
            padding-top: var(--spacing-sm);
            border-top: 1px solid var(--border-subtle);
        }
        
        .game-stat {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--text-gold);
            font-size: 0.9rem;
        }
        
        .game-stat i {
            color: var(--accent-gold);
        }
        
        /* Achievement Section */
        .achievement-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
            border-top: 3px solid var(--accent-gold);
            border-bottom: 3px solid var(--accent-gold);
        }
        
        .achievement-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-md);
        }
        
        .achievement-card {
            background: rgba(22, 27, 34, 0.6);
            border: 2px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: var(--spacing-md);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .achievement-card:hover {
            border-color: var(--accent-gold);
            background: rgba(22, 27, 34, 0.9);
            transform: translateY(-5px);
        }
        
        .achievement-icon {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-sm);
        }
        
        .achievement-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-amber);
            margin-bottom: 0.5rem;
        }
        
        .achievement-label {
            color: var(--text-cream);
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Studio Showcase */
        .studio-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
        }
        
        .studio-card {
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: var(--spacing-md);
            transition: all 0.3s ease;
        }
        
        .studio-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 8px 30px var(--shadow-glow);
        }
        
        .studio-header {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-sm);
        }
        
        .studio-logo {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-dark);
            font-weight: 700;
        }
        
        .studio-info h3 {
            color: var(--accent-gold);
            font-size: 1.3rem;
            margin-bottom: 0.25rem;
        }
        
        .studio-location {
            color: var(--text-gold);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .studio-games {
            margin-top: var(--spacing-sm);
        }
        
        .studio-games h4 {
            color: var(--text-cream);
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .studio-games ul {
            list-style: none;
        }
        
        .studio-games li {
            color: var(--text-gold);
            padding: 0.4rem 0;
            border-bottom: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .studio-games li:last-child {
            border-bottom: none;
        }
        
        .studio-games li i {
            color: var(--accent-gold);
            font-size: 0.8rem;
        }
        
        /* Success Stories */
        .success-stories {
            background: var(--bg-dark);
        }
        
        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--spacing-md);
        }
        
        .story-card {
            background: var(--bg-card);
            border: 2px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .story-card:hover {
            border-color: var(--accent-gold);
            box-shadow: 0 8px 30px var(--shadow-glow);
        }
        
        .story-image {
            height: 200px;
            overflow: hidden;
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .story-card:hover .story-image img {
            transform: scale(1.1);
        }
        
        .story-content {
            padding: var(--spacing-md);
        }
        
        .story-title {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-bottom: var(--spacing-sm);
        }
        
        .story-text {
            color: var(--text-cream);
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: var(--spacing-sm);
        }
        
        .story-quote {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: var(--spacing-sm);
            margin-top: var(--spacing-sm);
            font-style: italic;
            color: var(--text-gold);
        }
        
        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: rgba(22, 27, 34, 0.6);
            border: 2px solid var(--border-subtle);
            border-radius: var(--radius-md);
            margin-bottom: var(--spacing-sm);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--accent-gold);
        }
        
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--accent-gold);
            font-size: 1.15rem;
            font-weight: 600;
            text-align: left;
            padding: var(--spacing-md);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--accent-amber);
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 var(--spacing-md) var(--spacing-md);
            color: var(--text-cream);
            line-height: 1.7;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(10, 47, 29, 0.9), rgba(20, 71, 47, 0.9)), url('/assets/images/backpic/back-3.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
            border-top: 3px solid var(--accent-gold);
            border-bottom: 3px solid var(--accent-gold);
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-sm);
            text-shadow: 0 0 30px var(--shadow-glow);
        }
        
        .cta-content p {
            font-size: 1.25rem;
            color: var(--text-cream);
            margin-bottom: var(--spacing-md);
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: var(--spacing-sm);
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-darker) 100%);
            border-top: 3px solid var(--accent-gold);
            padding: var(--spacing-lg) 0 var(--spacing-md);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }
        
        .footer-brand h3 {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: var(--spacing-sm);
        }
        
        .footer-brand p {
            color: var(--text-cream);
            opacity: 0.8;
            margin-bottom: var(--spacing-sm);
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: var(--spacing-sm);
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .footer-links h4 {
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-bottom: var(--spacing-sm);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--text-cream);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            opacity: 1;
            padding-left: 5px;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: var(--spacing-md);
            flex-wrap: wrap;
            padding: var(--spacing-md) 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        
        .badge-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-gold);
        }
        
        .badge-item i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: var(--spacing-md);
            color: var(--text-cream);
            opacity: 0.7;
        }
        
        /* Floating Action Button */
        .fab-button {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
            animation: floating 3s ease-in-out infinite;
        }
        
        .fab-button:hover {
            transform: scale(1.1) rotate(360deg);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.8);
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .games-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            
            nav ul.nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary-dark);
                flex-direction: column;
                padding: var(--spacing-sm);
                border-top: 2px solid var(--border-subtle);
            }
            
            nav ul.nav-menu.active {
                display: flex;
            }
            
            nav ul.nav-menu li a {
                display: block;
                padding: var(--spacing-sm);
            }
            
            .auth-buttons {
                margin-top: var(--spacing-sm);
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-features {
                grid-template-columns: 1fr;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .games-grid {
                grid-template-columns: 1fr;
            }
            
            .achievement-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .studio-showcase {
                grid-template-columns: 1fr;
            }
            
            .story-grid {
                grid-template-columns: 1fr;
            }
            
            .fab-button {
                width: 55px;
                height: 55px;
                bottom: 20px;
                left: 20px;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 520px) {
            :root {
                --spacing-lg: 3rem;
                --spacing-xl: 4rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-header h2 {
                font-size: 1.7rem;
            }
            
            .achievement-grid {
                grid-template-columns: 1fr;
            }
            
            .trust-strip {
                flex-direction: column;
                align-items: flex-start;
            }
        }

/* roulang page: category2 */
:root {
            --primary-color: #0A2F1D;
            --primary-dark: #14472F;
            --accent-gold: #D4AF37;
            --accent-amber: #FFBF00;
            --text-cream: #F5F5F7;
            --text-gold: #E5C158;
            --bg-dark: #0D1117;
            --bg-card: #161B22;
            --bg-hover: #1C2128;
            --border-color: rgba(212, 175, 55, 0.2);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --spacing-xs: 8px;
            --spacing-sm: 16px;
            --spacing-md: 24px;
            --spacing-lg: 48px;
            --spacing-xl: 64px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-dark);
            color: var(--text-cream);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            color: var(--text-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-amber);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, .btn {
            border: none;
            cursor: pointer;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        
        input, textarea {
            font-family: inherit;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        
        /* Header & Navigation */
        header {
            background: linear-gradient(180deg, rgba(10, 47, 29, 0.95) 0%, rgba(13, 17, 23, 0.95) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-md);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--spacing-sm) 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            font-size: 1.8rem;
        }
        
        nav {
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: var(--spacing-md);
            margin: 0;
        }
        
        .nav-menu a {
            color: var(--text-cream);
            font-weight: 500;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            background: var(--bg-hover);
            color: var(--accent-gold);
            transform: translateY(-2px);
        }
        
        .nav-menu a.active {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--accent-gold);
            box-shadow: var(--shadow-glow);
        }
        
        .nav-auth {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .btn-login {
            color: var(--text-gold);
            padding: 8px 20px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            background: transparent;
            font-weight: 500;
        }
        
        .btn-login:hover {
            background: var(--bg-hover);
            border-color: var(--accent-gold);
        }
        
        .btn-signup {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-color);
            padding: 8px 24px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            box-shadow: var(--shadow-glow);
        }
        
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        }
        
        .mobile-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--accent-gold);
            font-size: 1.5rem;
            padding: 8px 12px;
            border-radius: var(--radius-sm);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(10, 47, 29, 0.9), rgba(20, 71, 47, 0.8)), url('/assets/images/backpic/back-2.jpg') center/cover;
            padding: var(--spacing-xl) 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-lg);
            align-items: center;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: var(--spacing-md);
            color: var(--accent-gold);
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        
        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-cream);
            margin-bottom: var(--spacing-md);
            line-height: 1.8;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-sm);
            margin-top: var(--spacing-lg);
        }
        
        .stat-card {
            background: rgba(22, 27, 34, 0.7);
            backdrop-filter: blur(10px);
            padding: var(--spacing-md);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-amber);
            display: block;
            margin-bottom: 8px;
        }
        
        .stat-label {
            color: var(--text-cream);
            font-size: 0.9rem;
        }
        
        .hero-cta {
            display: flex;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-md);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-color);
            padding: 14px 32px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: var(--shadow-glow);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(212, 175, 55, 0.6);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-cream);
            padding: 14px 32px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .btn-secondary:hover {
            background: var(--bg-hover);
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .hero-visual {
            background: rgba(22, 27, 34, 0.6);
            backdrop-filter: blur(10px);
            padding: var(--spacing-lg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-lg);
        }
        
        .market-overview {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-md);
        }
        
        .market-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--spacing-sm);
            background: rgba(13, 17, 23, 0.8);
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--accent-gold);
        }
        
        .market-label {
            font-size: 0.95rem;
            color: var(--text-cream);
        }
        
        .market-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-amber);
        }
        
        .market-trend {
            font-size: 0.85rem;
            color: #4ade80;
            margin-left: 8px;
        }
        
        /* Main Sections */
        section {
            padding: var(--spacing-xl) 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: var(--spacing-lg);
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-sm);
        }
        
        .section-header p {
            font-size: 1.1rem;
            color: var(--text-cream);
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Industry News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }
        
        .news-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            box-shadow: var(--shadow-sm);
        }
        
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-glow);
            border-color: var(--accent-gold);
        }
        
        .news-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 2px solid var(--accent-gold);
        }
        
        .news-content {
            padding: var(--spacing-md);
        }
        
        .news-meta {
            display: flex;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-sm);
            flex-wrap: wrap;
        }
        
        .news-tag {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--accent-gold);
            padding: 4px 12px;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .news-date {
            color: var(--text-gold);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .news-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-cream);
            margin-bottom: var(--spacing-sm);
            line-height: 1.4;
        }
        
        .news-excerpt {
            color: var(--text-cream);
            opacity: 0.85;
            line-height: 1.7;
            margin-bottom: var(--spacing-md);
        }
        
        .news-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--spacing-sm);
            border-top: 1px solid var(--border-color);
        }
        
        .read-more {
            color: var(--accent-gold);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .read-more:hover {
            gap: 10px;
        }
        
        /* Market Trends */
        .trends-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--spacing-lg);
        }
        
        .trend-card {
            background: linear-gradient(135deg, var(--bg-card), var(--bg-hover));
            padding: var(--spacing-lg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .trend-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-glow);
            border-color: var(--accent-gold);
        }
        
        .trend-icon {
            font-size: 3rem;
            color: var(--accent-amber);
            margin-bottom: var(--spacing-sm);
        }
        
        .trend-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-sm);
        }
        
        .trend-description {
            color: var(--text-cream);
            opacity: 0.9;
            line-height: 1.6;
        }
        
        /* Featured Report */
        .report-section {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            border: 2px solid var(--accent-gold);
            box-shadow: var(--shadow-lg);
        }
        
        .report-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-lg);
            align-items: center;
        }
        
        .report-text h3 {
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-md);
        }
        
        .report-highlights {
            list-style: none;
            margin-bottom: var(--spacing-md);
        }
        
        .report-highlights li {
            padding: var(--spacing-sm);
            margin-bottom: 10px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--accent-amber);
            display: flex;
            align-items: start;
            gap: 12px;
        }
        
        .report-highlights i {
            color: var(--accent-amber);
            margin-top: 4px;
        }
        
        .report-image {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        
        .report-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Success Stories */
        .stories-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--spacing-lg);
        }
        
        .story-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-color);
            display: flex;
            transition: all 0.3s ease;
        }
        
        .story-card:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-glow);
        }
        
        .story-image {
            width: 40%;
            object-fit: cover;
        }
        
        .story-content {
            padding: var(--spacing-md);
            flex: 1;
        }
        
        .story-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-sm);
        }
        
        .story-description {
            color: var(--text-cream);
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: var(--spacing-md);
        }
        
        .story-metrics {
            display: flex;
            gap: var(--spacing-md);
        }
        
        .metric-item {
            text-align: center;
        }
        
        .metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-amber);
            display: block;
        }
        
        .metric-label {
            font-size: 0.85rem;
            color: var(--text-cream);
            opacity: 0.8;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: var(--spacing-sm);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--accent-gold);
        }
        
        .faq-question {
            padding: var(--spacing-md);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent-gold);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 var(--spacing-md) var(--spacing-md);
            color: var(--text-cream);
            line-height: 1.8;
            opacity: 0.9;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 191, 0, 0.05));
            border-radius: var(--radius-lg);
            padding: var(--spacing-xl);
            text-align: center;
            border: 2px solid var(--border-color);
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: var(--spacing-md);
        }
        
        .cta-section p {
            font-size: 1.2rem;
            color: var(--text-cream);
            margin-bottom: var(--spacing-lg);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            gap: var(--spacing-sm);
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-color) 100%);
            border-top: 2px solid var(--accent-gold);
            padding: var(--spacing-xl) 0 var(--spacing-md);
            margin-top: var(--spacing-xl);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }
        
        .footer-brand h3 {
            color: var(--accent-gold);
            font-size: 1.5rem;
            margin-bottom: var(--spacing-sm);
        }
        
        .footer-brand p {
            color: var(--text-cream);
            opacity: 0.9;
            line-height: 1.7;
            margin-bottom: var(--spacing-md);
        }
        
        .social-links {
            display: flex;
            gap: 12px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-gold);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--accent-gold);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow);
        }
        
        .footer-links h4 {
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-bottom: var(--spacing-sm);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: var(--text-cream);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: var(--spacing-lg);
            padding: var(--spacing-lg) 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: var(--spacing-md);
        }
        
        .badge-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-cream);
        }
        
        .badge-item i {
            font-size: 1.5rem;
            color: var(--accent-gold);
        }
        
        .footer-bottom {
            text-align: center;
            color: var(--text-cream);
            opacity: 0.8;
        }
        
        /* FAB */
        .fab {
            position: fixed;
            left: 30px;
            bottom: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
            border: 3px solid var(--primary-color);
        }
        
        .fab:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
        }
        
        .fab i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .trends-container {
                grid-template-columns: 1fr;
            }
            
            .report-content {
                grid-template-columns: 1fr;
            }
            
            .stories-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: var(--bg-card);
                border-top: 1px solid var(--border-color);
                flex-direction: column;
                padding: var(--spacing-md);
                transition: left 0.3s ease;
                box-shadow: var(--shadow-lg);
            }
            
            nav.active {
                left: 0;
            }
            
            .nav-menu {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }
            
            .nav-menu a {
                width: 100%;
                padding: 12px;
                border-bottom: 1px solid var(--border-color);
            }
            
            .nav-auth {
                width: 100%;
                flex-direction: column;
                margin-top: var(--spacing-sm);
            }
            
            .btn-login, .btn-signup {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .news-grid {
                grid-template-columns: 1fr;
            }
            
            .story-card {
                flex-direction: column;
            }
            
            .story-image {
                width: 100%;
                height: 200px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .trust-badges {
                flex-direction: column;
                gap: var(--spacing-sm);
            }
            
            .fab {
                width: 60px;
                height: 60px;
                left: 20px;
                bottom: 20px;
            }
            
            .fab i {
                font-size: 1.5rem;
            }
        }

/* roulang page: category3 */
:root {
            --primary-dark: #0A2F1D;
            --primary-green: #14472F;
            --accent-gold: #D4AF37;
            --accent-amber: #FFBF00;
            --text-cream: #F5F5F7;
            --text-gold: #E5C158;
            --bg-dark: #0D1117;
            --bg-darker: #050810;
            --card-bg: #1A1F2E;
            --border-color: rgba(212, 175, 55, 0.2);
            --shadow-gold: rgba(212, 175, 55, 0.15);
            --neon-green: #00FF88;
            --neon-blue: #00D4FF;
            --electric-purple: #9D4EDD;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
            color: var(--text-cream);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, input, textarea {
            font-family: inherit;
            border: none;
            outline: none;
        }
        
        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 47, 29, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            max-width: 1320px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            font-size: 28px;
            color: var(--accent-amber);
        }
        
        nav {
            display: flex;
            align-items: center;
            gap: 48px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 36px;
            margin: 0;
        }
        
        .nav-menu a {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-cream);
            padding: 8px 4px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--accent-gold);
        }
        
        .nav-menu a.active {
            color: var(--accent-gold);
        }
        
        .nav-menu a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber));
            border-radius: 2px;
        }
        
        .nav-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .btn-login {
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-cream);
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }
        
        .btn-signup {
            padding: 11px 28px;
            font-size: 15px;
            font-weight: 700;
            color: var(--primary-dark);
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px var(--shadow-gold);
        }
        
        .btn-signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px var(--shadow-gold);
        }
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }
        
        .mobile-menu-toggle span {
            width: 26px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            margin-top: 80px;
            background: linear-gradient(135deg, rgba(10, 47, 29, 0.9), rgba(13, 17, 23, 0.95)), url('/assets/images/backpic/back-2.jpg') center/cover no-repeat;
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent 60%);
            pointer-events: none;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
        }
        
        .hero-badge i {
            font-size: 16px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }
        
        .hero h1 {
            font-size: 62px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--text-cream) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }
        
        .hero p {
            font-size: 20px;
            color: var(--text-cream);
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .hero-cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            padding: 16px 40px;
            font-size: 17px;
            font-weight: 700;
            color: var(--primary-dark);
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 24px var(--shadow-gold);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
        }
        
        .btn-secondary {
            padding: 16px 40px;
            font-size: 17px;
            font-weight: 700;
            color: var(--text-cream);
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
        }
        
        .btn-secondary:hover {
            border-color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
        }
        
        /* Tournament Stats */
        .tournament-stats {
            padding: 80px 0;
            background: var(--bg-dark);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        
        .section-header h2 {
            font-size: 46px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-cream);
        }
        
        .section-header p {
            font-size: 18px;
            color: var(--text-cream);
            opacity: 0.7;
            max-width: 680px;
            margin: 0 auto;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 50px;
        }
        
        .stat-card {
            background: linear-gradient(135deg, var(--card-bg), rgba(26, 31, 46, 0.6));
            padding: 40px 28px;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
            border-color: var(--accent-gold);
        }
        
        .stat-card:hover::before {
            transform: scaleX(1);
        }
        
        .stat-icon {
            font-size: 48px;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 900;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        
        .stat-label {
            font-size: 15px;
            color: var(--text-cream);
            opacity: 0.8;
            font-weight: 600;
        }
        
        /* Featured Tournaments */
        .featured-tournaments {
            padding: 80px 0;
            background: var(--bg-darker);
        }
        
        .tournament-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        
        .tournament-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .tournament-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(212, 175, 55, 0.25);
            border-color: var(--accent-gold);
        }
        
        .tournament-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .tournament-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .tournament-card:hover .tournament-image img {
            transform: scale(1.08);
        }
        
        .tournament-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 8px 18px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-dark);
            font-size: 13px;
            font-weight: 700;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
        }
        
        .tournament-status {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 8px 16px;
            background: rgba(0, 255, 136, 0.95);
            color: var(--primary-dark);
            font-size: 12px;
            font-weight: 700;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        .tournament-info {
            padding: 32px;
        }
        
        .tournament-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-cream);
            opacity: 0.8;
        }
        
        .meta-item i {
            color: var(--accent-gold);
        }
        
        .tournament-info h3 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-cream);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .tournament-info p {
            font-size: 15px;
            color: var(--text-cream);
            opacity: 0.75;
            margin-bottom: 24px;
            line-height: 1.6;
        }
        
        .tournament-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        
        .prize-pool {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .prize-label {
            font-size: 13px;
            color: var(--text-cream);
            opacity: 0.6;
            font-weight: 500;
        }
        
        .prize-amount {
            font-size: 24px;
            font-weight: 900;
            color: var(--accent-gold);
        }
        
        .btn-view {
            padding: 12px 28px;
            background: rgba(212, 175, 55, 0.1);
            color: var(--accent-gold);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-view:hover {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border-color: var(--accent-gold);
        }
        
        /* Teams Section */
        .teams-section {
            padding: 80px 0;
            background: var(--bg-dark);
        }
        
        .teams-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        
        .team-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .team-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 16px;
        }
        
        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
            border-color: var(--accent-gold);
        }
        
        .team-card:hover::before {
            opacity: 1;
        }
        
        .team-logo {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 191, 0, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .team-card:hover .team-logo {
            border-color: var(--accent-gold);
            transform: scale(1.1) rotate(5deg);
        }
        
        .team-logo i {
            font-size: 48px;
            color: var(--accent-gold);
        }
        
        .team-rank {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        .team-card h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-cream);
            margin-bottom: 8px;
        }
        
        .team-game {
            font-size: 14px;
            color: var(--accent-gold);
            margin-bottom: 16px;
            font-weight: 600;
        }
        
        .team-stats {
            display: flex;
            justify-content: space-around;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }
        
        .team-stat {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .team-stat-value {
            font-size: 20px;
            font-weight: 800;
            color: var(--accent-gold);
        }
        
        .team-stat-label {
            font-size: 12px;
            color: var(--text-cream);
            opacity: 0.6;
        }
        
        /* Schedule Section */
        .schedule-section {
            padding: 80px 0;
            background: var(--bg-darker);
        }
        
        .schedule-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .schedule-item {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 28px 32px;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .schedule-item:hover {
            border-color: var(--accent-gold);
            transform: translateX(4px);
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
        }
        
        .schedule-time {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 140px;
        }
        
        .schedule-date {
            font-size: 18px;
            font-weight: 800;
            color: var(--accent-gold);
        }
        
        .schedule-hour {
            font-size: 14px;
            color: var(--text-cream);
            opacity: 0.7;
        }
        
        .schedule-match {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 20px;
            min-width: 300px;
        }
        
        .team-name {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-cream);
            flex: 1;
            text-align: right;
        }
        
        .vs-badge {
            padding: 6px 16px;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-gold);
        }
        
        .schedule-info {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        
        .schedule-tournament {
            font-size: 15px;
            color: var(--text-cream);
            opacity: 0.8;
            font-weight: 600;
        }
        
        .btn-watch {
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            color: var(--primary-dark);
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-watch:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px var(--shadow-gold);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--bg-dark);
        }
        
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--card-bg);
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--accent-gold);
        }
        
        .faq-question {
            padding: 24px 28px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-cream);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--accent-gold);
        }
        
        .faq-question i {
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 28px 24px;
        }
        
        .faq-answer p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-cream);
            opacity: 0.8;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-green));
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
            border-radius: 50%;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 48px;
            font-weight: 900;
            color: var(--text-cream);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .cta-content p {
            font-size: 19px;
            color: var(--text-cream);
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* FAB */
        .fab {
            position: fixed;
            left: 30px;
            bottom: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-amber));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
            cursor: pointer;
            z-index: 999;
            transition: all 0.4s ease;
            border: 3px solid rgba(255, 255, 255, 0.2);
            animation: fabFloat 3s ease-in-out infinite;
        }
        
        @keyframes fabFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        .fab:hover {
            transform: scale(1.15) rotate(15deg);
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.6);
        }
        
        .fab i {
            font-size: 28px;
            color: var(--primary-dark);
        }
        
        /* Footer */
        footer {
            background: var(--bg-darker);
            border-top: 1px solid var(--border-color);
            padding: 60px 0 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }
        
        .footer-brand p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--text-cream);
            opacity: 0.7;
            margin-bottom: 24px;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
        }
        
        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
            transform: translateY(-3px);
        }
        
        .social-link:hover i {
            color: var(--primary-dark);
        }
        
        .social-link i {
            font-size: 18px;
            color: var(--accent-gold);
            transition: color 0.3s ease;
        }
        
        .footer-links h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-cream);
            margin-bottom: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            font-size: 15px;
            color: var(--text-cream);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            opacity: 1;
            padding-left: 4px;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 48px;
            padding: 32px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        
        .badge-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .badge-item i {
            font-size: 24px;
            color: var(--accent-gold);
        }
        
        .badge-item span {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-cream);
        }
        
        .footer-bottom {
            text-align: center;
            padding: 28px 0;
        }
        
        .footer-bottom p {
            font-size: 14px;
            color: var(--text-cream);
            opacity: 0.6;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .teams-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: rgba(10, 47, 29, 0.98);
                backdrop-filter: blur(12px);
                padding: 24px;
                transition: left 0.4s ease;
                flex-direction: column;
                gap: 24px;
                border-bottom: 1px solid var(--border-color);
            }
            
            nav.active {
                left: 0;
            }
            
            .nav-menu {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            
            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid var(--border-color);
            }
            
            .nav-menu a {
                display: block;
                padding: 16px 0;
            }
            
            .nav-actions {
                width: 100%;
                flex-direction: column;
            }
            
            .btn-login, .btn-signup {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .hero {
                padding: 60px 0 50px;
            }
            
            .hero h1 {
                font-size: 38px;
            }
            
            .hero p {
                font-size: 17px;
            }
            
            .section-header h2 {
                font-size: 34px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .tournament-grid {
                grid-template-columns: 1fr;
            }
            
            .teams-grid {
                grid-template-columns: 1fr;
            }
            
            .schedule-item {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .schedule-match {
                width: 100%;
                min-width: auto;
            }
            
            .schedule-info {
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .cta-content h2 {
                font-size: 34px;
            }
            
            .fab {
                width: 60px;
                height: 60px;
                left: 20px;
                bottom: 20px;
            }
            
            .fab i {
                font-size: 24px;
            }
        }
