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

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-hover: #1f1f1f;
  --primary: #ff3366;
  --secondary: #00d4ff;
  --text: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border: #2a2a2a;
  --success: #00c853;
  --warning: #ffab00;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

nav a:hover {
  color: var(--text);
  background: var(--surface);
}

nav a.active {
  color: var(--primary);
  background: rgba(255, 51, 102, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Hero */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Quick Info Cards */
.quick-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.quick-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 140px;
}

.quick-info-card label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.quick-info-card value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff1a53);
  color: var(--text);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.3);
  color: var(--text);
}

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

.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--text-muted);
  color: var(--text);
}

/* Section */
section {
  padding: 80px 0;
}

section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

section h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 40px;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 51, 102, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  font-size: 15px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 500;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

tr:hover td {
  background: var(--surface);
}

/* Pro/Con Lists */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pros, .cons {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
}

.pros h3, .cons h3 {
  margin-bottom: 20px;
}

.pros li, .cons li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pros li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.cons li::before {
  content: '✗';
  color: var(--primary);
  font-weight: 700;
}

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

.faq h2 {
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  font-family: 'Syne', sans-serif;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding-bottom: 24px;
  color: var(--text-secondary);
}

/* Spoiler Warning */
.spoiler-warning {
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.1), rgba(255, 51, 102, 0.1));
  border: 1px solid var(--warning);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.spoiler-warning svg {
  width: 24px;
  height: 24px;
  color: var(--warning);
  flex-shrink: 0;
}

.spoiler-warning p {
  color: var(--text);
  font-weight: 500;
}

.spoiler-warning span {
  color: var(--text-secondary);
  font-size: 14px;
  display: block;
  margin-top: 8px;
  font-weight: 400;
}

