/* Global variables. */
:root {
  /* Set sans-serif & mono fonts */
  --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir,
    "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica,
    "Helvetica Neue", sans-serif;
  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;

  /* Default (light) theme */
    --bg: #101010;
    --accent-bg: #121212;
    --text: #f4f4f4;
    --text-light: #ababab;
    --border: #666;
    --accent: #ffc107;
    --code: #f06292;
    --preformatted: #6e6e6e;
    --disabled: #111;
}

/* Dark theme */

@media (prefers-color-scheme: dark) {
  
	.anchorjs-link {
    color: #3161ff;
}

 code[class*="language-"],
pre[class*="language-"] {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	white-space: pre;
	white-space: pre-wrap;
	word-break: break-all;
	word-wrap: break-word;
	font-family: Menlo, Monaco, "Courier New", monospace;
	font-size: 15px;
	line-height: 1.5;
	color: #dccf8f;
	text-shadow: 0;
}

pre > code[class*="language-"] {
	font-size: 1em;
}

pre[class*="language-"],
:not(pre) > code[class*="language-"] {
	border-radius: 5px;
	border: 1px solid #000;
	color: #DCCF8F;
	background: #181914 url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAMAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQACQYGBgcGCQcHCQ0IBwgNDwsJCQsPEQ4ODw4OERENDg4ODg0RERQUFhQUERoaHBwaGiYmJiYmKysrKysrKysrKwEJCAgJCgkMCgoMDwwODA8TDg4ODhMVDg4PDg4VGhMRERERExoXGhYWFhoXHR0aGh0dJCQjJCQrKysrKysrKysr/8AAEQgAjACMAwEiAAIRAQMRAf/EAF4AAQEBAAAAAAAAAAAAAAAAAAABBwEBAQAAAAAAAAAAAAAAAAAAAAIQAAEDAwIHAQEAAAAAAAAAAADwAREhYaExkUFRcYGxwdHh8REBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8AyGFEjHaBS2fDDs2zkhKmBKktb7km+ZwwCnXPkLVmCTMItj6AXFxRS465/BTnkAJvkLkJe+7AKKoi2AtRS2zuAWsCb5GOlBN8gKfmuGHZ8MFqIth3ALmFoFwbwKWyAlTAp17uKqBvgBD8sM4fTjhvAhkzhaRkBMKBrfs7jGPIpzy7gFrAqnC0C0gB0EWwBDW2cBVQwm+QtPpa3wBO3sVvszCnLAhkzgL5/RLf13cLQd8/AGlu0Cb5HTx9KuAEieGJEdcehS3eRTp2ATdt3CpIm+QtZwAhROXFeb7swp/ahaM3kBE/jSIUBc/AWrgBN8uNFAl+b7sAXFxFn2YLUU5Ns7gFX8C4ib+hN8gFWXwK3bZglxEJm+gKdciLPsFV/TClsgJUwKJ5FVA7tvIFrfZhVfGJDcsCKaYgAqv6YRbE+RWOWBtu7+AL3yRalXLyKqAIIfk+zARbDgFyEsncYwJvlgFRW+GEWntIi2P0BooyFxcNr8Ep3+ANLbMO+QyhvbiqdgC0kVvgUUiLYgBS2QtPbiVI1/sgOmG9uO+Y8DW+7jS2zAOnj6O2BndwuIAUtkdRN8gFoK3wwXMQyZwHVbClsuNLd4E3yAUR6FVDBR+BafQGt93LVMxJTv8ABts4CVLhcfYWsCb5kC9/BHdU8CLYFY5bMAd+eX9MGthhpbA1vu4B7+RKkaW2Yq4AQtVBBFsAJU/AuIXBhN8gGWnstefhiZyWvLAEnbYS1uzSFP6Jvn4Baxx70JKkQojLib5AVTey1jjgkKJGO0AKWyOm7N7cSpgSpAdPH0Tfd/gp1z5C1ZgKqN9J2wFxcUUuAFLZAm+QC0Fb4YUVRFsAOvj4KW2dwtYE3yAWk/wS/PLMKfmuGHZ8MAXF/Ja32Yi5haAKWz4Ydm2cSpgU693Atb7km+Zwwh+WGcPpxw3gAkzCLY+iYUDW/Z3Adc/gpzyFrAqnALkJe+7DoItgAtRS2zuKqGE3yAx0oJvkdvYrfZmALURbDuL5/RLf13cAuDeBS2RpbtAm+QFVA3wR+3fUtFHoBDJnC0jIXH0HWsgMY8inPLuOkd9chp4z20ALQLSA8cI9jYAIa2zjzjBd8gRafS1vgiUho/kAKcsCGTOGWvoOpkAtB3z8Hm8x2Ff5ADp4+lXAlIvcmwH/2Q==') repeat left top;
}

pre[class*="language-"] {
	padding: 12px;
	overflow: auto;
}

:not(pre) > code[class*="language-"] {
	padding: 2px 6px;
}

.token.namespace {
	opacity: .7;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #586e75;
	font-style: italic;
}

.token.number,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #468966;
}

