:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 142 86% 28%;
  --primary-foreground: 355.7 100% 97.3%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 142 86% 28%;
  --radius: 0.5rem;
  --gradient-start: 142 86% 28%;
  --gradient-end: 172 66% 50%;
}

.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
  --card: 222.2 84% 4.9%;
  --card-foreground: 210 40% 98%;
  --popover: 222.2 84% 4.9%;
  --popover-foreground: 210 40% 98%;
  --primary: 142 86% 28%;
  --primary-foreground: 355.7 100% 97.3%;
  --secondary: 217.2 32.6% 17.5%;
  --secondary-foreground: 210 40% 98%;
  --muted: 217.2 32.6% 17.5%;
  --muted-foreground: 215 20.2% 65.1%;
  --accent: 217.2 32.6% 17.5%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 210 40% 98%;
  --border: 217.2 32.6% 17.5%;
  --input: 217.2 32.6% 17.5%;
  --ring: 142 86% 28%;
  --gradient-start: 142 86% 28%;
  --gradient-end: 172 66% 50%;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Header Styles */
header {
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

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

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav a:hover {
  color: hsl(var(--primary));
  background: hsl(var(--muted));
}

nav a i {
  width: 16px;
  height: 16px;
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  font-family: inherit;
  text-decoration: none;
}

.nav-dropdown-toggle:hover {
  color: hsl(var(--primary));
  background: hsl(var(--muted));
}

/* Link-specific styles for nav-dropdown-toggle */
a.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-dropdown-toggle i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-dropdown-toggle i:last-child {
  margin-left: -0.25rem;
}

.nav-dropdown:hover .nav-dropdown-toggle i:last-child {
  transform: rotate(180deg);
}

/* Combined Dropdown with Link and Toggle Button */
.nav-dropdown-combined {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-dropdown-link {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius) 0 0 var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.nav-dropdown-link:hover {
  color: hsl(var(--primary));
  background: hsl(var(--muted));
}

.nav-dropdown-link i {
  width: 16px;
  height: 16px;
}

/* Button styled as link */
.nav-dropdown-link-button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-dropdown-toggle-icon {
  background: none;
  border: none;
  color: hsl(var(--foreground));
  padding: 0.5rem 0.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  font-family: inherit;
  margin-left: -0.25rem;
}

.nav-dropdown-toggle-icon:hover {
  color: hsl(var(--primary));
  background: hsl(var(--muted));
}

.nav-dropdown-toggle-icon i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.nav-dropdown-combined:hover .nav-dropdown-toggle-icon i,
.nav-dropdown-combined.desktop-active .nav-dropdown-toggle-icon i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 0.5rem;
}

.dark .nav-dropdown-menu {
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-combined:hover .nav-dropdown-menu,
.nav-dropdown-combined.desktop-active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: hsl(var(--foreground));
  border-radius: calc(var(--radius) - 2px);
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: hsl(var(--primary));
  color: white;
}

.nav-dropdown-menu a i {
  width: 16px;
  height: 16px;
}

/* Theme Toggle */
.theme-toggle {
  background: none;
  border: 1px solid hsl(var(--border));
  padding: 0.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  margin-left: 0.5rem;
}

.theme-toggle i {
  width: 18px;
  height: 18px;
}

.theme-toggle:hover {
  background: hsl(var(--muted));
  border-color: hsl(var(--primary));
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid hsl(var(--border));
  padding: 0.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  color: hsl(var(--foreground));
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background: hsl(var(--muted));
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, hsl(0deg 0% 0%), hsl(172deg 22.75% 37.2%));
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  margin-bottom: 3rem;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: hsl(var(--primary));
  box-shadow: 0 4px 14px 0 rgba(0,0,0,0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0,0,0,0.15);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background: hsl(var(--secondary) / 0.8);
}

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

