/* SITEMAP — EXPERT WEB TOOLS Theme 2026 */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Orbitron';
  src: url('/fonts/orbitron-v35-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg-dark:          #0a0a0f;
  --primary-accent:   #3b82f6;
  --secondary-accent: #8b5cf6;
  --text-main:        #ffffff;
  --text-muted:       #94a3b8;
  --card-bg:          rgba(25, 25, 35, 0.6);
  --card-border:      rgba(255, 255, 255, 0.08);
  --font-heading:     'Orbitron', sans-serif;
  --font-body:        'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.background-glow {
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(59,130,246,0.06) 0%, rgba(10,10,15,0) 50%);
  z-index: -1;
  pointer-events: none;
}

/* Header */
.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.back-btn {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.back-btn:hover { color: var(--primary-accent); }

.logo { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-main); }
.logo span { color: var(--primary-accent); }

/* Main */
.main-content {
  flex-grow: 1;
  padding: 2rem 5% 4rem;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* Page Intro */
.page-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--card-border);
}

.page-intro h1 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-intro p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Sitemap Body */
.sitemap-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sitemap-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.sitemap-section h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--card-border);
}
.sitemap-section h2 i { color: var(--primary-accent); }

.sitemap-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sitemap-list li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.sitemap-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 7px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  min-width: 260px;
}
.sitemap-list a:hover {
  color: var(--primary-accent);
  background: rgba(59,130,246,0.06);
}

.sitemap-list a i {
  color: var(--primary-accent);
  width: 16px;
  text-align: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.sitemap-list span {
  color: var(--text-muted);
  font-size: 0.82rem;
  opacity: 0.65;
  padding: 7px 0 7px 4px;
}
.sitemap-list span::before { content: '— '; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--primary-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(59,130,246,0.4);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: #2563eb; transform: translateY(-2px); }

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--card-border);
  margin-top: 1rem;
}
footer a { color: #fff; text-decoration: none; }

/* Responsive */
@media (max-width: 640px) {
  .tool-header { padding: 1rem 4%; }
  .main-content { padding: 1.5rem 4% 3rem; }
  .page-intro h1 { font-size: 1.4rem; }
  .sitemap-list span { display: none; }
  .sitemap-list a { min-width: unset; }
}