/* ============================================
   c7-style.css — c7娱乐 赛博朋克霓虹风主样式
   CSS前缀: c7-
   ============================================ */

/* --- CSS Variables --- */
:root {
  --c7-primary: #0D0221;
  --c7-secondary: #2A1B3D;
  --c7-accent: #F72585;
  --c7-highlight: #4CC9F0;
  --c7-bg: #04010A;
  --c7-text: #F0F0F0;
  --c7-text-muted: #A9A9A9;
  --c7-radius: 4px;
  --c7-shadow-neon: 0 0 15px rgba(247, 37, 133, 0.5);
  --c7-shadow-blue: 0 0 15px rgba(76, 201, 240, 0.5);
  --c7-gradient-primary: linear-gradient(135deg, #F72585, #4CC9F0);
  --c7-font-title: 'Orbitron', 'Noto Sans SC', sans-serif;
  --c7-font-body: 'Noto Sans SC', 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--c7-font-body);
  background-color: var(--c7-bg);
  color: var(--c7-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c7-highlight); text-decoration: none; transition: all 0.25s ease; }
a:hover { color: var(--c7-accent); text-shadow: 0 0 8px rgba(247, 37, 133, 0.6); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--c7-font-title);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c7-text);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* --- Layout --- */
.c7-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.c7-section {
  padding: 80px 0;
  position: relative;
}

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

.c7-section-title h2 {
  display: inline-block;
  padding-bottom: 15px;
  position: relative;
}

.c7-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--c7-gradient-primary);
  box-shadow: var(--c7-shadow-neon);
}

.c7-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.c7-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.c7-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Navigation --- */
.c7-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 2, 33, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 37, 133, 0.2);
  transition: background 0.3s ease;
}

.c7-navbar.c7-scrolled {
  background: rgba(4, 1, 10, 0.95);
}

.c7-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.c7-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--c7-font-title);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c7-accent);
  text-shadow: 0 0 10px rgba(247, 37, 133, 0.7);
}

.c7-logo img {
  width: 42px;
  height: 42px;
  border-radius: var(--c7-radius);
}

.c7-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.c7-nav-links a {
  color: var(--c7-text);
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--c7-radius);
  position: relative;
  transition: all 0.25s ease;
}

.c7-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--c7-highlight);
  transition: transform 0.25s ease;
}

.c7-nav-links a:hover {
  color: var(--c7-accent);
  text-shadow: 0 0 10px rgba(247, 37, 133, 0.6);
}

.c7-nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.c7-nav-links a.c7-active {
  color: var(--c7-accent);
}

.c7-btn-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--c7-gradient-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--c7-radius);
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.c7-btn-cta:hover {
  box-shadow: var(--c7-shadow-neon);
  transform: translateY(-2px);
  color: #fff;
}

.c7-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.c7-mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--c7-accent);
  transition: all 0.3s ease;
}

/* --- Hero Banner --- */
.c7-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.c7-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}

.c7-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(4,1,10,0.3) 0%, rgba(13,2,33,0.7) 100%);
  z-index: 1;
}

.c7-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.c7-hero-tag {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--c7-highlight);
  background: rgba(76, 201, 240, 0.1);
  border: 1px solid rgba(76, 201, 240, 0.3);
  padding: 6px 16px;
  border-radius: var(--c7-radius);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.c7-hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
}

.c7-hero-content h1 .c7-neon-text {
  color: var(--c7-accent);
  text-shadow: 0 0 15px rgba(247, 37, 133, 0.8), 0 0 30px rgba(247, 37, 133, 0.4);
}

.c7-hero-subtitle {
  font-size: 1.1rem;
  color: var(--c7-text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.c7-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.c7-btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--c7-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--c7-radius);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(247, 37, 133, 0.4);
}

.c7-btn-primary:hover {
  background: #d91e72;
  box-shadow: 0 0 30px rgba(247, 37, 133, 0.7);
  transform: translateY(-2px);
  color: #fff;
}

.c7-btn-outline {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--c7-highlight);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--c7-highlight);
  border-radius: var(--c7-radius);
  cursor: pointer;
  transition: all 0.25s ease;
}

.c7-btn-outline:hover {
  background: rgba(76, 201, 240, 0.1);
  box-shadow: var(--c7-shadow-blue);
  transform: translateY(-2px);
  color: var(--c7-highlight);
}

/* --- Casino Entry Matrix --- */
.c7-casino-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.c7-casino-card {
  position: relative;
  border-radius: var(--c7-radius);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(247, 37, 133, 0.15);
}

.c7-casino-card:hover {
  border-color: var(--c7-accent);
  box-shadow: var(--c7-shadow-neon);
  transform: translateY(-4px);
}

.c7-casino-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.c7-casino-card:hover img {
  transform: scale(1.08);
}

