/* ==========================================================================
   NIGHT HAWK - PREMIUM WEB STYLING (GLASSMORPHISM & ACCELERATED ANIMATIONS)
   ========================================================================== */

:root {
  --bg: #030303;
  --surface: #0a0a0c;
  --surface-hover: #121216;
  --border: #1a1a24;
  --border-focus: #3f3f56;
  --accent: #ffffff;
  --accent-rgb: 255, 255, 255;
  --accent-muted: #8e8e9f;
  --text: #f3f3f7;
  --muted: #6e6e80;
  --card-bg: rgba(10, 10, 12, 0.45);
  
  --discord-color: #5865F2;
  --discord-hover: #4752C4;
  
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}

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

html {
  scroll-behavior: smooth;
}

/* Kopyalama Engeli */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}

/* Seçilebilir Alanlar (Kullanıcı Paneli Girişleri ve Kodlar) */
input, textarea, select, option, code, pre, .allow-select {
  user-select: text !important;
  -webkit-user-select: text !important;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #020203;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   ENTRANCE LOADER (Taşma Yapmayan & İvmeli Akış)
   ========================================================================== */
#loader {
  position: fixed;
  inset: 0;
  background: #020202;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.8s;
  padding: 1rem;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  background: #0a0a0f;
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  max-width: 90%;
  width: 480px;
  position: relative;
}

.loader-terminal-bar {
  display: flex;
  gap: 6px;
  position: absolute;
  top: 15px;
  left: 20px;
}

.loader-terminal-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.loader-terminal-bar .dot.red { background: var(--danger); }
.loader-terminal-bar .dot.yellow { background: var(--warning); }
.loader-terminal-bar .dot.green { background: var(--success); }

.loader-text {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  white-space: nowrap;
  margin-top: 0.5rem;
  color: #a9b2c3;
}

.loader-text .kw   { color: #e06c75; font-weight: 500; }
.loader-text .fn   { color: #61afef; }
.loader-text .punc { color: #d19a66; }
.loader-text .str  {
  display: inline-block;
  color: #98c379;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  width: 12ch; /* Genişletildi */
  height: 1.3em;
  text-align: center;
  white-space: nowrap;
}

#slot-nh, #slot-alper {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
  /* Ultra pürüzsüz Cubic-Bezier ivmelenmesi */
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1), 
              opacity 1.1s cubic-bezier(0.76, 0, 0.24, 1), 
              filter 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(3, 3, 3, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 3px;
  font-family: 'Fira Code', monospace;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--accent-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-panel-btn {
  color: var(--muted);
  transition: color 0.3s;
}
.nav-panel-btn:hover {
  color: var(--accent);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--accent-muted);
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: 'Fira Code', monospace;
}

.hero-name {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--accent-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 300;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border: none;
}
.btn-primary:hover {
  background: #e2e2e8;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.01);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-3px);
}

/* TYPEWRITER CURSOR */
.typewriter {
  display: inline-block;
  border-right: 3px solid var(--accent);
  animation: blink 0.75s step-end infinite;
  white-space: nowrap;
  padding-right: 4px;
}

@keyframes blink {
  0%, 100% { border-color: var(--accent); }
  50% { border-color: transparent; }
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section {
  padding: 8rem 2rem;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 3.5rem;
  letter-spacing: -1px;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
#about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--accent-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.about-text blockquote {
  border-left: 3px solid var(--border-focus);
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--accent);
  font-style: italic;
  font-size: 1.1rem;
  margin: 2rem 0;
  font-weight: 400;
}

.skills-box h3 {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-family: 'Fira Code', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.skill-tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skill-tag {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--accent-muted);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}
.skill-tag:hover {
  border-color: var(--border-focus);
  color: var(--accent);
  transform: translateX(5px);
}

/* ==========================================================================
   PROJECTS SECTION
   ========================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.project-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}

.project-card:hover .project-icon {
  background: var(--accent);
  color: #000;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
}

.project-desc {
  font-size: 0.95rem;
  color: var(--accent-muted);
  flex: 1;
  font-weight: 300;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s;
}
.project-link:hover {
  transform: translateX(4px);
}

.project-link-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ==========================================================================
   LINKS SECTION
   ========================================================================== */
#mylinks {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.link-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: var(--accent-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s;
  font-size: 1.05rem;
  font-weight: 600;
}

.link-card:hover {
  border-color: var(--border-focus);
  color: var(--accent);
  transform: translateY(-3px);
  background: var(--surface-hover);
}

.link-card .icon-lucide {
  color: var(--accent);
  display: flex;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
#contact {
  text-align: center;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-inner p {
  color: var(--accent-muted);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER (DİL SEÇİCİ EKLENDİ)
   ========================================================================== */
footer {
  padding: 3rem 2rem;
  background: #010102;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* DİL SEÇİCİ */
.lang-selector-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-selector-container .lang-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-muted);
  font-size: 0.85rem;
}

/* Custom Select Dropdown Structure */
.custom-select {
  position: relative;
  width: 150px;
}

.custom-select-trigger {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
}

.custom-select-trigger:hover,
.custom-select-trigger.open {
  border-color: var(--border-focus);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.custom-select-trigger .icon-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
  color: var(--accent-muted);
}

.custom-select-trigger.open .icon-chevron {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  bottom: calc(100% + 8px); /* Footer'da olduğu için yukarı doğru açılır */
  right: 0;
  width: 100%;
  background: rgba(8, 8, 12, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10000;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.custom-select-options.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select-option {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--accent-muted);
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 500;
  text-align: left;
}

.custom-select-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  padding-left: 1.25rem; /* Pürüzsüz kayma efekti */
}

.custom-select-option.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-weight: 700;
}

/* ==========================================================================
   DISCORD OAUTH2 LOGIN SCREEN CSS
   ========================================================================== */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #0f0f18 0%, #030305 100%);
  padding: 2rem;
}

