/* =============================================
   CSS RESET & NORMALIZATION
============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F7F6F3;
  background: #15152f /* fallback */;
  background: linear-gradient(135deg, #191b31 0%, #232353 100%);
  min-height: 100vh;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
ol, ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* =============================================
   FONT IMPORTS
============================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #212463;
  --color-secondary: #2AA660;
  --color-accent: #F7F6F3;
  --color-darkBG: #191b31;
  --color-cardBG: #232353;
  --color-neon: #17fff7;
  --color-error: #e24545;
}

/* =============================================
   STRUCTURE & GENERAL STYLES
============================================= */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.content-wrapper.cta,
.content-wrapper.newsletter,
.content-wrapper.confirmation {
  align-items: center;
  text-align: center;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* Visually distinguish .features and .services */
.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =============================================
   TYPOGRAPHY & HEADINGS
============================================= */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.5rem;
  color: var(--color-neon);
  text-shadow: 0 2px 12px rgba(23,255,247,0.3);
  letter-spacing: 1px;
}
h2 {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(42,166,96,0.10);
}
h3 {
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
}
.subheadline {
  color: #b8ffe7;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-accent);
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
strong, b {
  color: var(--color-secondary);
  font-weight: 600;
}

ul, ol {
  margin: 12px 0 12px 20px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--color-accent);
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
}

/* =============================================
   HEADER & NAVIGATION
============================================= */
header {
  width: 100%;
  background: #17194a;
  border-bottom: 2px solid var(--color-primary);
  z-index: 48;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 45px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  display: inline-block;
  color: var(--color-accent);
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 8px 0;
  position: relative;
  transition: color 0.19s cubic-bezier(.84,0,.16,1);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-neon);
  text-shadow: 0 0 4px #17fff7,0 0 10px #17fff760;
}

.cta.primary {
  background: var(--color-neon);
  color: #191b31 !important;
  border-radius: 32px;
  padding: 10px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  margin-left: 5px;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 #17fff760;
  letter-spacing: 0.06em;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--color-secondary);
  color: #fff !important;
  box-shadow: 0 4px 14px 0 #2aa66088;
}

.cta.secondary {
  background: var(--color-primary);
  color: var(--color-neon) !important;
  border: 1.7px solid var(--color-neon);
  border-radius: 32px;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 10px 30px;
  box-shadow: 0 2px 8px 0 #17fff75e;
  transition: background 0.2s, color 0.2s, border 0.17s;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: var(--color-neon);
  color: #15152f !important;
  border: 1.7px solid var(--color-primary);
  box-shadow: 0 6px 18px #17fff780;
}
.cta.small {
  padding: 8px 18px;
  font-size: 1rem;
  background: transparent;
  color: var(--color-neon) !important;
  border: 1.3px solid var(--color-neon);
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: background 0.17s, color 0.15s, border 0.11s;
}
.cta.small:hover, .cta.small:focus {
  background: var(--color-neon);
  color: #191b31 !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2rem;
  cursor: pointer;
  outline: none;
  z-index: 51;
  margin-left: 18px;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: var(--color-secondary);
}

/* =============================================
   MOBILE MENU STYLES
============================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #15152ff0;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.8,0,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 36px 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-neon);
  font-size: 2.2rem;
  margin: 0 22px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0;
  padding: 38px 20px 0 40px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.35rem;
  margin: 0 0 18px 0;
  padding: 10px 0;
  border-bottom: 1px solid #23235322;
  width: 100%;
  border-radius: 0;
  display: block;
  transition: color 0.18s;
}
.mobile-nav a:last-child {
  margin-bottom: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-neon);
}

/* =============================================
   MAIN: HERO & CONTENT BLOCKS
============================================= */
main {
  width: 100%;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  width: 100%;
}
section .container {
  padding: 0 10px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 12px;
}
.feature-card {
  background: var(--color-cardBG);
  border-radius: 22px;
  padding: 24px 18px 28px 18px;
  box-shadow: 0 5px 21px -5px #17fff71a, 0 1px 4px 0 #17194a42;
  border: 1.6px solid #232353bb;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 240px;
  max-width: 325px;
  min-width: 180px;
  transition: transform .22s, box-shadow .28s, border .15s;
  position: relative;
  margin-bottom: 20px;
}
.feature-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 9px;
}
.feature-card h3 {
  margin-bottom: 6px;
  color: var(--color-neon);
  font-size: 1.17rem;
}
.feature-card p {
  font-size: 1rem;
}
.feature-card:hover, .feature-card:focus {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 12px 40px -2px #17fff716, 0 2px 6px 0 #191b317d;
  border: 1.8px solid var(--color-neon);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 9px;
}
.service-item {
  background: var(--color-darkBG);
  border: 1.3px solid #2AA66044;
  border-radius: 18px;
  padding: 20px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 14px 0 #2aa6601c;
  min-width: 200px;
  flex: 1 1 210px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: border 0.18s, box-shadow .23s, background .18s;
}
.service-item .preis {
  color: var(--color-neon);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
}
.service-item:hover, .service-item:focus {
  border: 1.8px solid var(--color-neon);
  box-shadow: 0 7px 24px 0 #17fff71f;
  background: #232353dd;
}