.c7-casino-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  background: linear-gradient(transparent, rgba(4,1,10,0.95));
}

.c7-casino-card-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--c7-accent);
}

.c7-casino-card-overlay p {
  font-size: 0.9rem;
  color: var(--c7-text-muted);
}

/* --- Jackpot Ticker --- */
.c7-jackpot-ticker {
  background: rgba(13, 2, 33, 0.6);
  border-top: 1px solid rgba(247, 37, 133, 0.2);
  border-bottom: 1px solid rgba(247, 37, 133, 0.2);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.c7-ticker-track {
  display: flex;
  gap: 60px;
  animation: c7-ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.c7-ticker-item {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: var(--c7-highlight);
  flex-shrink: 0;
}

.c7-ticker-item .c7-ticker-amount {
  color: var(--c7-accent);
  font-weight: 700;
}

@keyframes c7-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Game Cards --- */
.c7-game-card {
  background: var(--c7-secondary);
  border-radius: var(--c7-radius);
  overflow: hidden;
  border: 1px solid rgba(247, 37, 133, 0.1);
  transition: all 0.3s ease;
}

.c7-game-card:hover {
  border-color: var(--c7-accent);
  box-shadow: var(--c7-shadow-neon);
  transform: translateY(-6px);
}

.c7-game-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.c7-game-card-body {
  padding: 18px;
}

.c7-game-card-body h4 {
  margin-bottom: 8px;
}

.c7-game-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.c7-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.75rem;
  border-radius: var(--c7-radius);
  background: rgba(76, 201, 240, 0.15);
  color: var(--c7-highlight);
  border: 1px solid rgba(76, 201, 240, 0.3);
}

.c7-tag-hot {
  background: rgba(247, 37, 133, 0.15);
  color: var(--c7-accent);
  border-color: rgba(247, 37, 133, 0.3);
}

.c7-game-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--c7-text-muted);
  margin-bottom: 14px;
}

.c7-game-buttons {
  display: flex;
  gap: 10px;
}

.c7-game-buttons .c7-btn-sm {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.8rem;
  text-align: center;
  border-radius: var(--c7-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.c7-btn-sm-primary {
  background: var(--c7-accent);
  color: #fff;
  border: none;
}

.c7-btn-sm-primary:hover {
  box-shadow: var(--c7-shadow-neon);
  color: #fff;
}

.c7-btn-sm-outline {
  background: transparent;
  color: var(--c7-highlight);
  border: 1px solid var(--c7-highlight);
}

.c7-btn-sm-outline:hover {
  background: rgba(76, 201, 240, 0.1);
  color: var(--c7-highlight);
}

/* --- Video Cards (Live Dealer) --- */
.c7-dealer-section {
  border: 1px solid rgba(247, 37, 133, 0.3);
  border-radius: var(--c7-radius);
  padding: 30px;
  background: rgba(13, 2, 33, 0.3);
  box-shadow: 0 0 30px rgba(247, 37, 133, 0.1);
}

.c7-dealer-card {
  background: var(--c7-primary);
  border-radius: var(--c7-radius);
  overflow: hidden;
  border: 1px solid rgba(76, 201, 240, 0.2);
  transition: all 0.3s ease;
}

.c7-dealer-card:hover {
  border-color: var(--c7-highlight);
  box-shadow: var(--c7-shadow-blue);
}

.c7-dealer-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #000;
}

.c7-dealer-card-info {
  padding: 16px;
}

.c7-dealer-card-info h4 {
  margin-bottom: 8px;
  color: var(--c7-highlight);
}

.c7-dealer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.c7-dealer-name { color: var(--c7-text-muted); }

.c7-status-open {
  color: #00ff88;
  font-weight: 600;
  font-size: 0.8rem;
}

/* --- VIP Terminal --- */
.c7-vip-terminal {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(42, 27, 61, 0.6), rgba(13, 2, 33, 0.8));
  border: 1px solid rgba(247, 37, 133, 0.2);
  border-radius: var(--c7-radius);
  padding: 50px;
}

.c7-vip-features { list-style: none; }

.c7-vip-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 37, 133, 0.1);
  font-size: 0.95rem;
  color: var(--c7-text-muted);
}

.c7-vip-features li::before {
  content: '▸ ';
  color: var(--c7-accent);
  font-weight: 700;
}

.c7-vip-login-box {
  background: rgba(4, 1, 10, 0.6);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: var(--c7-radius);
  padding: 30px;
  text-align: center;
}

.c7-vip-login-box h3 {
  margin-bottom: 20px;
  color: var(--c7-highlight);
}