.btn-outline:hover {
  background: hsl(var(--accent));
  border-color: hsl(var(--primary));
}

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

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: hsl(var(--primary) / 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-logo {
  width: 120px;
  height: 70px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a1f2e, #0f1419);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--primary));
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.dark .card-logo {
  background: linear-gradient(135deg, #0f1419, #0a0d12);
  border-color: rgba(255, 255, 255, 0.08);
}

.card-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1) contrast(1.1);
  transition: filter 0.3s ease;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .grid {
    gap: 1rem;
  }
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 600;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.badge-success {
  background: hsl(142 76% 36% / 0.1);
  color: hsl(142 76% 36%);
}

.badge-warning {
  background: hsl(48 96% 53% / 0.1);
  color: hsl(32 95% 44%);
}

.badge-info {
  background: hsl(210 100% 50% / 0.1);
  color: hsl(210 100% 40%);
}

/* Features Grid */

.feature-card {
  text-align: center;
  padding: 2rem;
  background: hsl(var(--card));
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, hsl(var(--gradient-start)), hsl(var(--gradient-end)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: hsl(var(--card));
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 2px solid hsl(var(--border));
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  background: hsl(var(--muted) / 0.3);
  position: sticky;
  left: 0;
  z-index: 1;
}

.comparison-table thead th {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1.5rem 1.5rem;
  border-bottom: 3px solid hsl(var(--primary));
  position: relative;
}

.comparison-table thead th:first-child {
  background: linear-gradient(135deg, hsl(var(--muted)), hsl(var(--muted) / 0.8));
  color: hsl(var(--foreground));
  border-bottom: 3px solid hsl(var(--border));
}

.comparison-table thead th::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, hsl(var(--accent)), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comparison-table thead th:hover::after {
  opacity: 1;
}

.comparison-table tbody tr {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-table tbody tr:hover {
  background: hsl(var(--accent) / 0.1);
  transform: scale(1.01);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table tbody tr:nth-child(even) {
  background: hsl(var(--muted) / 0.15);
}

.comparison-table tbody tr:nth-child(even):hover {
  background: hsl(var(--accent) / 0.15);
}

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

/* Styled checkmarks and crosses */
.comparison-table td:not(:first-child) {
  font-weight: 500;
}

.comparison-table tbody tr td:nth-child(2) {
  border-left: 3px solid hsl(var(--primary) / 0.3);
}

.comparison-table tbody tr td:nth-child(3) {
  border-left: 3px solid hsl(var(--accent) / 0.3);
}

.comparison-table tbody tr td:nth-child(4) {
  border-left: 3px solid hsl(var(--primary) / 0.2);
}

/* Enhanced symbols */
.comparison-table td {
  position: relative;
}

.comparison-table td:has(strong) {
  background: hsl(var(--muted) / 0.4);
}

/* Stars enhancement */
.comparison-table td:contains("⭐") {
  color: #fbbf24;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Checkmark enhancement */
.comparison-table td:contains("✓") {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* Cross enhancement */
.comparison-table td:contains("✗") {
  color: hsl(var(--destructive));
  opacity: 0.7;
}

/* Mobile scroll indicator */
.comparison-table-wrapper {
  position: relative;
}

.comparison-table-wrapper::after {
  content: '→';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: hsl(var(--primary));
  opacity: 0.5;
  pointer-events: none;
  animation: slideRight 1.5s ease-in-out infinite;
  display: none;
}

@media (max-width: 1024px) {
  .comparison-table-wrapper::after {
    display: block;
  }
}

@keyframes slideRight {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-50%) translateX(10px);
    opacity: 0.8;
  }
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.stars {
  color: #fbbf24;
  font-size: 1.125rem;
  display: inline-flex;
  gap: 0.125rem;
}

/* Стили для отдельных звезд */
.star {
  display: inline-block;
  position: relative;
  color: #fbbf24;
  font-size: 1.125rem;
  line-height: 1;
}

/* Полная звезда */
.star-full {
  color: #fbbf24;
}

/* Пустая звезда */
.star-empty {
  color: #4b5563;
}

/* Половинчатая звезда */
.star-half {
  position: relative;
  color: #4b5563;
}

.star-half::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  color: #fbbf24;
  width: 50%;
  overflow: hidden;
  z-index: 1;
}

/* В темной теме пустые звезды будут немного светлее */
.dark .star-empty {
  color: #6b7280;
}

.rating-value {
  font-weight: 700;
  color: #ffffff;
}

/* Bonus Box */
.bonus-box {
  background: linear-gradient(135deg, hsl(var(--gradient-start)), hsl(var(--gradient-end)));
  color: white;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  margin: 1.5rem 0;
  text-align:center;
}

.bonus-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: hsl(var(--muted));
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.footer-section a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
}

/* Dark Mode Toggle */
.theme-toggle {
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: hsl(var(--accent));
}

/* Pros/Cons Lists */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

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

.pros, .cons {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid hsl(var(--border));
}

.pros {
  background: hsl(142 76% 36% / 0.05);
  border-color: hsl(142 76% 36% / 0.2);
}

.cons {
  background: hsl(0 84% 60% / 0.05);
  border-color: hsl(0 84% 60% / 0.2);
}

.pros h3, .cons h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.pros ul li, .cons ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(142 76% 36%);
  font-weight: bold;
}

.cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: hsl(0 84% 60%);
  font-weight: bold;
}

/* Info Box */
.info-box {
  background: hsl(var(--accent));
  border: 1px solid hsl(var(--border));
  border-left: 4px solid hsl(var(--primary));
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 2rem 0;
}

.info-box-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-color: hsl(var(--primary));
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  border-radius: 50%;
  color: white;
}

.feature-icon i {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.feature-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 2rem auto 0;
}

.faq-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: hsl(var(--muted));
}