/* Blog Teasers */
.blog-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.blog-teaser {
  background: var(--color-cardBG);
  border-radius: 22px;
  padding: 22px 20px 30px 20px;
  box-shadow: 0 7px 18px 0 #17fff708, 0 1.5px 4.5px 0 #17194a22;
  border: 1.5px solid #17fff71c;
  flex: 1 1 270px;
  max-width: 340px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-teaser h3 {
  color: var(--color-neon);
}
.categories-list {
  margin: 24px 0 6px 0;
}
.categories-list ul {
  display: flex; flex-wrap: wrap; gap: 15px;
}
.categories-list li {
  background: #212463;
  color: var(--color-neon);
  border-radius: 12px;
  padding: 5px 16px;
  font-size: 0.93rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}

.newsletter-signup {
  margin-top: 18px;
  padding: 15px 12px;
  background: #232353bb;
  border: 2px dashed var(--color-secondary);
  border-radius: 16px;
}
.next-steps-info {
  margin: 22px 0 0 0;
  color: var(--color-neon);
  font-size: 1.1rem;
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #F7F6F3;
  color: #232353;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 22px;
  min-width: 230px;
  max-width: 350px;
  box-shadow: 0 3px 20px #2AA66022;
  margin-bottom: 20px;
  border: 1.5px solid #2AA66033;
  font-size: 1rem;
  transition: box-shadow 0.23s, border 0.16s, transform 0.19s;
}
.testimonial-card p {
  color: #232353;
  font-size: 1.02rem;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  margin-top: 4px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 9px 36px #2aa66031, 0 1.5px 7px #21246322;
  border: 1.8px solid var(--color-secondary);
  transform: translateY(-4px) scale(1.024);
}

/* SPACING HELPERS */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTACT INFO */
.contact-info-block {
  background: #232353;
  color: #fff;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 4px 18px 0 #17fff719;
}
.contact-info-block a {
  color: var(--color-neon);
  text-decoration: underline;
  transition: color .13s;
}
.contact-info-block a:hover { color: var(--color-secondary); }

/* LEGAL / POLICY PAGES */
.legal {
  background: #1b1b38;
  padding: 36px 24px 36px 24px;
  border-radius: 20px;
  box-shadow: 0 3px 22px 0 #21246315;
  color: var(--color-accent);
}
.legal h1, .legal h2 {
  color: var(--color-neon);
  text-shadow: 0 0 10px #17fff708;
  margin-bottom: 12px;
}
.legal a {
  color: var(--color-neon);
  text-decoration: underline;
}
.legal a:hover { color: var(--color-secondary); }

/* FOOTER
---------------------------------*/
footer {
  width: 100%;
  background: #17194a;
  color: var(--color-accent);
  padding: 36px 0 0 0;
  border-top: 2px solid var(--color-primary);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 180px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 7px;
}
.footer-brand span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--color-secondary);
  letter-spacing: 0.03em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
  margin-right: 24px;
}
.footer-nav a {
  color: var(--color-accent);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-neon);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  color: var(--color-accent);
  gap: 5px;
  font-size: 1rem;
  min-width: 200px;
}
.footer-contact a {
  color: var(--color-neon);
  text-decoration: underline;
  font-size: 1rem;
  transition: color .14s;
}
.footer-contact a:hover { color: var(--color-secondary); }