.c7-form-input {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 14px;
  background: rgba(13, 2, 33, 0.8);
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: var(--c7-radius);
  color: var(--c7-text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.c7-form-input:focus {
  border-color: var(--c7-accent);
  box-shadow: 0 0 8px rgba(247, 37, 133, 0.3);
}

/* --- Odds / Betting Module --- */
.c7-odds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.c7-odds-card {
  background: rgba(42, 27, 61, 0.5);
  border: 1px solid rgba(76, 201, 240, 0.15);
  border-radius: var(--c7-radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.c7-odds-card:hover {
  border-color: var(--c7-highlight);
  box-shadow: var(--c7-shadow-blue);
}

.c7-odds-card h4 {
  color: var(--c7-highlight);
  margin-bottom: 10px;
}

.c7-odds-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--c7-accent);
  font-family: var(--c7-font-title);
}

/* --- Article Cards --- */
.c7-article-card {
  background: var(--c7-secondary);
  border-radius: var(--c7-radius);
  overflow: hidden;
  border: 1px solid rgba(247, 37, 133, 0.1);
  transition: all 0.3s ease;
}

.c7-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--c7-shadow-neon);
  border-color: var(--c7-accent);
}

.c7-article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.c7-article-card-body {
  padding: 20px;
}

.c7-article-card-body h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.c7-article-card-body p {
  font-size: 0.88rem;
  color: var(--c7-text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.c7-article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--c7-text-muted);
}

/* --- Gallery --- */
.c7-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.c7-gallery-item {
  border-radius: var(--c7-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(247, 37, 133, 0.1);
}

.c7-gallery-item:hover {
  box-shadow: var(--c7-shadow-neon);
  border-color: var(--c7-accent);
  transform: scale(1.03);
}

.c7-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.c7-gallery-item:hover img {
  transform: scale(1.1);
}

/* --- Community Terminal --- */
.c7-community-terminal {
  background: rgba(13, 2, 33, 0.6);
  border: 1px solid rgba(76, 201, 240, 0.2);
  border-radius: var(--c7-radius);
  padding: 30px;
}

.c7-chat-message {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(76, 201, 240, 0.1);
}

.c7-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c7-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.c7-chat-content { flex: 1; }

.c7-chat-username {
  font-weight: 700;
  color: var(--c7-highlight);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.c7-chat-text {
  font-size: 0.88rem;
  color: var(--c7-text-muted);
  line-height: 1.5;
}

.c7-chat-time {
  font-size: 0.75rem;
  color: rgba(169, 169, 169, 0.5);
  margin-top: 4px;
}

/* --- Partners & Certification --- */
.c7-partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.c7-partner-badge {
  background: rgba(42, 27, 61, 0.4);
  border: 1px solid rgba(76, 201, 240, 0.15);
  border-radius: var(--c7-radius);
  padding: 20px 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--c7-text-muted);
  transition: all 0.3s ease;
  min-width: 140px;
}

.c7-partner-badge:hover {
  border-color: var(--c7-highlight);
  box-shadow: var(--c7-shadow-blue);
}

.c7-partner-badge .c7-badge-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

/* --- Payment Network --- */
.c7-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.c7-payment-item {
  background: rgba(42, 27, 61, 0.3);
  border: 1px solid rgba(247, 37, 133, 0.1);
  border-radius: var(--c7-radius);
  padding: 14px 24px;
  font-size: 0.85rem;
  color: var(--c7-text-muted);
  font-weight: 600;
  transition: all 0.3s ease;
}

.c7-payment-item:hover {
  border-color: var(--c7-accent);
  color: var(--c7-text);
}

/* --- Footer --- */
.c7-footer {
  background: var(--c7-primary);
  border-top: 2px solid var(--c7-accent);
  padding-top: 60px;
}

.c7-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.c7-footer-col h4 {
  color: var(--c7-accent);
  margin-bottom: 20px;
  font-size: 1rem;
}

.c7-footer-col p {
  font-size: 0.88rem;
  color: var(--c7-text-muted);
  line-height: 1.7;
}

.c7-footer-col ul {
  list-style: none;
}

.c7-footer-col ul li {
  margin-bottom: 10px;
}

.c7-footer-col ul li a {
  color: var(--c7-text-muted);
  font-size: 0.88rem;
  transition: all 0.25s ease;
}

.c7-footer-col ul li a:hover {
  color: var(--c7-accent);
  padding-left: 4px;
}

.c7-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.c7-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(76, 201, 240, 0.3);
  color: var(--c7-highlight);
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.c7-footer-social a:hover {
  background: var(--c7-accent);
  border-color: var(--c7-accent);
  color: #fff;
}

.c7-footer-seo {
  padding: 20px 0;
  border-top: 1px solid rgba(247, 37, 133, 0.15);
  font-size: 0.75rem;
  color: var(--c7-text-muted);
  line-height: 1.8;
  text-align: center;
}

.c7-footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(247, 37, 133, 0.15);
  font-size: 0.8rem;
  color: var(--c7-text-muted);
}

/* --- Breadcrumb --- */
.c7-breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
}