.token.attr-name {
	color: #b89859;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: #dccf8f;
}

.token.selector,
.token.regex {
	color: #859900;
}

.token.atrule,
.token.keyword {
	color: #167dcb;
}

.token.attr-value {
	color: #468966;
}

.token.function,
.token.variable,
.token.placeholder {
	color: #b58900;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
	color: #b89859;
}

.token.tag {
	color: #ffb03b;
}

.token.important,
.token.statement,
.token.deleted {
	color: #dc322f;
}

.token.punctuation {
	color: #dccf8f;
}

.token.entity {
	cursor: help;
}

.token.bold {
	font-weight: bold;
}

.token.italic {
	font-style: italic;
}
 
  :root {
    --bg: #101010;
    --accent-bg:  #121212;
    --text: #f4f4f4;
    --text-light: #ababab;
    --border: #666;
    --accent: #ffc107;
    --code: #f06292;
    --preformatted: #6e6e6e;
    --disabled: #111111;
  }
  /* Add a bit of transparancy so light media isn't so glaring in dark mode */
  img,
  video {
    opacity: 0.8;
  }
}

html {
  /* Set the font globally */
  font-family: var(--sans-font);
  scroll-behavior: smooth;
}

/* Make the body a nice central block */
body {
  color: var(--text);
  background: var(--bg);
  font-size: 1.15rem;
  line-height: 1.5;
  display: grid;
  grid-template-columns:
    1fr min(45rem, 90%) 1fr;
  margin: 0;
}

body>* {
  grid-column: 2;
}

/* Make the header bg full width, but the content inline with body */
body > header {
  background: var(--accent-bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 0 0.5rem 2rem 0.5rem;
  grid-column: 1 / -1;
  box-sizing: border-box;
}

body > header h1 {
  max-width: 1200px;
  margin: 1rem auto;
}

body > header p {
  max-width: 40rem;
  margin: 1rem auto;
}

/* Add a little padding to ensure spacing is correct between content and nav */
main {
  padding-top: 1.5rem;
}

body > footer {
  margin-top: 4rem;
  padding: 2rem 1rem 1.5rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid var(--border);
}





/* Format headers */
h1 {
  font-size: 80px;
}

h2 {
  font-size: 2.6rem;
  margin-top: 3rem;
}

h3 {
  font-size: 2rem;
  margin-top: 3rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 0.96rem;
}

/* Fix line height when title wraps */
h1,
h2,
h3 {
  line-height: 1.1;
}

/* Reduce header size on mobile */
@media only screen and (max-width: 720px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.25rem;
  }
}

/* Format links & buttons */
a,
a:visited {
  color: var(--accent);
}

a:hover {
  text-decoration: none;
}

button,
[role="button"],
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border: none;
  border-radius: 5px;
  background: var(--accent);
  font-size: 1rem;
  color: var(--bg);
  padding: 0.7rem 0.9rem;
  margin: 0.5rem 0;
}

button[disabled],
[role="button"][aria-disabled="true"],
input[type="submit"][disabled],
input[type="reset"][disabled],
input[type="button"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][disabled],
select[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  background-color: var(--disabled);
}

input[type="range"] {
  padding: 0;
}

/* Set the cursor to '?' while hovering over an abbreviation */
abbr {
  cursor: help;
}