.faq-question i {
  width: 20px;
  height: 20px;
  color: hsl(var(--primary));
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  color: hsl(var(--muted-foreground));
  line-height: 1.8;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
    .hero {margin:-2rem -2rem 3rem -2rem}
}
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }
  
  .faq-answer {
    padding: 0 1.25rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }
  
  /* Mobile Menu */
  .header-container {
    padding: 1rem;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: hsl(var(--card));
    border-right: 1px solid hsl(var(--border));
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    padding: 1rem;
  }

  nav.mobile-active {
    transform: translateX(0);
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
  }

  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    width: 100%;
  }

  nav li {
    width: 100%;
  }

  nav a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
  }

  /* Mobile Dropdown */
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 0.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.mobile-open .nav-dropdown-menu,
  .nav-dropdown-combined.mobile-open .nav-dropdown-menu {
    max-height: 1000px;
  }

  .nav-dropdown.mobile-open .nav-dropdown-toggle i,
  .nav-dropdown-combined.mobile-open .nav-dropdown-toggle-icon i {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu a {
    padding-left: 2rem;
    font-size: 0.9rem;
  }

  /* Mobile Combined Dropdown */
  .nav-dropdown-combined {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .nav-dropdown-link {
    flex: 1;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    border-radius: var(--radius) 0 0 var(--radius);
  }

  .nav-dropdown-toggle-icon {
    flex-shrink: 0;
    justify-content: center;
    padding: 0.75rem;
    margin-left: 0;
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  /* Mobile Overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.active {
    display: block;
    opacity: 1;
  }
  
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .container {
    padding: 2rem 1rem;
  }

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

  .comparison-table th,
  .comparison-table td {
    padding: 0.875rem 0.75rem;
  }
  
  .comparison-table thead th {
    font-size: 0.9rem;
    padding: 1.25rem 0.75rem;
  }
  
  .comparison-table tbody tr td:nth-child(2),
  .comparison-table tbody tr td:nth-child(3),
  .comparison-table tbody tr td:nth-child(4) {
    border-left-width: 2px;
  }
}

@media (max-width: 480px) {
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
  
  .comparison-table thead th {
    font-size: 0.8rem;
    padding: 1rem 0.5rem;
  }
  
  .comparison-table tbody tr:hover {
    transform: scale(1);
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

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

::-webkit-scrollbar-thumb {
  background: hsl(var(--muted));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--muted-foreground));
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

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

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

/* Filter Panel Styles */
.filter-panel {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid hsl(var(--border));
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: hsl(var(--muted));
  border: 2px solid transparent;
  border-radius: calc(var(--radius) * 1.5);
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: hsl(var(--primary) / 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.filter-btn:hover::before {
  width: 300px;
  height: 300px;
}

.filter-btn:hover {
  background: hsl(var(--muted));
  border-color: hsl(var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  color: white;
  border-color: hsl(var(--primary));
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
  transform: translateY(-2px);
}

.filter-btn.active::before {
  display: none;
}

.filter-btn svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.filter-btn span {
  position: relative;
  z-index: 1;
}

.filter-results {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.results-count {
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
}

.results-count #results-number {
  color: hsl(var(--primary));
  font-size: 1.1rem;
  font-weight: 700;
}

/* Bookmaker Card Animation */
.bookmaker-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeIn 0.5s ease-in-out;
}

.bookmaker-card.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .filter-container {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .filter-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .filter-panel {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .filter-btn span {
    display: none;
  }
  
  .filter-btn {
    padding: 0.75rem;
    justify-content: center;
  }
  
  .filter-container {
    justify-content: center;
  }
}

/* Like System Styles - Modern & Minimalist */
.like-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border) / 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: hsl(var(--muted-foreground));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.like-button:hover {
  background: hsl(var(--accent) / 0.5);
  border-color: hsl(var(--primary) / 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.like-button.liked {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--primary) / 0.05));
  border-color: hsl(var(--primary) / 0.4);
  color: hsl(var(--primary));
}

.like-button.liked:hover {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.15), hsl(var(--primary) / 0.08));
  border-color: hsl(var(--primary) / 0.5);
}

.like-button .like-icon {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.like-button:hover .like-icon {
  transform: scale(1.15);
}

.like-button.liked .like-icon {
  animation: heartBeat 0.6s ease-in-out;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1.1); }
}

.like-count {
  font-weight: 600;
  font-size: 0.875rem;
  color: inherit;
  min-width: 2rem;
  text-align: center;
}

/* Like button in hero section */
.hero-likes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-likes .like-button {
  width: auto;
  min-width: 140px;
  margin:0 auto;
}

/* Like button in cards */
.card-likes {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.card-likes .like-button {
  width: 100%;
  max-width: 200px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .like-button {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }
  
  .like-button .like-icon {
    font-size: 1.1rem;
  }
  
  .hero-likes {
    width: 100%;
  }
  
  .hero-likes .like-button {
    width: 100%;
  }
}

/* ============================================
   Cookies Banner Styles
   ============================================ */

.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookies-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookies-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookies-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
  min-width: 300px;
}

.cookies-banner-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--primary) / 0.05));
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 12px;
  color: hsl(var(--primary));
}