.c7-breadcrumb a { color: var(--c7-text-muted); }
.c7-breadcrumb a:hover { color: var(--c7-accent); }
.c7-breadcrumb span { color: var(--c7-highlight); }
.c7-breadcrumb-sep { margin: 0 8px; color: rgba(169,169,169,0.4); }

/* --- Page Banner --- */
.c7-page-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
}

.c7-page-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.c7-page-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.c7-page-banner-content h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(247, 37, 133, 0.5);
}

.c7-page-banner-content p {
  font-size: 1.1rem;
  color: var(--c7-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Content Area --- */
.c7-content-area {
  padding: 60px 0;
}

.c7-content-area p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--c7-text-muted);
}

.c7-content-area h2 {
  margin: 40px 0 20px;
  color: var(--c7-accent);
}

.c7-content-area h3 {
  margin: 30px 0 16px;
  color: var(--c7-highlight);
}

.c7-content-img {
  width: 100%;
  border-radius: var(--c7-radius);
  margin: 24px 0;
  border: 1px solid rgba(247, 37, 133, 0.15);
}

/* --- Filter Sidebar (E-game) --- */
.c7-egame-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

.c7-filter-sidebar {
  background: rgba(42, 27, 61, 0.4);
  border: 1px solid rgba(76, 201, 240, 0.15);
  border-radius: var(--c7-radius);
  padding: 24px;
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.c7-filter-group {
  margin-bottom: 24px;
}

.c7-filter-group h4 {
  color: var(--c7-highlight);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.c7-filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--c7-text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.c7-filter-group label:hover { color: var(--c7-text); }

.c7-filter-group input[type="checkbox"] {
  accent-color: var(--c7-accent);
}

.c7-search-box {
  width: 100%;
  padding: 12px 16px;
  background: rgba(4, 1, 10, 0.6);
  border: 1px solid rgba(76, 201, 240, 0.3);
  border-radius: var(--c7-radius);
  color: var(--c7-text);
  font-size: 0.9rem;
  outline: none;
  margin-bottom: 20px;
}

.c7-search-box:focus {
  border-color: var(--c7-accent);
}

/* --- APP Download --- */
.c7-app-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
}

.c7-app-hero-img {
  max-width: 350px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(247, 37, 133, 0.3);
}

.c7-app-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.c7-app-btn {
  padding: 14px 28px;
  border-radius: var(--c7-radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.c7-app-btn-ios {
  background: var(--c7-accent);
  color: #fff;
  border: none;
}

.c7-app-btn-android {
  background: var(--c7-highlight);
  color: #04010A;
  border: none;
}

.c7-app-btn-apk {
  background: transparent;
  color: var(--c7-text);
  border: 2px solid var(--c7-text-muted);
}

.c7-app-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.c7-app-feature-card {
  background: rgba(42, 27, 61, 0.4);
  border: 1px solid rgba(76, 201, 240, 0.15);
  border-radius: var(--c7-radius);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.c7-app-feature-card:hover {
  border-color: var(--c7-accent);
  box-shadow: var(--c7-shadow-neon);
  transform: translateY(-4px);
}

.c7-app-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.c7-app-feature-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.c7-app-feature-card p {
  font-size: 0.85rem;
  color: var(--c7-text-muted);
}

/* --- Scanlines Effect --- */
.c7-scanlines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 3;
}

/* --- Glitch Effect --- */
.c7-glitch {
  position: relative;
}

@keyframes c7-glitch-anim {
  0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
  20% { clip-path: inset(92% 0 1% 0); transform: translate(1px, -1px); }
  40% { clip-path: inset(43% 0 1% 0); transform: translate(-1px, 3px); }
  60% { clip-path: inset(25% 0 58% 0); transform: translate(3px, 1px); }
  80% { clip-path: inset(54% 0 7% 0); transform: translate(-3px, -2px); }
  100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -3px); }
}

/* --- Neon Pulse --- */
@keyframes c7-pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(247, 37, 133, 0.4); }
  50% { box-shadow: 0 0 25px rgba(247, 37, 133, 0.8), 0 0 50px rgba(247, 37, 133, 0.3); }
}

.c7-pulse-glow {
  animation: c7-pulse-glow 2s ease-in-out infinite;
}

/* --- FAQ Section --- */
.c7-faq-item {
  background: rgba(42, 27, 61, 0.3);
  border: 1px solid rgba(76, 201, 240, 0.1);
  border-radius: var(--c7-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.c7-faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--c7-text);
  transition: background 0.2s ease;
}

.c7-faq-question:hover {
  background: rgba(247, 37, 133, 0.05);
}

.c7-faq-answer {
  padding: 0 24px 18px;
  color: var(--c7-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}

.c7-faq-item.c7-faq-open .c7-faq-answer {
  display: block;
}

/* --- Matrix Rain Canvas --- */
#c7-matrix-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}