/* Platform Cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.2s;
}

.platform-card:hover {
  border-color: var(--secondary);
}

.platform-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.platform-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.platform-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.platform-card .badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
}

.badge-success {
  background: rgba(0, 200, 83, 0.15);
  color: var(--success);
}

/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  margin-top: 80px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.footer-links a {
  color: var(--text-secondary);
  padding: 8px 16px;
  font-size: 14px;
}

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

.footer-copyright {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Page Header */
.page-header {
  padding: 140px 0 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-header .subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* Content Prose */
.content-prose {
  max-width: 800px;
  margin: 0 auto;
}

.content-prose h2 {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.content-prose h3 {
  margin-top: 32px;
}

.content-prose p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.content-prose ul {
  margin-bottom: 20px;
  padding-left: 24px;
  color: var(--text-secondary);
}

.content-prose li {
  margin-bottom: 12px;
}

/* Verdict Box */
.verdict-box {
  background: linear-gradient(135deg, var(--surface), #1a1a1a);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
}

.verdict-box h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.verdict-box p {
  font-size: 18px;
  color: var(--text);
}

/* Comparison Tables */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table th {
  background: var(--surface);
}

.comparison-table .check {
  color: var(--success);
}

.comparison-table .cross {
  color: var(--primary);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .quick-info {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  section {
    padding: 60px 0;
  }

  .page-header {
    padding: 120px 0 32px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  table {
    font-size: 14px;
  }

  th, td {
    padding: 12px 8px;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .platform-card {
    padding: 24px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero, section, .card, .platform-card {
  animation: fadeIn 0.5s ease forwards;
}

section:nth-child(2) {
  animation-delay: 0.1s;
}

section:nth-child(3) {
  animation-delay: 0.2s;
}

/* Music Note Decoration */
.music-decoration {
  position: absolute;
  font-size: 24px;
  color: var(--primary);
  opacity: 0.1;
  pointer-events: none;
}

/* Table Responsive */
.table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
}

.table-wrapper table {
  min-width: 600px;
}

@media (max-width: 768px) {
  .table-wrapper {
    margin: 24px -24px;
    padding: 0 24px;
  }
}

/* Search Box */
.search-box {
  max-width: 600px;
  margin: 0 auto 40px;
}

.search-input {
  width: 100%;
  padding: 18px 24px;
  padding-left: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 18px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text);
}

/* Progress Bar */
.progress-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}

.progress-bar-container {
  margin-bottom: 24px;
}

.progress-bar {
  height: 12px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 6px;
  transition: width 0.5s ease;
}

.progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.progress-text .completed {
  color: var(--success);
}

.progress-text .remaining {
  color: var(--text-muted);
}

.progress-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: var(--bg);
  border-radius: 12px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Tracker Checkbox */
.tracker-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.checkbox:hover {
  border-color: var(--primary);
}

.checkbox.checked {
  background: var(--success);
  border-color: var(--success);
}

.checkbox.checked::after {
  content: '✓';
  color: var(--text);
  font-weight: 700;
}

.checkbox.completed {
  background: var(--text-muted);
  opacity: 0.5;
}

/* Favorite Button */
.favorite-btn {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.favorite-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.favorite-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text);
}

.favorite-btn.active::before {
  content: '♥ ';
  color: var(--text);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.action-btn {
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.action-btn:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.action-btn.danger:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Score Display */
.score-display {
  text-align: center;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 24px;
}

.score-value {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.game-card {
  display: flex;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s;
}

.game-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.game-card-icon {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.game-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.game-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.game-card-tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.game-tag {
  padding: 4px 10px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 4px;
  font-size: 12px;
  color: var(--secondary);
}

/* Length Table */
.length-table {
  max-width: 500px;
  margin: 0 auto;
}

.length-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.length-row:last-child {
  border-bottom: none;
}

.length-label {
  font-weight: 500;
}

.length-time {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

/* Game Pass Box */
.gamepass-box {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 51, 102, 0.1));
  border: 1px solid var(--secondary);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
}

.gamepass-box h3 {
  color: var(--secondary);
  margin-bottom: 16px;
}

.gamepass-list {
  list-style: none;
}

.gamepass-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gamepass-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* Spoiler Notice */
.spoiler-notice {
  background: rgba(255, 171, 0, 0.05);
  border: 1px solid rgba(255, 171, 0, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Character Card */
.character-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.character-card h3 {
  margin-bottom: 8px;
}

.character-role {
  color: var(--secondary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.character-details {
  display: grid;
  gap: 16px;
}

.detail-row {
  display: flex;
  gap: 12px;
}

.detail-label {
  color: var(--text-muted);
  font-size: 14px;
  min-width: 120px;
}

.detail-value {
  color: var(--text);
  font-size: 14px;
}

/* Forms */
.form-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-submit {
  text-align: center;
  margin-top: 24px;
}

.form-submit .btn {
  min-width: 200px;
}

/* Community Hub Cards */
.community-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.community-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.2s;
}

.community-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.community-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.community-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.community-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Review Cards */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.review-rating {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.review-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.review-tags {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.review-tag {
  padding: 4px 10px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 4px;
  font-size: 12px;
  color: var(--secondary);
}

.review-tag.spoiler {
  background: rgba(255, 171, 0, 0.1);
  color: var(--warning);
}

.review-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Ranking List */
.ranking-list {
  list-style: none;
}

.ranking-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

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

.ranking-position {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.ranking-position.gold {
  background: linear-gradient(135deg, #ffd700, #ffb800);
  color: #000;
}

.ranking-position.silver {
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
  color: #000;
}

.ranking-position.bronze {
  background: linear-gradient(135deg, #cd7f32, #b87333);
  color: #fff;
}

.ranking-info {
  flex: 1;
}

.ranking-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.ranking-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.ranking-votes {
  font-size: 14px;
  color: var(--secondary);
  font-weight: 600;
}

.vote-btn {
  padding: 8px 16px;
  background: var(--primary);
  border: none;
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.vote-btn:hover {
  transform: scale(1.05);
}

.vote-btn.voted {
  background: var(--success);
}

/* Theory Cards */
.theory-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.theory-card h3 {
  margin-bottom: 12px;
}

.theory-type {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 51, 102, 0.1);
  border-radius: 4px;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 12px;
}

.theory-summary {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 12px 0;
}

/* Community Guidelines */
.guidelines {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.guidelines h3 {
  margin-bottom: 16px;
}

.guidelines ul {
  padding-left: 20px;
}

.guidelines li {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* Newsletter */
.newsletter-box {
  background: linear-gradient(135deg, var(--surface), #1a1a1a);
  border: 1px solid var(--secondary);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.newsletter-box h3 {
  margin-bottom: 16px;
}

.newsletter-box p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 14px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 16px;
  min-width: 280px;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary);
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: var(--success);
  color: var(--text);
  border-radius: 8px;
  font-weight: 600;
  z-index: 1000;
  animation: slideIn 0.3s ease;
}

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