.cookies-banner-icon i {
  width: 24px;
  height: 24px;
}

.cookies-banner-text {
  flex: 1;
}

.cookies-banner-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: hsl(var(--foreground));
}

.cookies-banner-description {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.cookies-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookies-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookies-banner-link:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.3);
  background: hsl(var(--accent) / 0.3);
}

.cookies-banner-link i {
  width: 16px;
  height: 16px;
}

.cookies-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.cookies-banner-btn i {
  width: 18px;
  height: 18px;
}

.cookies-banner-btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.9));
  color: white;
  box-shadow: 0 2px 8px hsl(var(--primary) / 0.3);
}

.cookies-banner-btn-primary:hover {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.9), hsl(var(--primary) / 0.8));
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.4);
  transform: translateY(-1px);
}

.cookies-banner-btn-primary:active {
  transform: translateY(0);
}

.cookies-banner-btn-secondary {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.cookies-banner-btn-secondary:hover {
  background: hsl(var(--accent));
  border-color: hsl(var(--border) / 0.5);
}

/* Dark Mode Adjustments */
.dark .cookies-banner {
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookies-banner {
    padding: 1.25rem 1rem;
  }

  .cookies-banner-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .cookies-banner-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
  }

  .cookies-banner-icon {
    width: 40px;
    height: 40px;
  }

  .cookies-banner-icon i {
    width: 20px;
    height: 20px;
  }

  .cookies-banner-title {
    font-size: 1rem;
  }

  .cookies-banner-description {
    font-size: 0.85rem;
  }

  .cookies-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .cookies-banner-link,
  .cookies-banner-btn {
    width: 100%;
    justify-content: center;
  }

  .cookies-banner-link {
    order: 3;
    margin-top: 0.5rem;
  }

  .cookies-banner-btn-primary {
    order: 1;
  }

  .cookies-banner-btn-secondary {
    order: 2;
  }
}

