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

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

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

/* Header */
header {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

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

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

nav a:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-secondary), white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.search-bar {
  max-width: 500px;
  margin: 0 auto 3rem;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-bar input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-bar i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: bold;
}

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

/* Featured Section */
.featured-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

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

.featured-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.featured-card:hover {
  transform: translateY(-5px);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.featured-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.rating {
  color: var(--accent-color);
  font-weight: bold;
  margin-bottom: 1rem;
}

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

.read-more:hover {
  color: var(--secondary-color);
}

/* Main Content */
main {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-primary);
  font-weight: 700;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* VPN Cards Grid */
.vpn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.vpn-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.vpn-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vpn-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.vpn-logo {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.vpn-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.vpn-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.rating-score {
  font-weight: bold;
  color: var(--text-primary);
}

.vpn-summary {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.vpn-features {
  margin: 1.5rem 0;
}

.vpn-features h4 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.1rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.feature-list i {
  color: var(--success-color);
  margin-right: 0.5rem;
  width: 16px;
}

.vpn-pricing {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  text-align: center;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.price-period {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.price-note {
  color: var(--success-color);
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.vpn-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-button {
  flex: 1;
  padding: 1rem;
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s ease;
}

.review-button:hover {
  background: var(--primary-color);
  color: white;
}

.cta-button {
  flex: 1;
  padding: 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: none;
}

.cta-button:hover {
  transform: scale(1.02);
}

/* Comparison Table */
.comparison-section {
  margin: 4rem 0;
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.comparison-table {
  overflow-x: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

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

th {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}

tr:hover {
  background: var(--bg-secondary);
}

.check-mark {
  color: var(--success-color);
  font-size: 1.2rem;
}

.x-mark {
  color: var(--danger-color);
  font-size: 1.2rem;
}

/* Methodology Section */
.methodology-section {
  padding: 4rem 0;
  background: white;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.method-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: var(--bg-secondary);
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.method-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.method-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-size: 1.1rem;
}

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

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

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-section p {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Review Page Styles */
.review-hero {
  background: var(--gradient-primary);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.review-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.review-hero .rating {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-content {
  margin: 0 auto;
  padding: 3rem;
}

.review-section {
  margin-bottom: 3rem;
}

.review-section h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.review-section h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros,
.cons {
  padding: 1.5rem;
  border-radius: 10px;
}

.pros {
  background: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--success-color);
}

.cons {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid var(--danger-color);
}

.pros h4,
.cons h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.pros h4 {
  color: var(--success-color);
}

.cons h4 {
  color: var(--danger-color);
}

.pros ul,
.cons ul {
  list-style: none;
}

.pros li,
.cons li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.speed-test-results {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

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

.speed-item {
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
}

.speed-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 10px;
  }

  nav ul.active {
    display: flex;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

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

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

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

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

  .vpn-actions {
    flex-direction: column;
  }

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

  th,
  td {
    padding: 0.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Loading Animation */
.loading {
  display: none;
  text-align: center;
  padding: 2rem;
}

.spinner {
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.vpn-card:hover .vpn-logo {
  animation: pulse 0.6s ease-in-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}

/* VPN Provider Banners */
.vpn-banners {
  background: var(--bg-secondary);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.vpn-banner {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.vpn-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.expressvpn-banner {
  border-color: #da020e;
}

.nordvpn-banner {
  border-color: #4687ff;
}

.surfshark-banner {
  border-color: #00d4aa;
}

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

.banner-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.banner-logo i {
  font-size: 1.5rem;
}

.expressvpn-banner .banner-logo i {
  color: #da020e;
}

.nordvpn-banner .banner-logo i {
  color: #4687ff;
}

.surfshark-banner .banner-logo i {
  color: #00d4aa;
}

.banner-offer {
  text-align: center;
  flex: 1;
}

.offer-text {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.offer-price {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.banner-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease;
  white-space: nowrap;
  display: none;
}

.banner-cta:hover {
  transform: scale(1.05);
}

/* Guides Page Styles */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.guide-category {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.guide-category:hover {
  transform: translateY(-5px);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.category-icon i {
  font-size: 2rem;
  color: white;
}

.guide-category h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.guide-category p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.guide-links {
  list-style: none;
}

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

.guide-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.guide-links a:hover {
  color: var(--secondary-color);
}

.guide-section {
  margin-bottom: 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.guide-section:last-child {
  border-bottom: none;
}

.guide-content {
  max-width: 800px;
  margin: 0 auto;
}

.guide-intro {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.setup-method {
  margin-bottom: 3rem;
}

.setup-method h3 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.benefit-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.benefit-item h4 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.firmware-option {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.firmware-option h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.firmware-option p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.firmware-option ul {
  list-style: none;
}

.firmware-option li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.firmware-option li:before {
  content: "✓ ";
  color: var(--success-color);
  font-weight: bold;
}

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

.troubleshooting {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

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

.troubleshooting ul {
  list-style: none;
}

.troubleshooting li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.troubleshooting li:last-child {
  border-bottom: none;
}

.troubleshooting strong {
  color: var(--primary-color);
}

.general-tips {
  background: var(--bg-secondary);
  padding: 4rem 0;
  margin-top: 4rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.tip-icon i {
  font-size: 1.5rem;
  color: white;
}

.tip-card h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tip-card ul {
  list-style: none;
  text-align: left;
}

.tip-card li {
  padding: 0.25rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.tip-card li:before {
  content: "• ";
  color: var(--primary-color);
  font-weight: bold;
}

/* FAQ Page Styles */
.faq-categories {
  margin-bottom: 3rem;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.category-link {
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.faq-section {
  margin-bottom: 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-section:last-child {
  border-bottom: none;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
  font-size: 2rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--bg-secondary);
}

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

.faq-answer p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-answer ul {
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.faq-answer strong {
  color: var(--text-primary);
}

/* Responsive adjustments for banners */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .banner-offer {
    order: -1;
  }

  .category-nav {
    flex-direction: column;
    align-items: center;
  }

  .category-link {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 1rem;
  }

  .benefits-grid,
  .gaming-benefits,
  .tips-grid {
    grid-template-columns: 1fr;
  }
}

body{
  max-width: 1300px;
  margin: 0 auto;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='48' height='48' patternTransform='scale(2) rotate(65)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(19,57.6%,76.9%,1)'/><path d='M11.704 29.53L29.64 11.592a3.555 3.555 0 015.038 0l1.618 1.619a3.555 3.555 0 010 5.038L18.361 36.186a3.555 3.555 0 01-5.039 0l-1.618-1.619a3.555 3.555 0 010-5.038zm6.657-17.937L36.296 29.53a3.555 3.555 0 010 5.038l-1.618 1.619a3.555 3.555 0 01-5.038 0L11.704 18.25a3.555 3.555 0 010-5.038l1.618-1.619a3.555 3.555 0 015.039 0z'   stroke-linecap='square' stroke-width='2' stroke='hsla(21,54.2%,71.8%,1)' fill='none'/><path d='M-.031-3.309A3.309 3.309 0 10.03 3.309 3.309 3.309 0 00-.03-3.31zm48 0a3.309 3.309 0 10.062 6.618 3.309 3.309 0 00-.062-6.618zm-48 48A3.309 3.309 0 10.03 51.31 3.309 3.309 0 00-.03 44.69zm48 0a3.309 3.309 0 10.062 6.618 3.309 3.309 0 00-.062-6.618z'   stroke-linecap='square' stroke-width='2' stroke='hsla(18,61.7%,81.6%,1)' fill='none'/><path d='M24-48.353A24.353 24.353 0 00-.353-24a24.353 24.353 0 0018.1 23.536L24-6.716l6.252 6.252A24.353 24.353 0 0048.353-24 24.353 24.353 0 0024-48.353zm-48 48A24.353 24.353 0 00-48.353 24 24.353 24.353 0 00-24 48.353a24.353 24.353 0 0023.536-18.1L-6.716 24l6.252-6.253A24.353 24.353 0 00-24-.353zm96 0a24.353 24.353 0 00-23.537 18.1L54.716 24l-6.252 6.252A24.353 24.353 0 0072 48.353 24.353 24.353 0 0096.353 24 24.353 24.353 0 0072-.353zM17.748.463A24.353 24.353 0 00.464 17.748L6.716 24 .463 30.252a24.353 24.353 0 0017.285 17.284L24 41.284l6.252 6.253a24.353 24.353 0 0017.285-17.284L41.284 24l6.253-6.253A24.353 24.353 0 0030.252.463L24 6.716zm0 48A24.353 24.353 0 00-.353 72 24.353 24.353 0 0024 96.353 24.353 24.353 0 0048.353 72a24.353 24.353 0 00-18.1-23.536L24 54.716z'   stroke-linecap='square' stroke-width='2' stroke='hsla(22,46.2%,63.5%,1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(-152,-60)' fill='url(%23a)'/></svg>")
}

main{
  background-color: white;
}

.review-content{
  background-color: white;
}