.nav-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a svg {
  width: 18px;
  height: 18px;
  stroke: #555;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a:hover svg {
  stroke: #000;
}

*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --secondary: #14b8a6;
      --background: #ffffff;
      --background-alt: #f8fafc;
      --foreground: #0f172a;
      --foreground-muted: #64748b;
      --card: #ffffff;
      --card-border: #e2e8f0;
      --gradient: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    }

    .dark {
      --primary: #38bdf8;
      --primary-dark: #0ea5e9;
      --secondary: #2dd4bf;
      --background: #0f172a;
      --background-alt: #1e293b;
      --foreground: #f1f5f9;
      --foreground-muted: #94a3b8;
      --card: #1e293b;
      --card-border: #334155;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: var(--background);
      border-bottom: 1px solid var(--card-border);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo img {
      width: 80px;
      height: auto;
      border-radius: 0;
      object-fit: contain;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      font-weight: 500;
      color: var(--foreground-muted);
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .dark-toggle {
      background: var(--background-alt);
      border: 1px solid var(--card-border);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      color: var(--foreground);
    }

    .dark-toggle:hover {
      background: var(--primary);
      color: white;
    }

    .dark-toggle svg {
      width: 20px;
      height: 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-primary {
      background: var(--gradient);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
    }

    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }

    .mobile-menu-btn span {
      display: block;
      width: 25px;
      height: 3px;
      background: var(--foreground);
      margin: 5px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-tag {
      display: inline-block;
      background: var(--gradient);
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .section-subtitle {
      color: var(--foreground-muted);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .footer {
      background: var(--background);
      border-top: 1px solid var(--card-border);
      padding: 60px 0 30px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      color: var(--foreground-muted);
      margin: 20px 0;
      line-height: 1.8;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      background: var(--background-alt);
      border: 1px solid var(--card-border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: var(--gradient);
      color: white;
      border-color: transparent;
    }

    .footer-links h4 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: var(--foreground-muted);
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid var(--card-border);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-bottom p {
      color: var(--foreground-muted);
      font-size: 0.9rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 30px;
    }

    .footer-bottom-links a {
      color: var(--foreground-muted);
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: var(--primary);
    }

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background: var(--background);
  border-bottom: 1px solid var(--card-border);
  padding: 20px;
  z-index: 999999;
  display: none;
}

.mobile-menu.active {
  display: block;
}

     .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

    .mobile-menu ul {
      list-style: none;
    }

    .mobile-menu li {
      padding: 15px 0;
      border-bottom: 1px solid var(--card-border);
    }

    .mobile-menu a {
      font-weight: 500;
      font-size: 1.1rem;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {

      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-actions .btn {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
	    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --primary: #0ea5e9; --secondary: #14b8a6; --background: #ffffff;
      --background-alt: #f8fafc; --foreground: #0f172a; --foreground-muted: #64748b;
      --card: #ffffff; --card-border: #e2e8f0;
      --gradient: linear-gradient(135deg, #0ea5e9 0%, #14b8a6 100%);
    }
    .dark {
      --primary: #38bdf8; --secondary: #2dd4bf; --background: #0f172a;
      --background-alt: #1e293b; --foreground: #f1f5f9; --foreground-muted: #94a3b8;
      --card: #1e293b; --card-border: #334155;
    }
    html { scroll-behavior: smooth; }
    body2 { font-family: 'Inter', sans-serif; background: var(--background); color: var(--foreground); line-height: 1.6; transition: all 0.3s ease; }
    a { text-decoration: none; color: inherit; }
    .container2 { max-width: 900px; margin: 0 auto; padding: 0 20px; }
    .header2 { position: fixed; top: 0; left: 0; right: 0; background: var(--background); border-bottom: 1px solid var(--card-border); z-index: 1000; }
    .header-content2 { display: flex; align-items: center; justify-content: space-between; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
    .page-header2 { padding: 150px 0 60px; background: var(--background-alt); text-align: center; }
    .page-header2 h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
    .page-header2 p { color: var(--foreground-muted); }
    .content2 { padding: 60px 0; }
    .content2 h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 15px; color: var(--primary); }
    .content2 h2:first-of-type { margin-top: 0; }
    .content2 p, .content li { color: var(--foreground-muted); margin-bottom: 15px; line-height: 1.8; }
    .content2 ul { margin-left: 25px; margin-bottom: 20px; }
    .content2 li { margin-bottom: 10px; }
    .content2 a { color: var(--primary); }
    .content2 a:hover { text-decoration: underline; }
    .cookie-table2 { width: 100%; border-collapse: collapse; margin: 20px 0; }
    .cookie-table2 th, .cookie-table td { border: 1px solid var(--card-border); padding: 12px 15px; text-align: left; }
    .cookie-table2 th { background: var(--background-alt); font-weight: 600; }
    .cookie-table2 td { color: var(--foreground-muted); }
    @media (max-width: 768px) {
      .cookie-table2 { font-size: 0.9rem; }
      .cookie-table2 th, .cookie-table td { padding: 8px 10px; }
    }
	#backToTop2 {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--primary);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop2 svg {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

#backToTop2:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px) scale(1.05);
}

#backToTop2:hover svg {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    display: inline-block;
  }
}

#sideTab {
  position: fixed;
  bottom: 140px;
  left: 0;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  padding: 14px 20px;
  border-radius: 0 14px 14px 0;
  font-weight: 600;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#sideTab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  letter-spacing: 0.5px;
}

#sideTab:hover {
  padding-left: 24px;
}

#sidePopup {
  position: fixed;
  bottom: 120px;
  left: -320px;
  width: 300px;
  background: linear-gradient(145deg, rgba(15,23,42,0.95), rgba(30,41,59,0.95));
  backdrop-filter: blur(14px);
  color: white;
  border-radius: 0 18px 18px 0;
  padding: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
  transition: all 0.4s ease;
  z-index: 9999;
}

#sidePopup.active {
  left: 0;
}

#sidePopup h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

#sidePopup p {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 18px;
  line-height: 1.6;
}

.popup-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  padding: 12px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(14,165,233,0.4);
}

#closePopup {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255,255,255,0.9);
  color: black;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  #sideTab,
  #sidePopup {
    display: none !important;
  }
}

img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

img:not(a img) {
  pointer-events: none;
}

a img {
  pointer-events: auto;
}