@media (max-width: 480px) {
  .cookies-banner-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* ========================================
   LOGIN & PAYMENT METHODS SECTIONS
   Blocos melhorados de Login e Métodos de Depósito
   ======================================== */

.login-section, .payment-section {
  margin-bottom: 3rem;
}

.login-card, .payment-card {
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--muted) / 0.2) 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.login-card:hover, .payment-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.login-steps, .payment-steps {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.05) 0%, hsl(var(--accent) / 0.05) 100%);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 1.5rem 0;
  border-left: 4px solid hsl(var(--primary));
}

.login-steps ol, .payment-steps ol {
  margin: 0;
  padding-left: 1.5rem;
  line-height: 2.2;
  counter-reset: step-counter;
  list-style: none;
}

.login-steps ol li, .payment-steps ol li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.2rem;
}

.login-steps ol li:before, .payment-steps ol li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: -2px;
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px hsl(var(--primary) / 0.3);
}

.login-problems, .payment-info {
  background: linear-gradient(135deg, hsl(var(--accent) / 0.1) 0%, hsl(var(--muted) / 0.2) 100%);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 1.5rem 0;
  border: 1px solid hsl(var(--accent) / 0.3);
}

.login-problems ul, .payment-info ul {
  margin: 0;
  padding-left: 1.5rem;
  line-height: 2;
}

.login-problems ul li, .payment-info ul li {
  margin-bottom: 0.8rem;
  position: relative;
}

.login-problems ul li:before, .payment-info ul li:before {
  content: "→";
  position: absolute;
  left: -1.5rem;
  color: hsl(var(--primary));
  font-weight: 700;
}

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

.payment-method-card {
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--muted) / 0.1) 100%);
  border-radius: var(--radius);
  padding: 2rem;
  border: 2px solid hsl(var(--border));
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.payment-method-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.payment-method-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px hsl(var(--primary) / 0.15);
}

.payment-method-card:hover:before {
  transform: scaleX(1);
}

.payment-method-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.payment-method-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: hsl(var(--primary));
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-method-details {
  line-height: 1.8;
}

.payment-method-details p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.payment-method-details strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

.payment-method-badge {
  display: inline-block;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.login-security-tip, .payment-security-tip {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1) 0%, hsl(var(--accent) / 0.1) 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  border-left: 4px solid hsl(var(--primary));
  display: flex;
  align-items: start;
  gap: 1rem;
}

.login-security-tip .icon, .payment-security-tip .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: hsl(var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.login-section-subtitle, .payment-section-subtitle {
  font-size: 1.1rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  text-align: center;
}

.login-section-title, .payment-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .login-card, .payment-card {
    padding: 1.5rem;
  }
  
  .payment-method-grid {
    grid-template-columns: 1fr;
  }
  
  .login-steps, .payment-steps {
    padding: 1.5rem;
  }
  
  .login-steps ol li, .payment-steps ol li {
    padding-left: 2.5rem;
    font-size: 0.95rem;
  }
  
  .login-steps ol li:before, .payment-steps ol li:before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

