/* Custom variables for premium Slate Obsidian & Electric Blue review aesthetic */
:root {
  --primary-color: #3b82f6; /* Electric Blue */
  --primary-glow: rgba(59, 130, 246, 0.4);
  --bg-dark: #030712;
  --bg-gradient: linear-gradient(135deg, #030712 0%, #0b0f19 50%, #0f172a 100%);
  --panel-bg: rgba(15, 23, 42, 0.55);
  --sidebar-bg: rgba(15, 23, 42, 0.55);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text-primary: #cbd5e1; /* Crisp Slate Light */
  --text-secondary: #94a3b8; /* Muted Slate */
  --accent-color: #60a5fa; /* Soft Blue */
  --highlight-color: #ffffff; /* Pure White */
  --link-color: #38bdf8; /* Light Cyan */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset default styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: var(--bg-gradient);
}

/* Scrollbar styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #030712;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--highlight-color);
}

/* Navigation */
#nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

#nav li a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-title);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
}

#nav li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

/* Layout container Grid */
@media (min-width: 1025px) {
  #container {
    grid-template-columns: 2fr 1fr !important;
  }
}

/* Entry Content Styles */
.entry_content p {
  margin-bottom: 20px;
  font-size: 15.5px;
  color: var(--text-primary);
  line-height: 1.75;
}

.entry_content h2 {
  font-size: 24px;
  color: #fff;
  margin-top: 35px;
  margin-bottom: 18px;
  font-weight: 700;
}

.entry_content h3 {
  font-size: 20px;
  color: var(--accent-color);
  margin-top: 25px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Premium Review Cards Styling */
.review-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
}

.review-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.review-badge {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.review-rating-box {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.2);
  padding: 4px 10px;
  border-radius: 8px;
}

.review-rating-score {
  font-weight: 700;
  color: #fbbf24;
  font-size: 14px;
}

.review-stars {
  color: #fbbf24;
  font-size: 12px;
}

/* Pros and Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}

@media (max-width: 640px) {
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

.pro-box, .con-box {
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  padding: 16px;
}

.pro-box {
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.con-box {
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.pc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pro-box .pc-title { color: #34d399; }
.con-box .pc-title { color: #f87171; }

.pc-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pc-list li {
  font-size: 13px;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 !important;
}

.pro-check::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
}

.con-cross::before {
  content: "✗";
  color: #ef4444;
  font-weight: 700;
}

/* Call to Action Button */
.cta-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
  margin-top: 12px;
}

.cta-review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
  color: #fff;
}

/* Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 23, 42, 0.45);
  font-size: 14px;
}

.comp-table th, .comp-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-table th {
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  color: #fff;
}

.comp-table tr:last-child td {
  border-bottom: none;
}