.login-container {
  width: 100%;
  max-width: 420px;
  perspective: 1000px;
}

.login-card {
  background: rgba(10, 10, 15, 0.65);
  border: 1px solid var(--border);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-logo {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #000;
  border-radius: 16px;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: 'Fira Code', monospace;
  box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}

.login-card h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.login-sub {
  font-size: 0.95rem;
  color: var(--accent-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.login-error-box {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-left: 4px solid var(--danger);
  color: #ff9e9e;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.88rem;
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.08);
}

.btn-discord {
  width: 100%;
  justify-content: center;
  background: var(--discord-color);
  color: #fff;
  font-size: 1rem;
  padding: 1rem;
}
.btn-discord:hover {
  background: var(--discord-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.25);
}

.icon-discord {
  width: 20px;
  height: 20px;
}

.bypass-box {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: 14px;
  width: 100%;
}
.bypass-box .warning-text {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 1rem;
  text-align: left;
}
.bypass-box code {
  color: var(--accent);
  background: rgba(255,255,255,0.05);
  padding: 2px 4px;
  border-radius: 4px;
}

.btn-bypass {
  width: 100%;
  background: transparent;
  color: var(--accent-muted);
  border: 1px solid var(--border);
  padding: 0.6rem;
  font-size: 0.85rem;
  justify-content: center;
}
.btn-bypass:hover {
  color: var(--accent);
  border-color: var(--border-focus);
}

.back-link {
  margin-top: 2rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.back-link:hover {
  color: var(--accent);
}

/* ==========================================================================
   ADMIN DASHBOARD CSS
   ========================================================================== */
.dashboard-body {
  background: #020204;
  min-height: 100vh;
}

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 280px;
  background: #060609;
  border-right: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  flex-shrink: 0;
}

.sidebar-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fira Code', monospace;
}
.sidebar-logo span {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.user-profile-widget {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 16px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.user-info .username {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.user-info .user-role {
  font-size: 0.75rem;
  color: var(--accent-muted);
}
.user-info .user-last-login {
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 1px;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--accent-muted);
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
}

.menu-item i {
  width: 18px;
  height: 18px;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--accent);
}

.menu-item.active {
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.menu-item.logout:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ff8080;
}

/* MAIN CONTENT */
.dashboard-content {
  flex: 1;
  padding: 3rem 4rem;
  overflow-y: auto;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.content-header h1 {
  font-size: 2rem;
  font-weight: 800;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.status-indicator.online { background: var(--success); box-shadow: 0 0 10px var(--success); }
.status-indicator.offline { background: var(--danger); box-shadow: 0 0 10px var(--danger); }

.dashboard-alert {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 4px solid var(--success);
  color: #a7f3d0;
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.05);
}

/* METRICS GRID */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.metric-card {
  background: #060609;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.metric-title {
  font-size: 0.85rem;
  color: var(--accent-muted);
  font-weight: 600;
}
.metric-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.metric-icon.green { background: rgba(16, 185, 129, 0.08); color: var(--success); }
.metric-icon.blue { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.metric-icon.purple { background: rgba(168, 85, 247, 0.08); color: #a855f7; }
.metric-icon.orange { background: rgba(249, 115, 22, 0.08); color: var(--warning); }

.metric-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.metric-sub {
  font-size: 0.78rem;
  color: var(--muted);
}

/* SETTINGS CARD & FORM ELEMENTS */
.dashboard-settings-container {
  max-width: 800px;
}

.settings-card {
  background: #060609;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
}

.settings-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.form-group {
  margin-bottom: 1.75rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-muted);
  margin-bottom: 0.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--border-focus);
  background: rgba(255,255,255,0.03);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='white' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'></path></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
}

/* CUSTOM CHECKBOX */
.checkbox-group {
  margin: 2rem 0;
}
.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0; width: 0;
}
.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 22px;
  width: 22px;
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
}
.checkbox-container:hover input ~ .checkmark {
  border-color: var(--border-focus);
}
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--accent);
  border-color: var(--accent);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.db-status-bar {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}