button:focus,
button:enabled:hover,
[role="button"]:focus,
[role="button"]:not([aria-disabled="true"]):hover,
input[type="submit"]:focus,
input[type="submit"]:enabled:hover,
input[type="reset"]:focus,
input[type="reset"]:enabled:hover,
input[type="button"]:focus,
input[type="button"]:enabled:hover {
  filter: brightness(1.4);
  cursor: pointer;
}

/* Format navigation */
nav {
  font-size: 1rem;
  line-height: 2;
  padding: 1rem 0 0 0;
}

/* Use flexbox to allow items to wrap, as needed */
nav ul,
nav ol {
  align-content:   space-around;
  align-items:     center;
  display:         flex;
  flex-direction:  row;
  justify-content: center;
  list-style-type: none;
  margin:          0;
  padding:         0;
}

/* List items are inline elements, make them behave more like blocks */
nav ul li,
nav ol li {
  display: inline-block;
}

nav a,
nav a:visited {
  margin: 0 1rem 1rem 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  display: inline-block;
  padding: 0.1rem 1rem;
  text-decoration: none;
}

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

nav a:last-child {
  margin-right: 0;
}

/* Reduce nav side on mobile */
@media only screen and (max-width: 720px) {
  nav a {
    border: none;
    padding: 0;
    color: var(--accent);
    text-decoration: underline;
    line-height: 1;
  }
}

/* Format the expanding box */
details {
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  margin-bottom: 1rem;
}

summary {
  cursor: pointer;
  font-weight: bold;
  padding: 0.6rem 1rem;
}

details[open] {
  padding: 0.6rem 1rem 0.75rem 1rem;
}

details[open] summary + * {
  margin-top: 0;
}

details[open] summary {
  margin-bottom: 0.5rem;
  padding: 0;
}

details[open] > *:last-child {
  margin-bottom: 0;
}

/* Format tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
}

td,
th {
  border: 1px solid var(--border);
  text-align: left;
  padding: 0.5rem;
}

th {
  background: var(--accent-bg);
  font-weight: bold;
}

tr:nth-child(even) {
  /* Set every other cell slightly darker. Improves readability. */
  background: var(--accent-bg);
}

