:root {
  --bg-main: #faf8f5;
  --bg-card: #ffffff;
  --bg-header: #1a2f3d;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-soft: #5eead4;
  --text: #1f2937;
  --text-soft: #6b7280;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --transition: 0.2s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg-main);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  background: var(--bg-header);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  width: 36px;
  height: 36px;
}
.logo span {
  font-weight: 700;
  font-size: 1.25rem;
}
.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.nav a:hover {
  color: var(--accent-soft);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-btn,
.login-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}
.search-btn:hover,
.login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    order: 10;
    background: var(--bg-header);
    padding: 0.5rem 0;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header-actions {
    order: 5;
  }
}
.license-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer {
  background: var(--bg-header);
  color: #fff;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 32px;
  height: 32px;
}
.footer-desc {
  font-size: 0.9rem;
  opacity: 0.85;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer-links h4 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links a {
  font-size: 0.85rem;
  opacity: 0.85;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  opacity: 0.8;
}
.responsible-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.responsible-badges a {
  opacity: 0.9;
}

.page-content {
  padding: 2rem 0;
  min-height: 50vh;
}
.page-content h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.page-content p {
  margin-bottom: 1rem;
  color: var(--text-soft);
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.article-img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  background: #e2e8f0;
}
.news-item .article-img,
.blog-item .article-img {
  height: 220px;
  margin-bottom: 1rem;
}
.card .article-img {
  margin: -1.5rem -1.5rem 1.25rem -1.5rem;
  width: calc(100% + 3rem);
  border-radius: var(--radius) var(--radius) 0 0;
  /* height: 200px; */
}
.hero-banner {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.cta-banner {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 2rem 0;
  background: #e2e8f0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.stat-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}
.stat-box .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.stat-box .stat-label {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.25rem;
}

.info-box {
  background: linear-gradient(
    135deg,
    rgba(13, 148, 136, 0.08),
    rgba(13, 148, 136, 0.03)
  );
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box p {
  color: var(--text);
  margin-bottom: 0.5rem;
}
.info-box p:last-child {
  margin-bottom: 0;
}
.info-box strong {
  color: var(--accent);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 600px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}
.pros-col,
.cons-col {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.pros-col h3 {
  color: #16a34a;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.cons-col h3 {
  color: #dc2626;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}
.pros-col ul,
.cons-col ul {
  list-style: none;
}
.pros-col li,
.cons-col li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border);
}
.pros-col li:last-child,
.cons-col li:last-child {
  border-bottom: none;
}
.pros-col li::before {
  content: "\2713 ";
  color: #16a34a;
  font-weight: 700;
}
.cons-col li::before {
  content: "\2717 ";
  color: #dc2626;
  font-weight: 700;
}

.faq-section {
  margin: 2rem 0;
}
.faq-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-q {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  user-select: none;
}
.faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after {
  content: "\2212";
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 1.25rem 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.step-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.step-box h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.step-box p {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.feature-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-bottom: 3px solid transparent;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.feature-box:hover {
  border-bottom-color: var(--accent);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.feature-box h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.feature-box p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 0;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comparison-table th {
  background: var(--bg-header);
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  text-align: left;
  font-weight: 600;
}
.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-soft);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table tr:hover td {
  background: rgba(13, 148, 136, 0.04);
}

.newsletter-box {
  background: linear-gradient(135deg, var(--bg-header), #243c4f);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.newsletter-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.newsletter-box p {
  opacity: 0.85;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
}
.newsletter-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--accent-hover);
}
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 0.75rem 0;
}
.breadcrumb a {
  color: var(--accent);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  margin: 0 0.35rem;
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 40% 40%, rgba(13,148,136,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 70%, rgba(94,234,212,0.06) 0%, transparent 45%),
              #0a0f1a;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
}
.age-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.5' fill='rgba(94,234,212,0.08)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.age-overlay.hidden { display: none; }

.age-box {
  background: linear-gradient(145deg, rgba(20,30,48,0.96), rgba(12,18,30,0.98));
  border: 1px solid rgba(13,148,136,0.3);
  border-radius: 24px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 100px rgba(13,148,136,0.12),
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  backdrop-filter: blur(24px);
  animation: age-appear 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes age-appear {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.age-box::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0d9488, #5eead4, #0d9488, transparent);
  border-radius: 2px;
}

.age-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,148,136,0.15), rgba(13,148,136,0.05));
  border: 2px solid rgba(13,148,136,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.age-badge::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(13,148,136,0.15);
  animation: age-ring 3s ease-in-out infinite;
}
@keyframes age-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 0.2; }
}
.age-badge-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #5eead4, #0d9488);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.age-badge-plus {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5eead4;
  position: absolute;
  top: 14px;
  right: 16px;
}

.age-box h2 {
  color: #f1f5f9;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.age-box .age-desc {
  color: rgba(148,163,184,0.85);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.age-actions {
  display: flex;
  gap: 0.75rem;
}
.age-btn {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.age-btn-yes {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  box-shadow: 0 6px 24px rgba(13,148,136,0.35);
}
.age-btn-yes:hover {
  background: linear-gradient(135deg, #0f766e, #115e59);
  box-shadow: 0 6px 28px rgba(13,148,136,0.5);
  transform: translateY(-1px);
}
.age-btn-no {
  background: rgba(255,255,255,0.05);
  color: rgba(226,232,240,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.age-btn-no:hover {
  background: rgba(220,38,38,0.12);
  border-color: rgba(220,38,38,0.3);
  color: #fca5a5;
}

.age-footer {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: rgba(148,163,184,0.4);
  line-height: 1.5;
}
.age-footer a {
  color: rgba(94,234,212,0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.age-footer a:hover { color: rgba(94,234,212,0.8); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.dismissed { transform: translateY(100%); pointer-events: none; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cookie-card {
  background: linear-gradient(145deg, rgba(20,30,48,0.97), rgba(15,22,36,0.99));
  border: 1px solid rgba(13,148,136,0.25);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.35), 0 0 60px rgba(13,148,136,0.08);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.cookie-card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,234,212,0.4), transparent);
}
@media (max-width: 640px) {
  .cookie-card { flex-direction: column; text-align: center; padding: 1.25rem 1.5rem; gap: 1rem; }
}
.cookie-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.cookie-text { flex: 1; }
.cookie-text p {
  color: rgba(226,232,240,0.9);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: #5eead4;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-text a:hover { color: #99f6e4; }
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #0f766e, #115e59);
  box-shadow: 0 4px 20px rgba(13,148,136,0.45);
}
.cookie-btn-decline {
  background: rgba(255,255,255,0.06);
  color: rgba(226,232,240,0.8);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
