/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('/css/community.css');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #74acdf;
  --primary-dark: #5a9ad4;
  --secondary-color: #ffffff;
  --accent-color: #ffd43b;
  --success-color: #51cf66;
  --text-dark: #2d3436;
  --text-medium: #636e72;
  --text-light: #b2bec3;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --bg-gradient-1: #74acdf;
  --bg-gradient-2: #a8d0f0;
  --border-color: #e9ecef;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --star-color: #ffd43b;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  background-attachment: fixed;
}

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

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

nav {
  padding: 1.25rem 0;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo a .logo-text {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo a .logo-flag {
  height: 24px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo a:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s;
}

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

.nav-links a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.cta-btn {
  background: linear-gradient(135deg, #0072ff, #00c6ff) !important;
  color: white !important;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white !important;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 114, 255, 0.4);
  color: white !important;
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--primary-color) !important;
  padding: 0.875rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  color: white !important;
}

.btn-visit,
.btn-review {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  margin: 0.25rem;
  font-size: 0.95rem;
}

.btn-visit {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: white !important;
  box-shadow: 0 4px 12px rgba(0, 198, 255, 0.25);
}

.btn-visit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 198, 255, 0.35);
}

.btn-review {
  background: white;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
}

.btn-review:hover {
  background: var(--primary-color);
  color: white !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background:
    linear-gradient(135deg, rgba(0, 78, 146, 0.92) 0%, rgba(0, 4, 40, 0.92) 100%),
    url('/assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 198, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 114, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero .subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #ffd43b, #fcc419);
  color: #2d3436 !important;
  box-shadow: 0 8px 25px rgba(255, 212, 59, 0.3);
}

.hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 212, 59, 0.4);
}

.hero-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.9);
  color: white !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
  border-color: white;
}

/* Sections */
section {
  padding: 5rem 0;
}

section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  text-align: center;
  font-weight: 700;
}

section p.section-subtitle {
  text-align: center;
  color: var(--text-medium);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Page Hero */
.page-hero {
  background:
    linear-gradient(135deg, rgba(0, 78, 146, 0.95) 0%, rgba(0, 4, 40, 0.95) 100%),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0, 198, 255, 0.1), transparent 35%),
    url('/assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  color: white;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* Reviews Grid Section */
.reviews-grid-section {
  padding: 4rem 0;
  background: transparent;
}

/* Platform Cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.platform-card.featured {
  border: 3px solid #ffd43b;
  background: linear-gradient(135deg, rgba(255, 212, 59, 0.05) 0%, rgba(116, 172, 223, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.platform-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffd43b, #fcc419);
}

.badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: linear-gradient(135deg, #ffd43b, #fcc419);
  color: #2d3436;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 212, 59, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
}

.platform-header h2,
.platform-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.stars {
  color: var(--star-color);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.score {
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0.25rem;
  font-size: 1.125rem;
}

.platform-details {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.platform-details .description {
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: 1rem;
}

.features {
  list-style: none;
  margin: 1.25rem 0;
}

.features li {
  padding: 0.625rem 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-card .btn-review,
.platform-card .btn-visit {
  width: 100%;
  text-align: center;
  margin: 0.4rem 0;
  display: block;
}

.platform-stats {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.platform-stats strong {
  color: var(--text-dark);
}

/* Comparison Table */
.comparison-table {
  background: transparent;
}

.table-responsive {
  overflow-x: auto;
  margin: 2.5rem 0;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
}

thead {
  background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2));
  color: white;
}

th,
td {
  padding: 1.25rem 1rem;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s ease;
}

tbody tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

tbody tr:last-child {
  border-bottom: none;
}

.featured-row {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
  font-weight: 600;
}

