/*-------------------------------------------------*/
/* CSS RESET & BASE STYLES                        */
/*-------------------------------------------------*/
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%; }
article, aside, details, figcaption, figure,footer,header,hgroup,main,menu,nav,section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { border: 0; max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; color: inherit; }

/* Fonts (Google Fonts included via <link> or @import if needed) */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #202834;
  color: #f4faff;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: 700;
}
h1 { font-size: 2.7rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.10rem; }
}

p, ul li, ol li {
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: #f4faff;
}
strong { color: #65BFA6; font-weight: 700; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* Shared Section Styles */
.section, .hero, .features, .about, .services, .info, .testimonials, .team, .cta, .blog-list, .about-preview, .services-overview, .legal, .success-message, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: 0 8px 36px 0 rgba(35,53,73,0.14);
  background: #222b38;
  position: relative;
}

@media (max-width: 768px) {
  .section, .hero, .features, .about, .services, .info, .testimonials, .team, .cta, .blog-list, .about-preview, .services-overview, .legal, .success-message, .contact {
    margin-bottom: 32px;
    padding: 24px 8px;
    border-radius: 18px;
  }
}

/* Gradient Neon Bar (Futuristic accent) */
.section::before, .hero::before, .features::before {
  content: '';
  display: block;
  position: absolute;
  left: 24px; top: 18px;
  width: 40px; height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg,#65BFA6,#00ffe7,#09fbd3);
  box-shadow: 0 0 8px #00ffe7,0 0 24px #65BFA6;
  z-index: 2;
}
@media (max-width: 768px) {
  .section::before, .hero::before, .features::before {
    left: 8px; top: 10px; width: 24px;
  }
}

/*-------------------------------------------*/
/* HEADER & NAVIGATION                       */
/*-------------------------------------------*/
header {
  width: 100%;
  background: #263043;
  box-shadow: 0 2px 24px 0 rgba(35,53,73,0.09);
  z-index: 20;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 16px 0;
  width: 100%;
}
header nav a {
  padding: 8px 18px;
  color: #d1f1f1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 24px;
  transition: color 0.18s, background 0.18s;
}
header nav a.cta {
  background: #65BFA6;
  color: #213649;
  box-shadow: 0 0 0 2px #65BFA6, 0 1px 12px #50beac40;
  font-weight: 700;
  border-radius: 24px;
  margin-left: auto;
  letter-spacing: 0.03em;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #30eec2;
  color: #111;
  box-shadow: 0 0 0 2px #30eec2,0 2px 18px #0eede3a0;
  outline: none;
  transition: all .18s;
}
header nav a:hover, header nav a:focus {
  background: #233044;
  color: #65BFA6;
  outline: none;
  transition: all .18s;
}
header nav img {
  display: block;
  height: 38px;
  width: auto;
  margin-right: 10px;
}

@media (max-width: 1024px) {
  header nav {
    gap: 12px;
    padding: 14px 0 8px 0;
  }
  header nav a, header nav a.cta {
    font-size: 0.98rem;
    padding: 8px 11px;
  }
  header nav img {
    height: 32px;
  }
}
@media (max-width: 890px) {
  header nav {
    gap: 7px;
    font-size: .92rem;
  }
}

