/* SaaS Dark Mode - Vercel/GitHub style с градиентами */
:root {
  --bg-primary: #0a0b18;
  --bg-secondary: #151627;
  --bg-card: #1a1c2e;
  --bg-border: #272b42;
  --accent-primary: #8b5cf6;
  --accent-hover: #a78bfa;
  --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c084fc 100%);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --border-radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to right, rgba(10, 11, 24, 0.98), rgba(21, 22, 39, 0.98));
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-border);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  height: auto;
  width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.3));
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  font-family: inherit;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--bg-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-1px);
}

.btn-large {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-copy {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--bg-border);
  padding: 8px 16px;
  font-size: 13px;
}

.btn-copy:hover {
  background: var(--accent-gradient);
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(26, 28, 46, 0.5);
  border: 1px solid var(--bg-border);
  color: var(--text-secondary);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
  background: var(--accent-gradient);
  color: white;
}

/* Layout */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 32px 100px;
  gap: 40px;
  min-height: calc(100vh - 120px);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.status-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 28, 46, 0.7));
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.status-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--accent-gradient);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.status-card:hover::before {
  opacity: 1;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 4px 0;
}

.status-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.status-badge, .status-date {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.status-online {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.status-verified {
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-primary);
  font-size: 12px;
}

.sidebar-nav {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 28, 46, 0.8));
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: var(--border-radius);
  padding: 12px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: var(--transition);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.nav-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: var(--transition);
}

.nav-item:hover::before,
.nav-active::before {
  opacity: 0.1;
}

.nav-item:hover {
  background: rgba(139, 92, 246, 0.15);
  color: var(--text-primary);
  transform: translateX(4px);
}

.nav-active {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.nav-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--bg-border), transparent);
  margin: 16px 0;
}

.nav-legal {
  color: var(--text-muted);
  font-size: 13px;
}