table caption {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Format forms */
textarea,
select,
input {
  font-size: inherit;
  font-family: inherit;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box;
  width: 60%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Add arrow to drop-down */
select {
  background-image: linear-gradient(45deg, transparent 49%, var(--text) 51%),
    linear-gradient(135deg, var(--text) 51%, transparent 49%);
  background-position: calc(100% - 20px), calc(100% - 15px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

select[multiple] {
  background-image: none !important;
}

/* checkbox and radio button style */
input[type="checkbox"],
input[type="radio"] {
  vertical-align: bottom;
  position: relative;
}

input[type="radio"] {
  border-radius: 100%;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background: var(--accent);
}

input[type="checkbox"]:checked::after {
  /* Creates a rectangle with colored right and bottom borders which is rotated to look like a check mark */
  content: " ";
  width: 0.1em;
  height: 0.25em;
  border-radius: 0;
  position: absolute;
  top: 0.05em;
  left: 0.18em;
  background: transparent;
  border-right: solid var(--bg) 0.08em;
  border-bottom: solid var(--bg) 0.08em;
  font-size: 1.8em;
  transform: rotate(45deg);
}
input[type="radio"]:checked::after {
  /* creates a colored circle for the checked radio button  */
  content: " ";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  position: absolute;
  top: 0.125em;
  background: var(--bg);
  left: 0.125em;
  font-size: 32px;
}

/* Make the textarea wider than other inputs */
textarea {
  width: 80%;
}

/* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) {
  textarea,
  select,
  input {
    width: 100%;
  }
}

/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
}

/* do not show border around file selector button */
input[type="file"] {
  border: 0;
}

/* Misc body elements */
hr {
  color: var(--border);
  border-top: 1px;
  margin: 1rem auto;
}

mark {
  padding: 2px 5px;
  border-radius: 4px;
  background: #ffc107;
}

main img,
main video {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

figure {
  margin: 0;
  text-align: center;
}

figcaption {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

blockquote {
  margin: 2rem 0 2rem 2rem;
  padding: 0.4rem 0.8rem;
  border-left: 0.35rem solid var(--accent);
  color: var(--text-light);
  font-style: italic;
}

cite {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: normal;
}

/* Use mono font for code elements */
code,
pre,
pre span,
kbd,
samp {
  font-family: var(--mono-font);
  color: var(--code);
}

kbd {
  color: var(--preformatted);
  border: 1px solid var(--preformatted);
  border-bottom: 3px solid var(--preformatted);
  border-radius: 5px;
  padding: 0.1rem 0.4rem;
}

pre {
  padding: 1rem 1.4rem;
  max-width: 100%;
  overflow: auto;
  color: var(--preformatted);
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 5px;
}

/* Fix embedded code within pre */
pre code {
  color: var(--preformatted);
  background: none;
  margin: 0;
  padding: 0;
}

.icon {
    vertical-align: sub;
    padding-right: 0.25rem;
    display: inline-block;
    width: 1em;
    height: 1.3em;
    margin-right: 0.2rem;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

input[type="color" i] {
    appearance: auto;
    width: 50px;
    height: 27px;
    cursor: default;
    box-sizing: border-box;
    background-color: -internal-light-dark(rgb(239, 239, 239), rgb(59, 59, 59));
    color: -internal-light-dark(black, white);
    border-width: 1px;
    border-style: solid;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
    padding: 1px 2px;
}


.notice {
  background: var(--accent-bg);
  border: 2px solid var(--border);
  border-radius: 5px;
  padding: 1.5rem;
  margin: 2rem 0;
}




code[class*="language-"],
pre[class*="language-"] {
	color: #393A34;
	font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	font-size: .9em;
	line-height: 1.2em;

	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre > code[class*="language-"] {
	font-size: 1em;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	background: #b3d4fc;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection {
	background: #b3d4fc;
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
	border: 1px solid #dddddd;
	background-color: white;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .2em;
	padding-top: 1px;
	padding-bottom: 1px;
	background: #f8f8f8;
	border: 1px solid #dddddd;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #999988;
	font-style: italic;
}

.token.namespace {
	opacity: .7;
}

.token.string,
.token.attr-value {
	color: #e3116c;
}

.token.punctuation,
.token.operator {
	color: #393A34; /* no highlight */
}

.token.entity,
.token.url,
.token.symbol,
.token.number,
.token.boolean,
.token.variable,
.token.constant,
.token.property,
.token.regex,
.token.inserted {
	color: #36acaa;
}

.token.atrule,
.token.keyword,
.token.attr-name,
.language-autohotkey .token.selector {
	color: #00a4db;
}

.token.function,
.token.deleted,
.language-autohotkey .token.tag {
	color: #9a050f;
}

.token.tag,
.token.selector,
.language-autohotkey .token.keyword {
	color: #00009f;
}

.token.important,
.token.function,
.token.bold {
	font-weight: bold;
}

.token.italic {
	font-style: italic;
}

/* ===============================
   DOCS PAGE OVERRIDE
   =============================== */

/* Disable global body grid */
body.docs {
  display: block;
}

/* Prevent grid-column forcing */
body.docs > * {
  grid-column: unset;
}

/* Docs layout */
.docs-layout {
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

/* Sidebar */
.docs-sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;

  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.docs-sidebar h3 {
  margin-top: 0;
}

.docs-sidebar ul {
  list-style: none;
  padding-left: 0;
}

.docs-sidebar ul ul {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}

.docs-sidebar a {
  display: block;
  padding: 0.25rem 0;
  color: var(--text-light);
  text-decoration: none;
}

.docs-sidebar a:hover {
  color: var(--accent);
}

/* Content */
.docs-content article {
  margin-bottom: 4rem;
}

/* Mobile */
@media (max-width: 900px) {
  .docs-layout {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: relative;
  }
}

/* =====================================================
   AMPHAROS VISUAL SYSTEM
   ===================================================== */

:root {
  --ampharos-yellow: #ffc107;
}

/* -----------------------------------------------------
   GLOBAL BODY STYLE
----------------------------------------------------- */

body {
  background: #050505;
  color: #e0e0e0;
  overflow-x: hidden;
}

/* -----------------------------------------------------
   ANIMATED GRID BACKGROUND
----------------------------------------------------- */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;

  background-image:
    linear-gradient(rgba(255,193,7,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,193,7,0.05) 1px, transparent 1px);

  background-size: 60px 60px;

  animation: gridMove 45s linear infinite;
}

@keyframes gridMove {
  from {
    transform: translate(0,0);
  }
  to {
    transform: translate(-60px,-60px);
  }
}

/* -----------------------------------------------------
   AMBIENT LIGHT GLOW
----------------------------------------------------- */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,193,7,0.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,193,7,0.10), transparent 45%),
    radial-gradient(circle at 60% 10%, rgba(255,193,7,0.08), transparent 40%);

  filter: blur(80px);
  animation: glowDrift 30s ease-in-out infinite alternate;
}

@keyframes glowDrift {
  0% {
    transform: translate(-5%, -5%);
  }
  100% {
    transform: translate(5%, 5%);
  }
}

/* -----------------------------------------------------
   HERO BACKGROUND
----------------------------------------------------- */

.hero-bg {
  background:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
    url('../images/capa.jpeg');

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* -----------------------------------------------------
   GLASS PANELS
----------------------------------------------------- */

.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;

  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
}

/* -----------------------------------------------------
   NEON BORDER
----------------------------------------------------- */

.neon-border {
  border: 1px solid rgba(255,193,7,0.3);

  box-shadow:
    0 0 15px rgba(255,193,7,0.1),
    inset 0 0 15px rgba(255,193,7,0.05);

  transition: all 0.4s;
}

.neon-border:hover {
  border-color: var(--ampharos-yellow);

  box-shadow:
    0 0 25px rgba(255,193,7,0.35),
    inset 0 0 15px rgba(255,193,7,0.1);
}

/* -----------------------------------------------------
   CARD HOVER SYSTEM
----------------------------------------------------- */

.group {
  position: relative;
  overflow: hidden;

  transition: all 0.45s cubic-bezier(0.23,1,0.32,1);
}

.group:hover {
  transform: translateY(-6px) scale(1.01);

  box-shadow:
    0 0 30px rgba(255,193,7,0.35),
    0 20px 40px rgba(0,0,0,0.6);
}

/* -----------------------------------------------------
   SHINE SWEEP EFFECT
----------------------------------------------------- */

.group::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  height: 100%;
  width: 120%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,193,7,0.25),
    transparent
  );

  transform: skewX(-20deg);
}

.group:hover::before {
  animation: shineSweep 0.9s ease;
}

@keyframes shineSweep {
  to {
    left: 120%;
  }
}

/* -----------------------------------------------------
   NEON TEXT
----------------------------------------------------- */

.neon-yellow {
  text-shadow: 0 0 10px rgba(255,193,7,0.7);
}

/* -----------------------------------------------------
   SECTION LAYOUT
----------------------------------------------------- */

.section-container {
  padding: 100px 20px;

  position: relative;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background:
    radial-gradient(circle at 20% 50%, rgba(255,193,7,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,193,7,0.03) 0%, transparent 50%);
}

/* -----------------------------------------------------
   FLOATING PARTICLE EFFECT
----------------------------------------------------- */

.section-container::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle, rgba(255,193,7,0.15) 1px, transparent 1px);

  background-size: 120px 120px;

  opacity: 0.15;

  animation: particleFloat 60s linear infinite;

  pointer-events: none;
}

@keyframes particleFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-200px);
  }
}

/* -----------------------------------------------------
   NAV LINK HOVER
----------------------------------------------------- */

header ul li a:hover {
  text-shadow: 0 0 10px rgba(255,193,7,0.6);
}

/* -----------------------------------------------------
   DOCS SIDEBAR IMPROVEMENT
----------------------------------------------------- */

.docs-sidebar {
  background: rgba(255,255,255,0.03);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,193,7,0.2);

  box-shadow:
    0 0 20px rgba(255,193,7,0.08);
}

/* -----------------------------------------------------
   MOBILE OPTIMIZATION
----------------------------------------------------- */

@media (max-width:1000px) {

  .section-container {
    padding: 60px 20px;
  }

}