/* Hide nav on mobile, show burger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #09fbd3;
  font-size: 2rem;
  cursor: pointer;
  z-index: 60;
  margin-left: auto;
  margin-right: 10px;
  transition: color .18s;
}
.mobile-menu-toggle:focus { color: #fff; outline: none; }

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(22,30,51,0.98);
  backdrop-filter: blur(6px);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.92,.01,.55,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  display: block;
  background: none;
  border: none;
  color: #00ffe7;
  font-size: 2.5rem;
  cursor: pointer;
  align-self: flex-end;
  padding: 28px 28px 6px 0;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #fff; outline: none; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 20px;
  width: 100%;
  align-items: flex-start;
  padding: 30px 30px 0 38px;
}
.mobile-nav a {
  color: #d0fff7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  border-radius: 16px;
  padding: 10px 0;
  font-weight: 600;
  transition: color 0.18s, background 0.16s;
}
.mobile-nav a.cta, .mobile-nav a[href*="kontakt"], .mobile-nav a[href*="thank-you"] {
  background: #65BFA6;
  color: #203040;
  font-weight: 700;
  padding: 14px 18px;
  margin-top: 20px;
  border-radius: 23px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #09fbd375;
  color: #fff471;
  outline: none;
}

@media (max-width: 500px) {
  .mobile-nav {
    gap: 10px; padding: 20px 12px 0 16px; font-size: 1rem;
  }
  .mobile-menu-close { font-size: 2.1rem; padding: 16px 12px 3px 0; }
}

/*----------------------------*/
/* HERO SECTIONS              */
/*----------------------------*/
.hero {
  background: #242f42;
  position: relative;
  box-shadow: 0 2px 32px 0 rgba(35,53,73,0.14);
  border-radius: 28px;
  text-align: left;
}
.hero .container { padding-top: 0; }
.hero h1 {
  background: linear-gradient(90deg, #2A3646 65%, #65BFA6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 12px #17171a70;
}
.subheadline {
  color: #f7fffe;
  font-size: 1.22rem;
  font-family: 'Roboto', sans-serif;
}
@media (max-width: 768px) {
  .hero { border-radius: 14px; }
}

/*----------------------------*/
/* FEATURES (ICON LIST)       */
/*----------------------------*/
.features .feature-grid, .features ul, .services ul, .info ul, .about ul, .services-overview ul, .blog-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-direction: row;
}
.features .feature-grid li, .features ul li, .services ul li, .info ul li, .about ul li, .services-overview ul li, .blog-list ul li {
  background: #22324b;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(90,255,252,0.13);
  padding: 26px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 270px;
  min-width: 210px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #233044;
  transition: box-shadow .19s, border .19s;
}
.features .feature-grid li img {
  width: 38px; height: 38px;
  filter: drop-shadow(0 0 8px #09fbd380);
}
.features .feature-grid li:hover, .features ul li:hover {
  box-shadow: 0 3px 38px 0 #09fbd350;
  border: 1.5px solid #09fbd3;
}

@media (max-width: 900px) {
  .features .feature-grid, .features ul, .services ul, .info ul, .about ul, .services-overview ul, .blog-list ul { gap: 16px; }
  .features .feature-grid li, .features ul li, .services ul li, .info ul li, .about ul li, .services-overview ul li, .blog-list ul li { min-width: 180px; padding: 16px 10px 16px 12px; }
}
@media (max-width: 600px) {
  .features .feature-grid, .features ul, .services ul, .info ul, .about ul, .services-overview ul, .blog-list ul { flex-direction: column; gap: 14px; }
  .features .feature-grid li, .features ul li, .services ul li, .info ul li, .about ul li, .services-overview ul li, .blog-list ul li { min-width: unset; width: 100%; }
}

/*-------------------------*/
/* TESTIMONIALS            */
/*-------------------------*/
.testimonials {
  background: #f9f9ff;
  color: #212d42;
}
.testimonials .content-wrapper > h2 {
  color: #223044;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 22px;
  background: #fff;
  color: #1d2a33;
  border-radius: 13px;
  border: 1.5px solid #65BFA6;
  margin-bottom: 20px;
  margin-top: 0px;
  box-shadow: 0 2px 20px 0 #65bfa620;
  font-style: italic;
  min-width: 210px;
  transition: box-shadow .19s, border .18s;
}
.testimonial-card strong { color: #19c6a0; }
.testimonial-card:hover {
  border: 1.5px solid #30eec2;
  box-shadow: 0 4px 26px 0 #30eec270;
}
.testimonial-card p { color: #172837; font-size: 1.1rem; }
.testimonial-card span {
  color: #273a45;
  font-style: normal;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 700px) {
  .testimonial-card { padding: 15px 10px; }
}

/*-------------------------*/
/* BLOG SEARCH/FILTER      */
/*-------------------------*/
.blog-list div label {
  display: block;
  color: #65BFA6;
  font-weight: 700;
  margin-bottom: 6px;
}
#blog-search {
  padding: 11px 20px;
  width: 100%;
  border-radius: 13px;
  background: #212837;
  color: #efe9fa;
  border: 1.5px solid #09fbd3;
  font-size: 1rem;
  transition: border 0.18s, box-shadow 0.18s;
  margin-bottom: 12px;
}
#blog-search:focus {
  border: 1.5px solid #65BFA6;
  box-shadow: 0 0 0 2px #30eec2a7;
  outline: none;
}

/*-------------------------*/
/* CTA SECTION             */
/*-------------------------*/
.cta {
  background: #65BFA6;
  border-radius: 28px;
  box-shadow: 0 2px 24px 0 rgba(45,245,215,0.09);
  text-align: center;
  color: #223044;
  margin-bottom: 40px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta h2, .cta p { color: #24334d; }
.cta a.cta {
  background: #2A3646;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 28px;
  box-shadow: 0 0 0 2px #2A3646, 0 2px 14px #32eec260;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s;
}
.cta a.cta:hover, .cta a.cta:focus {
  background: #09fbd3;
  color: #17283b;
  box-shadow: 0 0 0 2px #09fbd3, 0 2px 24px #32eec270;
  outline: none;
}

@media (max-width: 768px) {
  .cta { border-radius: 14px; }
  .cta .content-wrapper { gap: 13px; }
}

/*--------------------------*/
/* FOOTER                   */
/*--------------------------*/
footer {
  background: #212837;
  color: #b6cad6;
  padding: 32px 0 10px 0;
  margin-top: 60px;
  position: relative;
  width: 100%;
}
footer .container { max-width: 1160px; }
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
  margin-bottom: 12px;
  margin-top: 0px;
}
footer nav a {
  color: #b6cad6;
  padding: 5px 12px;
  border-radius: 14px;
  transition: background .16s, color .16s;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  background: #283856;
  color: #65BFA6;
  outline: none;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 12px 0 16px 0;
}
footer .social-links img {
  width: 34px; height: 34px; cursor: pointer; transition: filter .18s;
  filter: drop-shadow(0 2px 8px #09fbd330);
}
footer .social-links img:hover {filter: drop-shadow(0 4px 12px #30eec2) brightness(1.16);}
footer .copyright {
  font-size: .92rem; color: #74818a; margin-top: 8px;
}

@media (max-width: 700px) {
  footer nav { gap: 8px; font-size: .9rem; justify-content: flex-start; }
  footer .social-links { gap: 13px; }
}

/*------------------------*/
/* LEGAL PAGES           */
/*------------------------*/
.legal h1, .legal h2 {
  color: #2A3646;
}
.legal {
  background: #FDF6EC;
  color: #213649;
  box-shadow: 0 8px 36px 0 rgba(215,195,175,0.12);
  border: 1.5px solid #65BFA6;
  border-radius: 24px;
  margin-bottom: 40px;
}
.legal ul {
  margin-top: 12px;
  margin-bottom: 18px;
}
.legal ul li {
  background: none;
  color: #233044;
  margin-bottom: 8px;
  padding-left: 0;
}

/*--------------------------*/
/* CONTACT INFO SECTIONS    */
/*--------------------------*/
.contact .text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 6px;
}
.contact .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact .text-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  color: #efe9fa;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.contact .text-section ul li img {
  width: 23px; height: 23px;
  filter: drop-shadow(0 0 5px #09fbd390);
}
.contact .text-section a {
  color: #30eec2;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact .text-section a:hover { text-decoration: underline; }

.info .text-section p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #efe9fa;
  font-size: 1.05rem;
}
.info .text-section img {
  width: 22px; height: 22px;
}

/*-------------------*/
/* SUCCESS MESSAGE   */
/*-------------------*/
.success-message {
  background: #30eec2;
  color: #102333;
  text-align: center;
  border-radius: 34px;
  box-shadow: 0 2px 18px #00d9b650;
  margin-bottom: 60px;
}
.success-message h1 {
  color: #102333;
}
.success-message a.cta {
  margin-top: 21px;
  display: inline-block;
  background: #213649;
  color: #fff;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 24px;
  font-size: 1.16rem;
  box-shadow: 0 0 0 2px #213649;
  transition: all .18s;
}
.success-message a.cta:hover {
  background: #00ffe7;
  color: #1e3253;
  box-shadow: 0 0 0 2px #00ffe7,0 2px 8px #09fbd370;
}

@media (max-width: 700px) {
  .success-message { border-radius: 18px; }
}

/*---------------------*/
/* BUTTONS & INTERACTIONS */
/*---------------------*/
a.cta, .cta-btn, button.cta {
  display: inline-block;
  background: #65BFA6;
  color: #213649;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.09rem;
  padding: 12px 34px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 16px #16efc648;
  transition: background .18s, color .18s, box-shadow .22s;
  cursor: pointer;
  margin-top: 10px;
}
a.cta:hover, .cta-btn:hover, button.cta:hover, a.cta:focus, .cta-btn:focus, button.cta:focus {
  background: #09fbd3;
  color: #222b38;
  box-shadow: 0 4px 24px #09fbd370;
  outline: none;
}

button, .btn, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .15s, color .15s;
  border: none;
  cursor: pointer;
}

/*----------------------*/
/* FLEXBOX SPACING (MANDATORY PATTERNS) */
/*----------------------*/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 13px; box-shadow: 0 2px 20px #16efc648; background: #192130; color: #fff; }
.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; }
@media (max-width: 900px) {
  .content-grid, .card-container, .text-image-section  { gap: 12px; }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section { flex-direction: column; gap: 10px; }
  .section { margin-bottom: 32px; padding: 20px 8px; }
}

/*-----------------------*/
/* SPACING AND LAYOUT    */
/*-----------------------*/
main .section, main > section:not(.cta):not(.hero) {
  margin-bottom: 60px;
}
@media (max-width: 700px) {
  main .section, main > section:not(.cta):not(.hero) {
    margin-bottom: 32px;
  }
}

/*-----------------*/
/* COOKIE CONSENT  */
/*-----------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #222b38;
  color: #fff;
  box-shadow: 0 -2px 20px #00000048;
  z-index: 9999;
  padding: 18px 2vw 16px 2vw;
  min-height: 68px;
  gap: 30px;
  border-top: 2.2px solid #30eec2;
  animation: cookieBounceIn .44s cubic-bezier(.55,.5,.65,1.3);
}
@keyframes cookieBounceIn {
  from { transform: translateY(120%); opacity: 0; }
  80%  { transform: translateY(-8px); }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 4 1 0;
  color: #fff;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 17px;
  padding: 9px 18px;
  border: none;
  margin: 0;
  background: #65BFA6;
  color: #1b2333;
  box-shadow: 0 2px 8px #30eec278;
  cursor: pointer;
  transition: background .18s, color .13s, box-shadow .13s;
}
.cookie-btn.settings {
  background: #263043;
  color: #f5fff7;
  border: 1.6px solid #65BFA6;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #09fbd3;
  color: #17283b;
  box-shadow: 0 3px 18px #09fbd370;
  outline: none;
}
.cookie-btn.reject {
  background: #182645;
  color: #90efe3;
  border: 1.5px solid #65BFA6;
}
.cookie-btn.reject:hover {
  background: #1d283d;
  color: #09fbd3;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .94rem;
    padding: 10px 10px 9px 8px;
  }
  .cookie-banner-buttons { gap: 6px; }
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-55%) scale(0.95);
  background: #202834;
  border-radius: 21px;
  padding: 36px 24px;
  width: 95vw; max-width: 420px;
  z-index: 10001;
  box-shadow: 0 12px 60px #131c2450,0 2px 15px #00ffe7a7;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .31s, transform .31s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1.00);
  transition: opacity .34s, transform .31s;
}
.cookie-modal h2 {
  color: #65BFA6;
  font-size: 1.28rem;
  margin-bottom: 18px;
}
.cookie-modal-close {
  display: block;
  position: absolute;
  top: 11px; right: 18px;
  font-size: 2.2rem;
  background: none; border: none;
  color: #00ffe7;
  cursor: pointer;
  transition: color .20s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #fff471; }
.cookie-categories {
  display: flex; flex-direction: column;
  gap: 22px;
  margin: 13px 0 22px 0;
}
.cookie-category {
  display: flex; flex-direction: row; align-items: center;
  gap: 13px;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #09fbd3;
  width: 20px; height: 20px;
}
.cookie-category label { color: #fff; font-weight: 500; }
.cookie-category .desc { color: #a2c8be; font-size: 0.96em; margin-left: 4px; font-weight: 400; }
.cookie-category input[disabled] + label { color: #666e6e; }
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 10px; justify-content: flex-end;
}
@media (max-width: 440px) {
  .cookie-modal { padding: 20px 6px; }
  .cookie-modal h2 { font-size: 1.07rem; margin-bottom: 9px; }
}

/*--- Utility: overlays for modal ---*/
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #0d133350;
  z-index: 10000;
  display: none;
}
.cookie-modal-backdrop.open { display: block; }

/*-------------------*/
/* ANIMATIONS AND MICRO-INTERACTIONS */
/*-------------------*/
a, button, .card, .card-container, .cta-btn, input, .feature-item {
  transition: background .13s, color .13s, box-shadow .18s, border .14s, transform .17s;
}
.card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 6px 24px #00ffe79b;
  border: 1.5px solid #09fbd3;
}
.card:focus {
  outline: 2px solid #09fbd3;
}

::-webkit-scrollbar {
  width: 10px;
  background: #18202e;
}
::-webkit-scrollbar-thumb {
  background: #25314c;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #30eec2;
}

/*--- Autofill browser styles correction ---*/
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { -webkit-box-shadow:0 0 0 1000px #222b38 inset; -webkit-text-fill-color: #fff; }

/*--------------------*/
/* MISC. TYPOGRAPHY   */
/*--------------------*/
code, pre {
  background: #222b38;
  color: #65BFA6;
  font-family: 'Fira Mono', monospace;
  font-size: 0.93rem;
  padding: 2px 5px;
  border-radius: 5px;
}

/*-------------------*/
/* ACCESSIBILITY     */
/*-------------------*/
:focus-visible { outline: 2px solid #30eec2; outline-offset: 2px; }

/*---------------------------------------------------------*/
/* END Blissful Arc Futuristic Tech Theme Styles           */
/*---------------------------------------------------------*/
