:root {
  --bg-core: #000;
  --bg-subtle: #0d0d0d;
  --bg-sidebar: #050505;
  --bg-card: #ffffff0a;
  --bg-header: #050505cc;
  --accent-primary: #0fc;
  --accent-secondary: #f0f;
  --accent-tertiary: #fc0;
  --text-header: #fff;
  --text-main: #e8e8e8;
  --text-muted: #777;
  --glass-bg: #ffffff0d;
  --glass-border: #00ffcc1f;
  --glass-blur: 15px;
  --shadow-color: #0fc3;
  --shadow-hover: #00ffcc59;
  --sidebar-width: 280px;
  --header-height: 100px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out-sine: cubic-bezier(.37, 0, .63, 1);
  --duration-fast: .2s;
  --duration-normal: .3s;
  --duration-slow: .6s;
}

.theme-light {
  --bg-core: #fafafa;
  --bg-subtle: #f0f0f0;
  --bg-sidebar: #fff;
  --bg-card: #00000005;
  --bg-header: #ffffffe6;
  --accent-primary: #1a1a1a;
  --accent-secondary: #4a4a4a;
  --accent-tertiary: #06c;
  --text-header: #0a0a0a;
  --text-main: #2a2a2a;
  --text-muted: #666;
  --glass-bg: #ffffffd9;
  --glass-border: #00000014;
  --shadow-color: #00000014;
  --shadow-hover: #00000026;
}

.theme-light .glass-card, .theme-light .glass-panel, .theme-light .resource-link, .theme-light .nav-card, .theme-light .footer-section {
  background: #ffffffe6;
  border-color: #0000001a;
  box-shadow: 0 2px 8px #0000000f;
}

.theme-light .glass-card:hover, .theme-light .glass-panel:hover, .theme-light .nav-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px #0000001a;
}

.theme-light .sidebar {
  border-right: 1px solid #0000000f;
  box-shadow: 2px 0 12px #0000000d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-core);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .3s, color .3s;
  overflow-x: hidden;
}

.glass-card {
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--duration-normal) var(--ease-out-expo);
  background: #ffffff08;
  padding: 2rem;
}

.glass-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px var(--shadow-color);
  background: #ffffff0d;
  transform: translateY(-2px);
}

.glitch-text {
  color: var(--text-header);
  position: relative;
}

.glitch-text:before, .glitch-text:after {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.glitch-text:before {
  text-shadow: -1px 0 red;
  clip: rect(24px, 550px, 90px, 0);
  animation: 3s linear infinite alternate-reverse glitch-anim;
  left: 2px;
}

.glitch-text:after {
  text-shadow: -1px 0 #00f;
  clip: rect(85px, 550px, 140px, 0);
  animation: 2s linear infinite alternate-reverse glitch-anim;
  left: -2px;
}

@keyframes glitch-anim {
  0% {
    clip: rect(10px, 9999px, 30px, 0);
  }

  20% {
    clip: rect(80px, 9999px, 100px, 0);
  }

  40% {
    clip: rect(40px, 9999px, 60px, 0);
  }

  60% {
    clip: rect(120px, 9999px, 140px, 0);
  }

  80% {
    clip: rect(20px, 9999px, 40px, 0);
  }

  100% {
    clip: rect(60px, 9999px, 80px, 0);
  }
}

.scanlines {
  pointer-events: none;
  z-index: 9999;
  opacity: .3;
  background: linear-gradient(#fff0, #fff0 50%, #0000001a 50%, #0000001a) 0 0 / 100% 4px;
  width: 100%;
  height: 100%;
  animation: .5s linear infinite scanlineMove;
  position: fixed;
  top: 0;
  left: 0;
}

@keyframes scanlineMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 4px;
  }
}

