/* ========================================
   吃瓜网 - 影视娱乐全案营销与公关宣发平台
   主题色彩：荧光青 + 赛博粉 + 深灰黑
   ======================================== */

/* CSS Variables */
:root {
  --primary: #CCFF00;
  --secondary: #FF00FF;
  --bg-dark: #1A1A1A;
  --card-dark: #2A2A2A;
  --text-light: #F0F0F0;
  --text-muted: #AAAAAA;
  --gradient-primary: linear-gradient(135deg, #CCFF00, #00FFCC);
  --gradient-secondary: linear-gradient(135deg, #FF00FF, #FF6600);
  --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-neon: 0 0 20px rgba(204, 255, 0, 0.3);
  --shadow-pink: 0 0 20px rgba(255, 0, 255, 0.3);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--primary);
  background: rgba(204, 255, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
  text-shadow: 0 0 10px var(--secondary);
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.5rem 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(1.5) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.5) 50%, rgba(26,26,26,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(204, 255, 0, 0.1);
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(204, 255, 0, 0); }
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero h1 .highlight {
  color: var(--primary);
  text-shadow: 0 0 30px rgba(204, 255, 0, 0.5);
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: #E6FF33;
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px);
  color: var(--bg-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--bg-dark);
  box-shadow: var(--shadow-pink);
  transform: translateY(-3px);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-dark);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(204, 255, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
}

.card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: grayscale(30%);
}

.card:hover .card-image img {
  transform: scale(1.1);
  filter: grayscale(0%) hue-rotate(20deg);
}

.card-body {
  padding: 2rem;
}

.card-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid var(--secondary);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.card-body p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-link:hover {
  gap: 1rem;
}

/* Masonry Layout */
.masonry-grid {
  columns: 3;
  column-gap: 2rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 2rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-content {
  background: var(--card-dark);
  padding: 2rem;
  border-radius: 15px;
  max-width: 450px;
  border: 1px solid rgba(204, 255, 0, 0.1);
  margin: 0 2rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-neon);
}

.timeline-phase {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  background: var(--card-dark);
  border-radius: 15px;
  border: 1px solid rgba(204, 255, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Resource Map */
.resource-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.resource-platform {
  background: var(--card-dark);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 0, 255, 0.1);
  transition: var(--transition);
}

.resource-platform:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-pink);
  transform: scale(1.05);
}

.resource-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 0, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ROI Calculator */
.roi-calculator {
  background: var(--card-dark);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(204, 255, 0, 0.1);
}

.roi-input-group {
  margin-bottom: 2rem;
}

.roi-input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
}

.roi-input-group input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  background: var(--bg-dark);
  border-radius: 3px;
  outline: none;
}

.roi-input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-neon);
}

.roi-result {
  text-align: center;
  padding: 2rem;
  background: rgba(204, 255, 0, 0.05);
  border-radius: 15px;
  border: 1px dashed var(--primary);
}

.roi-result .number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
}

/* Crossover Matcher */
.crossover-matcher {
  background: var(--card-dark);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 0, 255, 0.1);
}

.matcher-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.matcher-select {
  width: 100%;
  padding: 1rem;
  background: var(--bg-dark);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
}

.matcher-select option {
  background: var(--bg-dark);
}

.match-result {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 0, 255, 0.05);
  border-radius: 15px;
  border: 1px dashed var(--secondary);
}

.match-score {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
.footer {
  background: #111111;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(204, 255, 0, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-compliance a {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-left: 1.5rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
}

.page-header h1 {
  margin-bottom: 1rem;
  position: relative;
}

.page-header .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
}

.page-header .breadcrumb a {
  color: var(--primary);
}

/* Content Page */
.content-section {
  padding: 4rem 0;
}

.content-body {
  max-width: 900px;
  margin: 0 auto;
}

.content-body h2 {
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
  color: var(--primary);
}

.content-body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--text-light);
}

.content-body p {
  margin-bottom: 1.5rem;
}

.content-body ul, .content-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-body li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-dark);
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid rgba(204, 255, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-light);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 500px;
}

/* Search Page */
.search-container {
  max-width: 700px;
  margin: 0 auto;
}

.search-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.search-input {
  flex: 1;
  padding: 1rem 2rem;
  background: var(--card-dark);
  border: 2px solid rgba(204, 255, 0, 0.2);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
}

.search-btn {
  padding: 1rem 2rem;
  background: var(--primary);
  color: var(--bg-dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.search-results {
  list-style: none;
}

.search-result-item {
  padding: 1.5rem;
  background: var(--card-dark);
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid rgba(204, 255, 0, 0.05);
  transition: var(--transition);
}

.search-result-item:hover {
  border-color: var(--primary);
}

.search-result-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.search-result-item p {
  font-size: 0.85rem;
}

/* 404 Page */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-code {
  font-size: 10rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.text-reveal {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.text-reveal.active {
  clip-path: inset(0 0 0 0);
}

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

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 2s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  color: var(--primary);
  opacity: 0.8;
}

.glitch::after {
  animation: glitch-2 3s infinite linear alternate-reverse;
  clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
  color: var(--secondary);
  opacity: 0.8;
}

@keyframes glitch-1 {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@keyframes glitch-2 {
  0% { transform: translate(0); }
  20% { transform: translate(2px, -2px); }
  40% { transform: translate(2px, 2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(-2px, 2px); }
  100% { transform: translate(0); }
}

/* Color Invert on Hover */
.color-invert:hover img {
  filter: invert(1) hue-rotate(180deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .masonry-grid { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-map { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 5rem 2rem;
    transition: right 0.3s;
    border-left: 1px solid rgba(204, 255, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 { font-size: 2.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .resource-map { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline-dot { left: 20px; }
  .matcher-options { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }

  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-desc { font-size: 1rem; }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Detail Page Specific */
.detail-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.detail-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 60%);
}

.detail-hero .container {
  position: relative;
  z-index: 2;
}

.detail-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.detail-meta span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Related Links */
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.related-link-card {
  padding: 1.5rem;
  background: var(--card-dark);
  border-radius: 15px;
  border: 1px solid rgba(204, 255, 0, 0.05);
  transition: var(--transition);
}

.related-link-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

/* App Download Page */
.app-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-features {
  list-style: none;
}

.app-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}

.app-features li::before {
  content: '◆';
  color: var(--primary);
}

.download-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Compliance Pages */
.compliance-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.compliance-content h2 {
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
}

.compliance-content p {
  margin-bottom: 1rem;
}

.compliance-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.compliance-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