/* =============================================
   COOKIE CONSENT BANNER & MODAL
============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  width: 100vw;
  background: linear-gradient(90deg, #15152f 60%, #232353 100%);
  box-shadow: 0 -2px 16px #191b31aa;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 32px 26px 32px;
  color: var(--color-accent);
  font-size: 1.02rem;
  opacity: 1;
  transition: transform .37s, opacity .21s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 22px;
  margin: 0;
  box-shadow: 0 2px 8px #17fff72d;
  cursor: pointer;
  transition: background .16s, color .17s, box-shadow .18s;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: var(--color-neon);
  color: #191b31;
}
.cookie-banner .reject {
  background: #232353;
  color: var(--color-neon);
  border: 1px solid var(--color-neon);
}
.cookie-banner .reject:hover {
  background: var(--color-error);
  color: #fff;
  border-color: var(--color-error);
}
.cookie-banner .cookie-settings {
  background: transparent;
  border: 1px solid var(--color-neon);
  color: var(--color-neon);
}
.cookie-banner .cookie-settings:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed; left:0; top:0; width:100vw; height:100vh;
  background: #000b;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .19s;
}
.cookie-modal-backdrop.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #191b31;
  border-radius: 26px;
  max-width: 406px;
  width: 90vw;
  color: var(--color-accent);
  box-shadow: 0 6px 40px #2AA66055;
  padding: 38px 28px 26px 28px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--color-neon);
  font-size: 1.24rem;
  margin-bottom: 12px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}
.cookie-modal .category label {
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  color: var(--color-accent);
  margin-right: 8px;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #232353;
  border-radius: 22px;
  transition: background .14s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 18px; width: 18px;
  left: 2px; bottom: 2px;
  background: var(--color-neon);
  border-radius: 50%;
  transition: transform .19s, background .17s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--color-secondary);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(20px);
  background: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-neon);
  cursor: pointer;
}
.cookie-modal .button-group {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 20px;
  padding: 8px 20px;
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal button.cancel {
  background: #232353;
  color: var(--color-neon);
  border: 1px solid var(--color-neon);
}
.cookie-modal button.cancel:hover {
  background: var(--color-error);
  color: #fff;
}
.cookie-modal button.confirm:hover {
  background: var(--color-neon);
  color: #191b31;
}

/* =============================================
   RESPONSIVE / MOBILE STYLES
============================================= */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding: 0 6vw;
  }
  .footer-brand { min-width: 145px; }
  .footer-contact { min-width: 120px; }
  .footer-nav { min-width: 90px; }
}
@media (max-width: 900px) {
  header .container { flex-direction: row; gap: 0; }
  footer .container { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer-contact, .footer-nav, .footer-brand { min-width: 0; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 4vw; }
  header .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .footer-nav { flex-direction: row; gap: 16px; margin-right: 0; }
  .feature-grid, .blog-teaser-grid, .service-list, .testimonial-row, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .blog-teaser, .feature-card, .service-item, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    margin-bottom: 18px;
  }
  .section { margin-bottom: 36px; padding: 30px 6px; }
  section { margin-bottom: 36px; padding: 30px 0; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-wrapper.cta, .content-wrapper.newsletter, .content-wrapper.confirmation { align-items: center; text-align: center; }
  .legal { padding: 18px 7px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 15px; padding: 20px 14px 20px 14px; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  h3, .service-item .preis { font-size: 1rem; }
  .section { padding: 20px 2px; }
  section { padding: 14px 0; }
  .cookie-modal { padding: 18px 7px 16px 7px; font-size: 0.96rem; }
}

/* =============================================
   MICRO-INTERACTIONS
============================================= */
.cta, .feature-card, .service-item, .testimonial-card, .blog-teaser, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.15s, background 0.18s, color 0.18s, border 0.14s, transform 0.18s;
}
.card:hover, .blog-teaser:hover, .footer-nav a:hover, .main-nav a:hover, .service-item:hover, .feature-card:hover {
  filter: brightness(1.07);
}

/* =============================================
   MISC: SCROLLBARS & SELECTIONS
============================================= */
::-webkit-scrollbar {
  width: 8px; background: #232353;
}
::-webkit-scrollbar-thumb {
  background: var(--color-neon);
  border-radius: 8px;
}
::selection {
  background: #17fff79a;
  color: #232353;
}

/* =============================================
   END
============================================= */