.scroll-progress {
  background: var(--accent-primary);
  transform-origin: 0%;
  z-index: 9999;
  height: 3px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.custom-cursor {
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.custom-cursor-dot {
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

@media (pointer: fine) {
  body.custom-cursor-active * {
    cursor: none !important;
  }
}

@media (pointer: coarse) {
  .custom-cursor, .custom-cursor-dot {
    display: none !important;
  }
}

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

.main-header {
  top: 0;
  left: var(--sidebar-width);
  height: var(--header-height);
  background: var(--bg-header);
  border-bottom: var(--glass-border);
  z-index: 900;
  -webkit-backdrop-filter: blur(10px);
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  display: flex;
  position: fixed;
  right: 0;
}

.header-title {
  font-family: var(--font-mono);
  color: var(--text-header);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2rem;
  font-weight: 700;
}

.theme-switcher {
  background: var(--bg-subtle);
  border: var(--glass-border);
  align-items: center;
  gap: .5rem;
  padding: .3rem;
  display: flex;
}

.theme-btn {
  color: var(--text-muted);
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all var(--duration-fast);
  background: none;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  font-size: .8rem;
  display: flex;
}

.theme-btn:hover {
  color: var(--text-main);
}

.theme-btn.active {
  background: var(--bg-core);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
  font-weight: bold;
}

.theme-divider {
  background: var(--glass-border);
  width: 1px;
  height: 15px;
}

.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  border-right: var(--glass-border);
  z-index: 1000;
  height: 100vh;
  box-shadow: 5px 0 20px var(--shadow-color);
  transition: background var(--duration-normal) ease, border-color var(--duration-normal) ease;
  flex-direction: column;
  flex-shrink: 0;
  padding: 2.5rem 2rem;
  display: flex;
  position: sticky;
  top: 0;
}

.sidebar-header {
  text-align: center;
  margin-bottom: 3rem;
}

.brand-logo {
  font-family: var(--font-mono);
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-primary) 100%);
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 800;
}

.brand-sub {
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .8;
  margin-top: .5rem;
  font-size: .65rem;
}

.sidebar-nav {
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  display: flex;
}

.nav-list {
  flex-direction: column;
  gap: 0;
  list-style: none;
  display: flex;
}

.nav-item {
  color: var(--text-muted);
  transition: all var(--duration-fast);
  cursor: pointer;
  box-sizing: border-box;
  border-left: 3px solid #0000;
  border-radius: 0;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.2rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.nav-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-main);
  background: var(--bg-subtle);
  border-color: var(--accent-primary);
}

.nav-item-wrapper:has(.submenu) .nav-item.active {
  border-color: #0000;
}

.nav-item-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.nav-item-wrapper .nav-item {
  flex: 1;
}

.dropdown-toggle-btn {
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--duration-fast);
  z-index: 1;
  background: none;
  border: none;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

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

.submenu {
  border-left: 3px solid var(--accent-primary);
  background: #0000004d;
  margin: 0;
  padding: 0;
  list-style: none;
}

.submenu-item {
  color: var(--text-muted);
  transition: all var(--duration-fast);
  box-sizing: border-box;
  border-left: 3px solid #0000;
  border-radius: 0;
  width: 100%;
  padding: .9rem 1rem .9rem 2.5rem;
  font-size: .9rem;
  text-decoration: none;
  display: block;
}

.submenu-item:hover {
  color: var(--text-main);
  border-left-color: var(--accent-primary);
  background: #ffffff0d;
}

.submenu-item.active {
  color: var(--accent-primary);
  border-left-color: var(--accent-primary);
  background: #ffffff0d;
  font-weight: 600;
}

.sidebar-footer {
  border-top: 1px solid var(--glass-border);
  text-align: center;
  margin-top: auto;
  padding-top: 2rem;
}

.social-links {
  justify-content: center;
  align-items: center;
  gap: 2rem;
  display: flex;
}

.social-icon {
  color: #fff;
  transition: all var(--duration-normal) ease;
  border: 1px solid #0000;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  padding: 12px;
  font-size: 1.5rem;
  display: flex;
}

.social-icon:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  background: #ffffff0d;
  transform: translateY(-2px);
}