.db-status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.db-status-item .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.db-status-item .indicator.active { background: var(--success); box-shadow: 0 0 8px var(--success); }
.db-status-item .indicator.inactive { background: var(--warning); box-shadow: 0 0 8px var(--warning); }

.btn-save {
  background: var(--accent);
  color: #000;
  border: none;
  font-weight: 700;
  padding: 1rem 2rem;
  width: 100%;
  justify-content: center;
}
.btn-save:hover {
  background: #e2e2e8;
  transform: translateY(-2px);
}

/* ==========================================================================
   ICONS & UTILITIES
   ========================================================================== */
.icon-small {
  width: 16px;
  height: 16px;
}
.icon-text {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
}
.icon-btn {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
/* ==========================================================================
   VIEW TOGGLER & CHARTS & INTEGRATION PANEL STYLES
   ========================================================================== */
.header-left-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.view-toggler-group {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px;
}

.view-toggle-btn {
  background: transparent;
  border: none;
  color: var(--accent-muted);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.view-toggle-btn:hover {
  color: var(--accent);
}

.view-toggle-btn.active {
  background: var(--accent);
  color: #000000;
}

.chart-card {
  background: #060609;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  margin-bottom: 3rem;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-card canvas {
  width: 100% !important;
  height: 100% !important;
}

.pie-chart-card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pie-chart-container {
  width: 100%;
  height: 100%;
  max-width: 450px;
  position: relative;
}

.dashboard-grid-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.integration-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.integration-desc {
  font-size: 0.9rem;
  color: var(--accent-muted);
  font-weight: 300;
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111116;
  border: 1px solid var(--border);
  border-bottom: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px 10px 0 0;
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: #a9b2c3;
}

.badge-api {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.code-block {
  background: #09090d;
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: 0 0 10px 10px;
  overflow-x: auto;
  font-family: 'Fira Code', monospace;
  font-size: 0.82rem;
  color: #abb2bf;
  line-height: 1.5;
  text-align: left;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  body.dashboard-body .dashboard-wrapper {
    flex-direction: column;
  }
  body.dashboard-body .dashboard-wrapper .sidebar {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    gap: 1rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-logo {
    margin-bottom: 0;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .user-profile-widget {
    display: none;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-menu {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-menu .menu-item {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  body.dashboard-body .dashboard-content {
    padding: 2.5rem 1.5rem;
  }
  body.dashboard-body .dashboard-grid-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  nav {
    padding: 1.25rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  body.dashboard-body .dashboard-wrapper .sidebar {
    padding: 0 1rem;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-logo span {
    display: none;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-logo {
    font-size: 1rem;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-menu {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    width: auto;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-menu .menu-item {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-menu .menu-item span {
    display: none;
  }
  body.dashboard-body .dashboard-wrapper .sidebar .sidebar-menu .menu-item i {
    margin-right: 0;
  }
}

/* CUSTOM STEP NUMBER INPUTS */
.number-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.number-input-group:focus-within {
  border-color: var(--border-focus);
}

.number-input-group .form-control {
  border: none !important;
  background: transparent !important;
  text-align: center;
  padding: 0.85rem 0.5rem;
}

/* Hide native arrows */
.number-input-group input[type=number]::-webkit-inner-spin-button, 
.number-input-group input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  appearance: none;
  margin: 0; 
}
.number-input-group input[type=number] {
  -moz-appearance: textfield;
}

.num-btn {
  background: rgba(255, 255, 255, 0.02);
  border: none;
  color: var(--accent-muted);
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.num-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.num-btn.minus {
  border-right: 1px solid var(--border);
}

.num-btn.plus {
  border-left: 1px solid var(--border);
}

/* ==========================================================================
   DASHBOARD DESIGN SYSTEM (0DAN REDESIGN)
   ========================================================================== */
.dash-topbar {
  background: #08080d;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.dash-topbar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.dash-logo-box {
  background: var(--accent);
  color: #000;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
}

.dash-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dash-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-muted);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dash-nav-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.dash-nav-link.active {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
}

.dash-nav-link.logout:hover {
  color: var(--danger);
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

.dash-user-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 30px;
}

.dash-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  object-fit: cover;
}

.dash-user-details {
  display: flex;
  flex-direction: column;
}

.dash-username {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
}

.dash-last-login {
  font-size: 0.65rem;
  color: var(--muted);
}

.dash-main {
  padding: 2.5rem 2rem;
}

.dash-container {
  max-width: 1300px;
  margin: 0 auto;
}

.dash-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
}

.dash-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.dash-subtitle {
  font-size: 0.9rem;
  color: var(--accent-muted);
  margin-top: 0.25rem;
}

.dash-toggler {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: 10px;
}

.dash-toggle-btn {
  background: transparent;
  border: none;
  color: var(--accent-muted);
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}

.dash-toggle-btn:hover {
  color: var(--accent);
}

.dash-toggle-btn.active {
  background: var(--accent);
  color: #000000;
}

.dash-alert {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.dash-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.dash-card {
  background: #060609;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.dash-card:hover {
  border-color: var(--border-focus);
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.dash-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-icon.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.dash-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.dash-icon.purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.dash-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }

.dash-card-val {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.75rem 0 0.25rem 0;
  color: var(--text);
  font-family: 'Fira Code', monospace;
}

.dash-card-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.dash-chart-card {
  background: #060609;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  height: 360px;
  margin-bottom: 2.5rem;
  position: relative;
}

.dash-chart-card.pie-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dash-chart-card canvas {
  width: 100% !important;
  height: 100% !important;
}

.dash-grid-2col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.dash-panel {
  background: #060609;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.dash-panel-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
}

.dash-form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dash-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-muted);
}

.dash-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dash-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.dash-input:focus {
  border-color: var(--border-focus);
}

.dash-step-input {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.dash-step-input .dash-input.num-field {
  border: none;
  background: transparent;
  text-align: center;
  -moz-appearance: textfield;
}

.dash-step-input input[type=number]::-webkit-inner-spin-button,
.dash-step-input input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.step-btn {
  background: transparent;
  border: none;
  color: var(--accent-muted);
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.step-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.dash-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text);
  margin-top: 0.5rem;
}

.dash-db-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--accent-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.dash-save-btn {
  background: var(--accent);
  color: #000;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s, transform 0.2s;
}

.dash-save-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.dash-integration-text {
  font-size: 0.85rem;
  color: var(--accent-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.dash-code-box {
  background: #040407;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.dash-code-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0e0e14;
  padding: 0.6rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: #a9b2c3;
}

.dash-tag {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-code-body {
  padding: 1.25rem;
  margin: 0;
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: #abb2bf;
  line-height: 1.5;
  overflow-x: auto;
}

/* RESPONSIVE BREAKPOINTS FOR DASHBOARD */
@media (max-width: 992px) {
  .dash-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-grid-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dash-topbar-inner {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .dash-user-badge {
    display: none;
  }
  .dash-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .dash-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .dash-cards-grid {
    grid-template-columns: 1fr;
  }
  .dash-form-row {
    grid-template-columns: 1fr;
  }
  .dash-nav-link span {
    display: none;
  }
}

/* CUSTOM SLIDER TOGGLE SWITCH */
.dash-switch-label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.5rem;
}

.dash-switch-label input {
  display: none;
}

.dash-switch-slider {
  width: 48px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 20px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dash-switch-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--accent-muted);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dash-switch-label input:checked + .dash-switch-slider {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
}

.dash-switch-label input:checked + .dash-switch-slider::before {
  transform: translateX(22px);
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

/* PROJECT DETAIL SUB-PAGE STYLES */
.project-detail-hero {
  padding: 8rem 0 5rem 0;
  background: radial-gradient(circle at 50% 10%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
  min-height: 80vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--accent);
}

.project-detail-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
}

.project-detail-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 800px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.features-list {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 800px;
  margin-bottom: 3rem;
}

.features-list h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.features-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.features-list li i {
  color: var(--success);
}