.cta-box {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 4rem;
  border: 3px solid var(--primary-color);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.cta-box h2,
.cta-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.cta-box p {
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog Section */
.blog-list {
  padding: 4rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.blog-card.featured {
  border: 3px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 1rem 0;
}

.blog-card h2 a,
.blog-card h3 a {
  color: var(--text-dark);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--primary-color);
}

.blog-card p {
  color: var(--text-medium);
  margin: 1rem 0;
  line-height: 1.7;
  flex-grow: 1;
  font-size: 1rem;
}

.blog-card .btn-secondary {
  margin-top: 1.25rem;
  display: inline-block;
  align-self: flex-start;
}

.post-meta {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0.5rem 0;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Blog Article Pages */
.blog-article {
  padding: 1.5rem 0;
  background: transparent;
  min-height: 100vh;
}

.blog-article .container {
  max-width: 1200px;
  padding: 0 20px;
}

.blog-article article {
  max-width: 800px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.article-header {
  border-bottom: 3px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  background: white;
  padding: 1.5rem 2rem 1rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.article-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 2rem;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.article-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.article-header .meta {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-article section {
  margin-bottom: 1.5rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.blog-article section:last-of-type {
  margin-bottom: 0;
}

.blog-article h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  position: relative;
  padding-left: 1rem;
}

.blog-article section:first-of-type h2 {
  margin-top: 0;
}

.blog-article h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.blog-article h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin: 1.25rem 0 0.75rem 0;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.4;
}

.blog-article p {
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 0.875rem;
  font-size: 1.025rem;
  letter-spacing: 0.01em;
}

.blog-article p:last-child {
  margin-bottom: 0;
}

.blog-article p strong {
  color: var(--text-dark);
  font-weight: 600;
  background: linear-gradient(120deg, rgba(255, 107, 107, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
  padding: 0.1em 0.3em;
  border-radius: 3px;
}

.blog-article ul,
.blog-article ol {
  margin: 0.875rem 0;
  padding-left: 0;
  color: var(--text-medium);
  list-style: none;
}

.blog-article ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-article li {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.blog-article ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

.blog-article ol {
  counter-reset: list-counter;
}

.blog-article ol li {
  counter-increment: list-counter;
}

.blog-article ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

.blog-article li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.blog-article a:not(.btn-primary):not(.btn-large) {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
}

.blog-article a:not(.btn-primary):not(.btn-large):hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-color);
}

.blog-article .btn-primary,
.blog-article .btn-large {
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.blog-article .btn-primary:hover,
.blog-article .btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
}

/* Comparison Section */
.comparison-section {
  padding: 4rem 0;
  background: transparent;
}

.winner-summary {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-color);
  margin: 3rem 0;
  text-align: center;
}

.winner-summary h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 800;
}

.winner-summary p {
  color: var(--text-medium);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.winner-summary .btn-primary,
.winner-summary .btn-large {
  display: inline-block;
  margin-top: 0.5rem;
}

.category-breakdown {
  margin-top: 4rem;
}

.category-breakdown h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.comparison-section .container {
  max-width: 1400px;
}

.comparison-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.comparison-table-detailed {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
}

.comparison-table-detailed thead {
  background: linear-gradient(135deg, var(--bg-gradient-1), var(--bg-gradient-2));
  color: white;
}

.comparison-table-detailed th {
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table-detailed th:first-child {
  text-align: left;
}

.comparison-table-detailed td {
  padding: 1.25rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-medium);
}

.comparison-table-detailed td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
}

.comparison-table-detailed tbody tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.comparison-table-detailed tbody tr:last-child td {
  border-bottom: none;
}

.featured-col {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.12) 0%, rgba(78, 205, 196, 0.12) 100%) !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

/* Featured Post */
.featured-post {
  background: var(--bg-light);
  padding: 3rem 0;
}

.featured-card {
  background: #0f172a;
  border: 2px solid rgba(249, 115, 22, 0.5);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.featured-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.featured-card h2 a {
  color: var(--text-dark);
  text-decoration: none;
}

.featured-card h2 a:hover {
  color: var(--primary-color);
}

.post-excerpt {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 1.5rem 0;
}

.post-highlights {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.post-highlights span {
  color: var(--success-color);
  font-weight: 600;
}

/* Blog Categories */
.blog-categories {
  padding: 4rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.category-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.category-card p {
  color: var(--text-medium);
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.category-card ul {
  list-style: none;
}

.category-card li {
  padding: 0.5rem 0;
}

.category-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.category-card a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: var(--bg-light);
  padding: 3rem 0;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Enhanced Lists */
.blog-post article ul,
.legal-page ul,
.category-card ul,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.blog-post article li,
.legal-page li,
.category-card li,
.faq-list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.9;
  color: var(--text-medium);
  margin-bottom: 0.75rem;
}

.blog-post article li::before,
.legal-page li::before,
.category-card li::before,
.faq-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.blog-post article li strong,
.legal-page li strong,
.category-card li strong,
.faq-list li strong {
  color: var(--text-dark);
}

.blog-post .toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.35rem;
}

.blog-post .toc li {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0.35rem 0;
}

.blog-post .toc li::before {
  content: none;
}

/* Latest Posts Section */
.latest-posts {
  padding: 4rem 0;
  background: transparent;
}

/* Review Pages - Fresh Modern Design */
.review-page {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  background-attachment: fixed;
  padding: 3rem 0;
  min-height: 100vh;
}

.review-page .container {
  max-width: 1000px;
}

.review-page article {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
}

.review-header {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 3px solid var(--border-color);
  position: relative;
}

.review-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.review-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.3;
}

.review-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.rating-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(78, 205, 196, 0.08));
  padding: 2.5rem;
  border-radius: 16px;
  margin: 2rem 0;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rating-label {
  color: var(--text-medium);
  font-weight: 600;
  font-size: 1.05rem;
}

.review-summary {
  background: rgba(102, 126, 234, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  margin: 2.5rem 0;
  border-left: 5px solid var(--secondary-color);
}

.review-summary h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.review-summary p {
  color: var(--text-medium);
  line-height: 1.9;
  font-size: 1.05rem;
}

.key-features {
  margin: 3rem 0;
}

.key-features h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 700;
}

.feature-item {
  background: white;
  border: 2px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.feature-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-item p {
  color: var(--text-medium);
  line-height: 1.9;
  font-size: 1.05rem;
}

.rating-indicator {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border-color);
}

.rating-indicator .label {
  font-weight: 600;
  color: var(--text-dark);
}

.rating-indicator .stars {
  color: var(--star-color);
  font-size: 1.2rem;
}

.warning-box {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 107, 107, 0.05));
  border-left: 5px solid var(--primary-color);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 12px;
}

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

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pros,
.cons {
  background: white;
  border: 2px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.pros {
  border-left: 5px solid var(--success-color);
}

.cons {
  border-left: 5px solid var(--primary-color);
}

.pros h3,
.cons h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.pros ul,
.cons ul {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.pros li,
.cons li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-medium);
  line-height: 1.7;
}

.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.cons li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.verdict {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.05));
  padding: 2.5rem;
  border-radius: 16px;
  margin: 3rem 0;
  border: 2px solid var(--secondary-color);
}