.main-content {
  background-color: var(--bg-core);
  flex-direction: column;
  flex-grow: 1;
  min-height: 100vh;
  display: flex;
}

.content-scrollable {
  flex-grow: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 2rem;
}

.page-wrapper {
  width: 100%;
  padding: 0;
}

.page-header h1 {
  color: var(--text-header);
  margin-bottom: .5rem;
  font-size: 2.5rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 800px;
  font-size: 1rem;
}

.command-table th, .command-table td {
  padding: 1rem;
  font-size: .95rem;
}

p, li {
  font-size: 1rem;
  line-height: 1.6;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

strong {
  color: var(--text-main);
  font-weight: 600;
}

h2, h3, h4 {
  color: var(--text-main);
  letter-spacing: -.5px;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-group {
  gap: 1rem;
  margin-top: 2.5rem;
  display: flex;
}

.btn-primary {
  background: var(--accent-primary);
  color: #000;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
  border: 1px solid var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.2rem;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.btn-primary:hover {
  color: var(--accent-primary);
  box-shadow: 4px 4px 0 var(--accent-primary);
  background: none;
  transform: translate(-2px, -2px);
}

.btn-secondary {
  border: 1px solid var(--text-muted);
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.2rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background: var(--bg-subtle);
  box-shadow: 4px 4px 0 var(--text-muted);
  transform: translate(-2px, -2px);
}

.btn-sm {
  padding: .6rem 1.2rem;
  font-size: .8rem;
}

.tech-stack-container {
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0 3rem;
  display: flex;
}

.tech-tag {
  border: 1px solid var(--glass-border);
  color: var(--accent-primary);
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 500;
  font-family: var(--font-mono);
  padding: .5rem 1rem;
}

.tech-tag:hover {
  border-color: var(--accent-primary);
  background: var(--bg-core);
}

.glass-panel {
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(20px);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all var(--duration-fast);
}

.glass-panel:hover {
  border-color: var(--accent-primary);
  box-shadow: 6px 6px 0 var(--shadow-color);
  transform: translateY(-2px);
}

.bio-clean-container {
  border-left: 4px solid var(--accent-primary);
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 3rem;
  padding: 2rem;
}

.code-block {
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  color: var(--accent-primary);
  border: 1px solid var(--glass-border);
  background: #000;
  padding: 1.5rem;
  font-size: .9rem;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  text-align: left;
  color: var(--text-header);
  border-bottom: 2px solid var(--glass-border);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.2rem;
  font-size: .8rem;
  font-weight: 700;
}

td {
  color: var(--text-muted);
  border-bottom: 1px solid var(--glass-border);
  transition: background var(--duration-fast);
  padding: 1.2rem;
}

tr:hover td {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.hero-section {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  display: flex;
  position: relative;
}

.content-container {
  z-index: 2;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  display: flex;
}

.intro-text {
  font-family: var(--font-mono);
  color: var(--accent-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
}

.highlight-text {
  color: #000;
  background: var(--accent-primary);
  padding: 0 5px;
}

.main-headline {
  color: var(--text-header);
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.typing-effect {
  color: var(--accent-primary);
  border-right: 10px solid var(--accent-primary);
  padding-right: 5px;
  animation: .8s steps(2, end) infinite blinkCursor;
}

.sub-headline {
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 3rem;
  padding-left: 0;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

@keyframes blinkCursor {
  0%, 100% {
    border-color: #0000;
  }

  50% {
    border-color: var(--accent-primary);
  }
}

.docs-footer-container {
  border-top: 1px solid var(--glass-border);
  margin-top: 5rem;
  padding-top: 3rem;
}

.docs-navigation {
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  display: flex;
}

.nav-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  transition: all var(--duration-fast);
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
}

.nav-card:hover {
  border-color: var(--accent-primary);
  background: var(--bg-card);
  box-shadow: 4px 4px 0 var(--accent-primary);
  transform: translate(-2px, -2px);
}

.nav-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  align-items: center;
  gap: .5rem;
  margin-bottom: .6rem;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
}

.nav-card.next {
  text-align: right;
  align-items: flex-end;
}

.nav-card.next .nav-label {
  justify-content: flex-end;
}

.nav-title {
  color: var(--text-main);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-main-heading {
  text-align: center;
  color: var(--text-header);
  margin-bottom: 3rem;
  font-size: 2rem;
}

.footer-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 1rem;
  display: grid;
}

.footer-section {
  text-align: center;
  transition: all var(--duration-fast);
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  height: 100%;
  padding: 2rem;
}

.footer-section:hover {
  border-color: var(--accent-primary);
  background: #ffffff14;
}

.footer-subheading {
  color: var(--text-main);
  min-height: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.feedback-buttons {
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
}

.contact-icon-btn {
  background: var(--bg-core);
  border: 1px solid var(--glass-border);
  width: 50px;
  height: 50px;
  color: var(--text-muted);
  transition: all var(--duration-fast);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  display: flex;
}

.contact-icon-btn:hover {
  background: var(--accent-primary);
  color: #000;
  border-color: var(--accent-primary);
  box-shadow: 3px 3px 0 var(--shadow-color);
  transform: translate(-2px, -2px);
}

.copyright-bar {
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-muted);
  opacity: .6;
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: .9rem;
}

.command-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2rem;
}

.command-table th {
  text-align: left;
  border-bottom: 2px solid var(--glass-border);
  color: var(--text-header);
  background: var(--bg-subtle);
  padding: 1rem;
  font-weight: 700;
}

.command-table td {
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
  vertical-align: top;
  padding: 1rem;
}

.command-table tr:last-child td {
  border-bottom: none;
}

.command-table tr:hover td {
  background: var(--bg-subtle);
  color: var(--text-main);
}

.col-command {
  width: 30%;
  font-family: var(--font-mono);
  color: var(--accent-secondary);
  font-weight: 600;
}

.col-desc {
  width: 70%;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: .4s forwards fadeIn;
}

.global-footer {
  border-top: 1px solid var(--glass-border);
  margin-top: 5rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-link-small {
  color: var(--accent-primary);
  margin-top: 1rem;
  font-size: .8rem;
  text-decoration: none;
  display: block;
}

.footer-link-small:hover {
  text-decoration: underline;
}

.footer-links-vertical {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  display: flex;
}

.footer-link-icon {
  color: var(--accent-primary);
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.footer-link-icon:hover {
  text-decoration: underline;
}

.legal-links {
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: .8rem;
  display: flex;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--accent-primary);
  text-decoration: underline;
}

.language-selector {
  position: relative;
}

.lang-trigger {
  backdrop-filter: blur(15px);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
  background: var(--bg-card) !important;
  border: 1px solid var(--glass-border) !important;
}

.lang-trigger:hover {
  box-shadow: 0 0 20px var(--shadow-hover);
  transform: translateY(-1px);
  border-color: var(--accent-primary) !important;
}

.lang-dropdown-overlay {
  z-index: 999;
  background: none;
  position: fixed;
  inset: 0;
}

.lang-dropdown {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  min-width: 200px;
  box-shadow: 0 8px 32px var(--shadow-color);
  animation: slideDown .2s var(--ease-out-expo);
  z-index: 1000;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lang-option {
  border: none;
  border-bottom: 1px solid var(--glass-border);
  width: 100%;
  color: var(--text-main);
  font-family: var(--font-main);
  cursor: pointer;
  transition: all var(--duration-fast);
  text-align: left;
  background: none;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.2rem;
  font-size: .9rem;
  display: flex;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: var(--accent-primary);
  color: #000;
}

.lang-option.active {
  color: var(--accent-primary);
  background: #00ffcc1a;
  font-weight: 600;
}

.lang-flag {
  flex-shrink: 0;
  font-size: 1.3rem;
}

.lang-name {
  flex-grow: 1;
}

.check-mark {
  color: var(--accent-primary);
  font-size: 1.1rem;
  font-weight: bold;
}

.theme-light .lang-dropdown {
  background: #fffffff2;
  box-shadow: 0 8px 24px #0000001f;
}

.theme-light .lang-option:hover {
  background: var(--accent-primary);
  color: #fff;
}

.theme-light .lang-option.active {
  color: var(--accent-primary);
  background: #1a1a1a14;
}

.docs-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  display: grid;
}

.doc-card {
  transition: all var(--duration-normal) var(--ease-out-expo);
  color: inherit;
  flex-direction: column;
  padding: 2rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.doc-card:before {
  content: "";
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transform-origin: 0;
  height: 3px;
  transition: transform var(--duration-normal);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.doc-card:hover:before {
  transform: scaleX(1);
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #00ffcc26;
}

.doc-card-header {
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.doc-icon {
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-size: 1.5rem;
  display: flex;
}

.doc-icon svg {
  width: 28px;
  height: 28px;
}

.doc-card-header h3 {
  color: var(--text-primary);
  margin: 0 0 .25rem;
  font-size: 1.5rem;
}

.doc-badge {
  color: var(--accent-primary);
  background: #00ffcc1a;
  border: 1px solid #0fc3;
  border-radius: 12px;
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  display: inline-block;
}

.doc-description {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.doc-features {
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.feature-tag {
  color: var(--text-muted);
  white-space: nowrap;
  background: #ffffff08;
  border: 1px solid #ffffff1a;
  border-radius: 6px;
  padding: .4rem .8rem;
  font-size: .8rem;
}

.doc-link-arrow {
  color: var(--accent-primary);
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 600;
  display: flex;
}

.doc-link-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-normal);
}

.doc-card:hover .doc-link-arrow svg {
  transform: translateX(4px);
}

.docs-quickstart {
  margin-bottom: 3rem;
  padding: 2.5rem;
}

.docs-quickstart h3 {
  color: var(--accent-primary);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.quickstart-steps {
  gap: 1.5rem;
  display: grid;
}

.step-item {
  align-items: flex-start;
  gap: 1.5rem;
  display: flex;
}

.step-number {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #000;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
}

.step-item h4 {
  color: var(--text-primary);
  margin: 0 0 .5rem;
  font-size: 1.1rem;
}

.step-item p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.tech-stack-section {
  margin-bottom: 2rem;
}

.tech-stack-section h3 {
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.tech-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  display: grid;
}

.tech-item {
  transition: all var(--duration-normal);
  background: #ffffff08;
  border: 1px solid #ffffff1a;
  border-radius: 12px;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  display: flex;
}

.tech-item:hover {
  border-color: var(--accent-primary);
  background: #ffffff0d;
}

.tech-icon {
  font-size: 1.5rem;
}

.tech-item span:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

.theme-light .doc-badge {
  color: #667eea;
  background: #667eea1a;
  border-color: #667eea33;
}

.theme-light .feature-tag {
  background: #00000008;
  border-color: #0000001a;
}

.theme-light .tech-item {
  background: #00000005;
  border-color: #0000001a;
}

.theme-light .tech-item:hover {
  background: #0000000a;
}

.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
}

.tilt-card-inner {
  transform-style: preserve-3d;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.glare-effect {
  pointer-events: none;
  border-radius: inherit;
  transition: opacity var(--duration-normal);
  position: absolute;
  inset: 0;
}

.page-transition-wrapper {
  width: 100%;
}

@media (width <= 900px) and (width >= 601px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 900px) {
  .sidebar {
    width: 0;
    padding: 0;
    overflow: hidden;
  }

  .main-content {
    margin-left: 0;
    padding: 5rem 1.5rem 1.5rem;
  }

  .language-selector {
    z-index: 1001 !important;
    position: fixed !important;
    top: 1rem !important;
    right: 1rem !important;
  }

  .lang-trigger {
    padding: .6rem 1rem !important;
    font-size: .85rem !important;
  }

  .lang-dropdown {
    min-width: 180px;
    right: 0;
  }

  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section h2 {
    font-size: 1.25rem;
  }

  .docs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .doc-card, .docs-quickstart {
    padding: 1.5rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .projects-grid, .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .boot-container {
    width: 95%;
    padding: 2rem 1.5rem;
  }

  .boot-title {
    font-size: 2rem !important;
  }

  .boot-status {
    font-size: .9rem !important;
  }

  .btn-enter {
    padding: .875rem 2rem !important;
    font-size: 1rem !important;
  }
}

@media (width <= 600px) {
  .main-content {
    padding: 4.5rem 1rem 1rem;
  }

  .hero-section h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-section h2 {
    font-size: 1.1rem;
  }

  .cta-group {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .doc-card-header h3 {
    font-size: 1.25rem;
  }

  .doc-icon {
    width: 48px;
    height: 48px;
  }

  .doc-icon svg {
    width: 24px;
    height: 24px;
  }

  .doc-features {
    gap: .4rem;
  }

  .feature-tag {
    padding: .3rem .6rem;
    font-size: .75rem;
  }

  .step-item {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number {
    margin: 0 auto;
  }

  .tech-item {
    padding: .875rem 1rem;
    font-size: .9rem;
  }

  .tech-icon {
    font-size: 1.25rem;
  }

  .page-header {
    padding: 1.5rem 0;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .bio-clean-container {
    padding: 1.25rem;
  }

  .boot-container {
    padding: 1.5rem 1rem;
  }

  .boot-title {
    font-size: 1.75rem !important;
  }

  .lang-trigger span {
    display: none;
  }

  .lang-trigger {
    min-width: auto !important;
    padding: .5rem .75rem !important;
  }
}

@media (width <= 400px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

  .docs-quickstart h3, .tech-stack-section h3 {
    font-size: 1.25rem;
  }

  .doc-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .boot-title {
    font-size: 1.5rem !important;
  }

  .access-granted {
    letter-spacing: 3px;
    font-size: .7rem;
  }
}

.hamburger-btn {
  z-index: 1100;
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  color: var(--accent-primary);
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition: all var(--duration-normal) ease;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
}

.hamburger-btn:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px var(--shadow-hover);
  transform: scale(1.05);
}

.hamburger-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-overlay {
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  background: #000000b3;
  animation: .3s fadeIn;
  display: none;
  position: fixed;
  inset: 0;
}

@media (width <= 1024px) {
  :root {
    --sidebar-width: 280px;
  }

  .hamburger-btn {
    display: flex;
  }

  .mobile-overlay {
    display: block;
  }

  .sidebar {
    transition: transform var(--duration-normal) var(--ease-out-expo);
    height: 100vh;
    position: fixed;
    overflow-y: auto;
    transform: translateX(-100%);
  }

  .sidebar.mobile-open {
    transform: translateX(0);
  }

  .main-content {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .dashboard-layout {
    flex-direction: column;
  }

  .content-scrollable {
    padding: 1.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}

@media (width <= 768px) {
  .hamburger-btn {
    width: 45px;
    height: 45px;
    top: 1rem;
    left: 1rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .page-header p {
    font-size: .95rem;
  }

  .cta-group {
    flex-direction: column;
    gap: .75rem;
  }

  .btn-primary, .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .project-grid, .resource-grid {
    grid-template-columns: 1fr;
  }
}

@media (width <= 480px) {
  .hamburger-btn {
    width: 40px;
    height: 40px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .sidebar {
    width: 85vw;
    max-width: 280px;
  }

  .content-scrollable {
    padding: 1rem;
  }
}

@media (height <= 600px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .boot-container {
    max-width: 600px;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  :root {
    --glass-border: #ffffff80;
    --text-muted: #aaa;
  }
}
/*# sourceMappingURL=portofolio.4d663569.css.map */