/* Main content */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Hero */
.hero-section {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 28, 46, 0.6));
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: var(--border-radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-header {
  margin-bottom: 28px;
}

.hero-title-group h1 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-group {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.badge {
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  backdrop-filter: blur(10px);
}

.badge-docs {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-status {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 650px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(139, 92, 246, 0.15);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Sections */
.section {
  scroll-margin-top: 120px;
}

.section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* Footer */
.footer {
  margin-top: 80px;
  background: linear-gradient(to right, var(--bg-secondary), var(--bg-card));
  border-top: 1px solid var(--bg-border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-section h3, .footer-section h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 14px;
  color: var(--accent-primary);
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  padding: 24px 32px;
  border-top: 1px solid var(--bg-border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* Остальные стили без изменений... */
.content-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.card {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 28, 46, 0.5));
  border: 1px solid var(--bg-border);
  border-radius: var(--border-radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  
  .sidebar {
    position: static;
    order: 2;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    z-index: 200;
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
    border-left: 1px solid var(--bg-border);
    padding: 32px 24px;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  }
  
  .sidebar-open {
    display: block !important;
  }
}


/* Стили для ссылок - добавить в style.css */

/* Общие стили для всех ссылок */
a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

/* Hover эффект с underline анимацией */
a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 1px;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

a:hover {
  color: var(--accent-hover);
  transform: translateY(-1px);
}

/* Ссылки в карточках */
.card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.card a:hover {
  background: rgba(139, 92, 246, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.card a::after {
  display: none;
}

/* Ссылки в футере */
.footer-section a {
  display: block;
  padding: 8px 0;
  border-radius: 6px;
  transition: var(--transition);
}

.footer-section a:hover {
  background: rgba(139, 92, 246, 0.15);
  padding-left: 12px;
  color: var(--accent-hover);
}

/* Ссылки в FAQ */
.faq-answer a {
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(139, 92, 246, 0.15);
}

.faq-answer a:hover {
  background: rgba(139, 92, 246, 0.3);
}

/* Навигационные ссылки */
.nav-item a {
  color: inherit;
}

.nav-item:hover a {
  color: inherit;
}

/* Кнопки-ссылки */
.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Inline ссылки в тексте */
p a, li a {
  font-weight: 500;
}

p a:hover, li a:hover {
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* Активная ссылка */
a:active {
  transform: translateY(0) scale(0.98);
}

/* Focus состояние для доступности */
a:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
  border-radius: 4px;
}


.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.step-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 28, 46, 0.5));
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.step-card.active {
  border-color: var(--accent-primary);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.troubleshoot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.troubleshoot-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 28, 46, 0.5));
  border: 1px solid var(--bg-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.troubleshoot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.troubleshoot-card.warning {
  border-color: rgba(245, 158, 11, 0.5);
}

.issue {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.issue i {
  font-size: 20px;
  color: var(--accent-primary);
  margin-right: 12px;
  float: left;
}

.issue h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.solution {
  padding: 16px 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

.solution.critical {
  color: #f87171;
  font-weight: 600;
}

@media (max-width: 768px) {
  .step-grid {
    grid-template-columns: 1fr;
  }
  
  .troubleshoot-grid {
    grid-template-columns: 1fr;
  }
}
/* PGP Page Specific Styles */
.pgp-workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.workflow-step {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0,123,255,0.4);
}

.step-circle.critical {
  background: linear-gradient(135deg, #ff4757, #ff3838);
  box-shadow: 0 4px 12px rgba(255,71,87,0.4);
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.command-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.2rem;
}

.command-type {
  background: var(--accent-bg);
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.primary-pgp {
  background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(0,123,255,0.05));
  border: 1px solid rgba(0,123,255,0.3);
}

.mono {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
}
/* FAQ Styles */
.faq-grid {
  display: grid;
  gap: 1.2rem;
  max-width: 900px;
}

.faq-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(0,0,0,0.1), transparent);
}

.faq-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.faq-toggle:hover {
  color: var(--primary-color);
  background: rgba(0,123,255,0.1);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
}

.faq-answer.critical {
  background: linear-gradient(135deg, rgba(255,71,87,0.1), transparent);
  border-left: 4px solid #ff4757;
}

.faq-card.expanded .faq-answer {
  display: block;
}

/* Wiki Styles */
.wiki-categories {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.wiki-category {
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
  background: var(--card-bg);
}

.wiki-category:hover {
  border-color: var(--primary-color);
  background: rgba(0,123,255,0.05);
}

.wiki-category.active {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
}

.wiki-category h2 {
  margin: 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wiki-category i {
  font-size: 1.1rem;
}

.wiki-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.wiki-grid.hidden {
  display: none;
}

.wiki-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.wiki-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.wiki-term {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.wiki-term h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.wiki-badge {
  background: var(--accent-bg);
  color: var(--accent-color);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
}

.wiki-badge.critical { background: #ff4757; color: white; }
.wiki-badge.danger { background: #ff6b7a; color: white; }
/* FIXED: FAQ/Wiki Cards - Better contrast */
.faq-card, .wiki-card {
  background: rgba(20, 25, 35, 0.95); /* Темно-синий с альфой */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(100, 150, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 50, 100, 0.3);
}

.faq-card:hover, .wiki-card:hover {
  background: rgba(25, 35, 45, 0.98);
  border-color: rgba(100, 150, 255, 0.6);
  box-shadow: 0 16px 48px rgba(0, 50, 100, 0.5);
}

.faq-answer {
  background: rgba(15, 20, 30, 0.9);
  border-top: 1px solid rgba(100, 150, 255, 0.2);
}


/* Privacy & Terms Page Styles */
.policy-grid, .terms-grid, .responsibility-grid, .dont-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.policy-card, .terms-card, .responsibility-card {
  background: rgba(20, 25, 35, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(100, 150, 255, 0.3);
  border-radius: 12px;
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.policy-card:hover, .terms-card:hover, .responsibility-card:hover {
  background: rgba(25, 35, 45, 0.98);
  border-color: rgba(100, 150, 255, 0.6);
  transform: translateY(-2px);
}

.policy-icon, .terms-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.policy-icon { background: rgba(0, 123, 255, 0.2); color: #4dabf7; }
.terms-icon { background: rgba(255, 193, 7, 0.2); color: #ffc107; }

.terms-card.critical .terms-icon {
  background: rgba(255, 71, 87, 0.2);
  color: #ff4757;
}

.dont-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(15, 20, 30, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(100, 150, 255, 0.2);
}

.dont-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #88d8a3;
  font-weight: 500;
}

.dont-item i {
  font-size: 1.2rem;
  width: 20px;
}

.policy-warning, .terms-warning {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.15), rgba(255, 107, 122, 0.1));
  border: 1px solid rgba(255, 71, 87, 0.4);
  border-left: 4px solid #ff4757;
  border-radius: 8px;
  padding: 1.8rem;
  margin: 2rem 0;
}

.terms-warning.critical {
  background: linear-gradient(135deg, rgba(255, 59, 48, 0.2), rgba(255, 107, 122, 0.15));
  border-left-color: #ff3b30;
}

.icon-check {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(136, 216, 163, 0.2);
  color: #88d8a3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.icon-check.warning {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