.verdict h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.verdict p {
  color: var(--text-medium);
  line-height: 1.9;
  font-size: 1.05rem;
}

.final-rating {
  font-size: 1.3rem;
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
}

.alternatives {
  margin-top: 3rem;
}

.alternatives h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  font-weight: 700;
}

.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.alt-card {
  background: white;
  border: 2px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-dark);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.alt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.alt-card h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.alt-card .rating {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Blog Post Styles */
.blog-post article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.blog-post h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.blog-post .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.toc {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.toc h3 {
  margin-bottom: 1rem;
}

.toc ul {
  list-style: none;
}

.toc li {
  padding: 0.5rem 0;
}

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

.toc a:hover {
  text-decoration: underline;
}

.platform-section {
  margin: 3rem 0;
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.platform-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.quick-item {
  background: white;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
}

.quick-item h3 {
  margin-bottom: 0.5rem;
}

.quick-item .rating {
  color: var(--primary-color);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.final-cta {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 30%, #7c2d12 80%, #0f172a 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.final-cta h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.final-cta .btn-primary {
  background: white;
  color: var(--primary-color);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
  color: white;
  padding: 4rem 0 1.5rem;
  margin-top: 6rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-col li {
  padding: 0.4rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  header {
    position: relative;
  }

  nav {
    padding: 0.75rem 0;
  }

  nav .container {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .nav-links li:last-child {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .logo a {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .subtitle {
    font-size: 1.125rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .rating-box {
    flex-direction: column;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 0.85rem;
  }

  th,
  td {
    padding: 0.75rem 0.5rem;
  }

  .blog-article {
    padding: 1rem 0;
  }

  .blog-article article {
    padding: 0;
    margin: 0;
  }

  .article-header {
    padding: 1.25rem 1.5rem 0.875rem 1.5rem;
    margin-bottom: 1.25rem;
  }

  .article-header::after {
    left: 1.5rem;
    width: 60px;
  }

  .article-header h1 {
    font-size: 1.65rem;
    line-height: 1.2;
  }

  .article-header .meta {
    font-size: 0.8rem;
  }

  .blog-article section {
    margin-bottom: 1.25rem;
    padding: 1.25rem 1.5rem;
  }

  .blog-article h2 {
    font-size: 1.35rem;
    margin: 0 0 0.875rem 0;
    padding-left: 0.875rem;
  }

  .blog-article h2::before {
    width: 3px;
  }

  .blog-article section:first-of-type h2 {
    margin-top: 0;
  }

  .blog-article h3 {
    font-size: 1.15rem;
    margin: 1rem 0 0.65rem 0;
  }

  .blog-article p {
    font-size: 0.975rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .blog-article ul,
  .blog-article ol {
    margin: 0.75rem 0;
  }

  .blog-article ul {
    gap: 0.4rem;
  }

  .blog-article li {
    font-size: 0.95rem;
    padding-left: 1.35rem;
    line-height: 1.55;
  }

  .blog-article .btn-primary,
  .blog-article .btn-large {
    margin-top: 0.875rem;
  }

  .legal-page article {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
  }

  .comparison-table-detailed {
    font-size: 0.8rem;
  }

  .comparison-table-detailed th,
  .comparison-table-detailed td {
    padding: 0.75rem 0.5rem;
  }

  .cta-box {
    padding: 2rem 1.5rem;
    margin: 0 0.5rem;
    margin-top: 3rem;
  }
}

/* Filter Bar */
.filters {
  background: var(--bg-white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-group label {
  font-weight: 600;
  color: var(--text-dark);
}

.filter-group select {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 6px;
  background: #0f172a;
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
}

.filter-group select option {
  background: #0f172a;
  color: var(--text-dark);
}

.filter-stats {
  color: var(--text-light);
}

.filter-stats strong {
  color: var(--text-dark);
}

/* All Reviews Section */
.all-reviews {
  padding: 3rem 0;
}

.table-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.table-link:hover {
  text-decoration: underline;
}

/* Related Content */
/* Related Content */
.related-content {
  background: var(--bg-light);
  padding: 4rem 0;
}

/* Legal Pages - Fresh Modern Design */
.legal-page {
  padding: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 1000px;
  padding: 4rem 20px;
}

.legal-page h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page .updated {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-page section {
  background: white;
  margin: 1.5rem 0;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-page section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.legal-page section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.legal-page h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-page h2::before {
  content: '❓';
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.15));
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.legal-page h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 600;
}

.legal-page p {
  line-height: 1.9;
  color: var(--text-medium);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.legal-page p a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
}

.legal-page p a:hover {
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-color);
}

.legal-page ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.legal-page li {
  line-height: 1.9;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  padding-left: 1.75rem;
  position: relative;
}

.legal-page li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Special styling for contact section */
.legal-page section:last-of-type h2::before {
  content: '✉️';
}

/* Privacy page specific icons */
.legal-page section:nth-of-type(1) h2::before {
  content: '🔒';
}

.legal-page section:nth-of-type(2) h2::before {
  content: '⚙️';
}

.legal-page section:nth-of-type(3) h2::before {
  content: '🍪';
}

.legal-page section:nth-of-type(4) h2::before {
  content: '🔗';
}

.legal-navigation {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--border-color);
  text-align: center;
}

.legal-navigation a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0 1rem;
  transition: color 0.3s ease;
}

.legal-navigation a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Comparison Tool */
.comparison-tool {
  padding: 3rem 0;
}

.comparison-table-full {
  font-size: 0.95rem;
}

.comparison-table-full th,
.comparison-table-full td {
  padding: 1rem;
  vertical-align: middle;
}

.highlight-col {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14) 0%, rgba(34, 197, 94, 0.12) 100%) !important;
  font-weight: 700;
  color: var(--text-dark) !important;
}

.comparison-table-full .btn-primary,
.comparison-table-full .btn-secondary {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  display: inline-block;
  margin: 0.25rem;
}

.comparison-summary {
  background: #0f172a;
  border: 2px solid rgba(249, 115, 22, 0.55);
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.comparison-summary h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.comparison-summary p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.comparison-categories {
  background: #070d1a;
  padding: 4rem 0;
}

.category-comparison {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.category-comparison h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.category-comparison ol {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.category-comparison li {
  padding: 0.5rem 0;
  line-height: 1.6;
}