/* ====================================================
   KryptoFunke - style.css
   Tech Futuristic Neon CSS
   ONLY FLEXBOX LAYOUTS, Fully Responsive, Brand Colors
   No CSS Grid, columns, clamp(), grid-* properties allowed
   ==================================================== */

/* ------ CSS RESET / NORMALIZE ------ */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #10112A;
  color: #f4f6fa;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  background-color: #10112A;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #19E6FF;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #3D34A1;
}
button,
input,
select,
textarea {
  font: inherit;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
ul, ol {
  list-style-type: none;
}

/* ------ BRAND TYPOGRAPHY ------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
h1 { font-size: 2.7rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.15; }
h3 { font-size: 1.2rem; color: #19E6FF; margin-bottom: 10px; }
h4 { font-size: 1rem; color: #19E6FF; }

p, li, span, a, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #e7e8ef;
}

strong, b {
  color: #19E6FF;
  font-weight: 700;
}

/* ------ FLEX CONTAINER LAYOUTS ------ */

.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
  padding: 0;
}
.text-section {
  align-items: center;
  text-align: center;
}

.column {
  display: flex;
  flex-direction: column;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 6px 32px 0 rgba(25,230,255,0.06), 0 1.5px 6px 0 rgba(61,52,161,0.04);
  border-radius: 18px;
  background: #191B33;
  transition: box-shadow 0.27s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 #19E6FF33, 0 2px 10px 0 #3D34A133, 0 0 0px 2px #19E6FF77;
  transform: translateY(-6px) scale(1.022);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f4f6fa;
  color: #10112A;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 #19e6ff17, 0 1px 4px 0 #3D34A11a;
  border: 2px solid #19E6FF44;
}
.testimonial-card p {
  color: #1a1a2b;
  font-size: 1.05rem;
}
.testimonial-author {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
  color: #4346c0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------ HEADER & MAIN NAV ------ */
header {
  width: 100%;
  padding: 0;
  background: #10112A;
  box-shadow: 0 1px 14px 0 #10112A26;
  z-index: 810;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
  z-index: 1000;
}
.main-nav a img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px #19e6ff80);
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.main-nav ul li {
  list-style: none;
}
.main-nav ul li a:not(.cta-btn) {
  font-weight: 500;
  color: #e7e8ef;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
.main-nav ul li a:not(.cta-btn):hover, .main-nav ul li a:not(.cta-btn):focus {
  color: #19E6FF;
  background: #271bbf33;
}

.cta-btn {
  display: inline-block;
  background: #19E6FF;
  color: #10112A !important;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 32px;
  box-shadow: 0 2px 18px #19E6FF55;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
  margin-left: 8px;
  transition: background 0.14s, color 0.17s, box-shadow 0.17s, transform 0.16s;
  border: 2px solid #19E6FF;
  cursor: pointer;
  text-shadow: 0 0 6px #19E6FF44;
}
.cta-btn:hover, .cta-btn:focus {
  background: #10112A;
  color: #19E6FF !important;
  border-color: #19E6FF;
  box-shadow: 0 0 20px #19E6FF;
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 21px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: #191B33;
  color: #19E6FF;
  font-size: 2rem;
  z-index: 1101;
  box-shadow: 0 2px 13px #19E6FF11;
  border: 2px solid #3D34A1;
  transition: box-shadow 0.17s;
  cursor: pointer;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  box-shadow: 0 0 0 2px #19E6FF;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #10112AD9;
  z-index: 5000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.62, .02, .32, 1.14);
  box-shadow: 2px 0 32px #19e6ff22;
  padding: 0 0 0 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 25px 27px 18px 0;
  background: none;
  border: none;
  color: #19E6FF;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 6000;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:active {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40px;
  gap: 22px;
  margin-top: 30px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #19E6FF;
  background: none;
  border-radius: 8px;
  padding: 9px 0 9px 5px;
  transition: background 0.16s, color 0.12s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #19E6FF22;
  color: #fff;
}

@media (max-width: 1022px) {
  .main-nav ul {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 6px;
  }
  .cta-btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 860px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ------ HERO, SECTIONS, FEATURES ------ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.feature-grid > div {
  background: #191B33;
  border-radius: 15px;
  box-shadow: 0 2px 22px 0 #19E6FF22;
  padding: 26px 18px 22px 18px;
  flex: 1 1 235px;
  min-width: 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  border: 2px solid #232555;
  transition: border 0.21s, box-shadow 0.17s, transform 0.18s;
}
.feature-grid > div:hover {
  border-color: #19E6FF;
  box-shadow: 0 2px 38px #19E6FF44, 0 8px 22px #3d34a155;
  transform: translateY(-3px) scale(1.035);
}
.feature-grid img {
  height: 46px;
  width: 46px;
  margin-bottom: 9px;
  filter: drop-shadow(0 0 9px #19e6ff90);
}

.statistics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  margin-bottom: 12px;
}
.stat-card {
  min-width: 180px;
  background: #181935;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 #19e6ff22;
  border: 2px solid #232555;
  padding: 17px 0 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  gap: 2px;
  transition: border 0.16s, box-shadow 0.14s;
}
.stat-card:hover {
  border: 2px solid #19E6FF;
  box-shadow: 0 4px 24px #19E6FF44;
}
.stat-card h3 {
  color: #19E6FF;
  font-size: 2rem;
}
.stat-card p {
  color: #e7e8ef;
  font-size: 1.08rem;
}

.up-trend {
  color: #3FFFBF;
  margin-left: 6px;
  text-shadow: 0 0 9px #19E6FF88;
  font-weight: 700;
}
.down-trend {
  color: #F22E7A;
  margin-left: 6px;
  text-shadow: 0 0 9px #f22e7a88;
  font-weight: 700;
}

.market-data-glow-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
  margin-bottom: 27px;
}
.market-data-glow-cards > div {
  background: #10112A;
  border: 2px solid #19E6FF33;
  border-radius: 12px;
  box-shadow: 0 2px 19px 0 #19E6FF33;
  padding: 16px 22px;
  min-width: 133px;
  text-align: center;
  color: #fff;
}
.market-data-glow-cards h4 {
  color: #19E6FF;
  margin-bottom: 7px;
}

.steps-list, .next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 32px 0 0 0;
}
.steps-list li, .next-steps-list li {
  font-size: 1.07rem;
  color: #f4f6fa;
  display: flex;
  align-items: center;
}
.step-glow {
  color: #19E6FF;
  background: #232555;
  border-radius: 50%;
  padding: 0 13px;
  margin-right: 16px;
  font-size: 1.14rem;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 14px #19E6FF88, 0 1px 4px #3D34A122;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.team-member-card {
  background: #181935;
  border: 2px solid #232555;
  border-radius: 13px;
  box-shadow: 0 1px 14px 0 #19E6FF10;
  padding: 22px 18px 15px 18px;
  flex: 1 1 270px;
  min-width: 210px;
  max-width: 300px;
  margin-bottom: 20px;
}
.team-member-card h3 {
  margin-bottom: 7px;
  color: #19E6FF;
  font-size: 1.17rem;
}

.unique-value-list, .team-values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.security-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.security-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audit-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.certifications {
  display: flex;
  gap: 18px;
  margin-top: 6px;
  color: #19E6FF;
  font-weight: 700;
}

.markttableau {
  margin-bottom: 38px;
}
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 11px;
}
.filter-tabs button {
  background: #232555;
  color: #19E6FF;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.14s;
}
.filter-tabs button:hover, .filter-tabs button:focus {
  background: #19E6FF;
  color: #10112A;
  box-shadow: 0 2px 16px #19E6FF55;
}

.markttableau table, .pricing-table table, .comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #181935;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1px 18px #19E6FF18;
  margin-bottom: 20px;
}
.markttableau th, .pricing-table th, .comparison-table th {
  background: #191B33;
  color: #19E6FF;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid #232555;
  font-size: 1.07rem;
}
.markttableau td, .pricing-table td, .comparison-table td {
  padding: 12px 15px;
  color: #e7e8ef;
  border-bottom: 1px solid #232555;
  font-size: 1rem;
}
.markttableau tbody tr:nth-child(even),
.pricing-table tbody tr:nth-child(even) {
  background: #181935dd;
}

/***** FAQ LISTS AND GLOW CARDS *****/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  flex: 1 1 330px;
  min-width: 250px;
  background: #1f2242;
  border-radius: 13px;
  border: 1.5px solid #232555;
  padding: 22px 17px 17px 18px;
  box-shadow: 0 1px 8px #19E6FF14;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.faq-item:hover {
  box-shadow: 0 3px 36px #19E6FF55;
}

.glow-highlight-boxes, .price-comparison-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: center;
}
.glow-highlight-boxes > div, .price-comparison-cards > div {
  background: #10112A;
  border: 2px solid #19E6FF22;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 #19E6FF33;
  padding: 17px 21px;
  min-width: 150px;
  text-align: center;
  color: #fff;
}
.glow-highlight-box {
  background: #191B33;
  border: 2px solid #19E6FF44;
  border-radius: 13px;
  box-shadow: 0 0 14px 4px #19E6FF22;
  padding: 17px 21px;
  margin-top: 22px;
}
.glow-highlight-box strong {
  color: #19E6FF;
}

.unique-benefits-glow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px 0 0 0;
}
.unique-benefits-glow li {
  background: #232555;
  color: #19E6FF;
  border-radius: 13px;
  padding: 9px 18px;
  letter-spacing: 0.02em;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
  font-size: 1.08rem;
  box-shadow: 0 2px 14px #19E6FF42;
}

/***** SPECIAL ELEMENTS AND BADGES *****/
.market-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0 0;
  justify-content: center;
}
.market-search-bar input[type="text"] {
  background: #181935;
  border: 2px solid #232555;
  border-radius: 14px;
  padding: 13px 23px;
  color: #19E6FF;
  font-size: 1.13rem;
  margin-right: 4px;
  min-width: 250px;
  transition: border 0.18s;
}
.market-search-bar input[type="text"]:focus {
  border: 2px solid #19E6FF;
}
.market-search-bar input[disabled] {
  opacity: 0.85;
}

.deep-feature-details {
  background: #181935;
  border: 1.5px solid #232555;
  border-radius: 13px;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 1px 10px #19e6ff17;
  margin-top: 12px;
}

.signup-form-glow {
  background: #191B33;
  border: 2px solid #3D34A1;
  border-radius: 15px;
  box-shadow: 0 2px 22px #3D34A155,0 4px 42px #19E6FF18;
  padding: 26px 22px 21px 21px;
  margin-bottom: 20px;
}
.guide-box h2 {
  font-size: 1.3rem;
  color: #19E6FF;
  margin-bottom: 11px;
}

/***** CONTACT, ADDRESS & SUPPORT ELEMENTS *****/
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px 0 25px 0;
  justify-content: center;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #191B33;
  border-radius: 9px;
  border: 1.3px solid #232555;
  padding: 9px 19px;
  color: #19E6FF;
}
.address-box {
  margin-top: 17px;
  background: #10112A;
  padding: 14px;
  border-radius: 8px;
  border: 2px solid #19E6FF11;
  color: #19E6FF;
  font-size: 1.01rem;
}

.support-options, .faq-links {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.support-options li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #232555;
  border-radius: 9px;
  color: #19E6FF;
  font-size: 1.07rem;
  padding: 7px 13px 7px 14px;
  min-width: 180px;
}
.faq-links {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin: 12px 0 0 0;
}
.live-chat-badge {
  display: flex;
  align-items: center;
  background: #19E6FF;
  color: #10112A;
  border-radius: 13px;
  padding: 8px 18px 8px 12px;
  gap: 15px;
  font-weight: bold;
  box-shadow: 0 2px 18px #19E6FF33;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  margin-top: 22px;
}

/***** FOOTER NAV, CONTACT, NEWSLETTER *****/
footer {
  background: #191B33;
  padding: 45px 0 8px 0;
  margin-top: 45px;
  color: #e7e8ef;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #232555;
  margin-bottom: 22px;
  font-size: 1.02rem;
}
.footer-nav nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #19E6FF;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer-contact img {
  height: 16px;
  width: auto;
}
.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  background: #10112A;
  border-radius: 9px;
  padding: 15px 12px 15px 23px;
  box-shadow: 0 2px 8px #19E6FF22;
  margin-top: 10px;
}
.newsletter-signup p {
  color: #fff;
}

/**********************
RESPONSIVE DESIGN
***********************/
@media (max-width: 768px) {
  h1 { font-size: 2.17rem; }
  h2 { font-size: 1.47rem; }
  .main-nav, .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .feature-grid, .statistics-grid, .card-container, .content-grid, .team-cards, .glow-highlight-boxes, .price-comparison-cards, .market-data-glow-cards {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .newsletter-signup {
    align-items: stretch;
  }
  .testimonial-card {
    padding: 16px 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .content-wrapper {
    padding-left: 2px;
    padding-right: 2px;
  }
  .faq-list {
    flex-direction: column;
    gap: 13px;
  }
  .mobile-nav {
    padding-left: 23px;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1px;
    padding-right: 1px;
  }
  .footer-nav nav {
    gap: 13px;
    flex-wrap: wrap;
  }
  .market-search-bar input[type="text"] {
    min-width: 120px;
    font-size: 0.95rem;
    padding: 9px 8px;
  }
}

/******** ANIMATIONS & HOVER INTERACTIONS ********/
.card, .feature-grid > div, .stat-card, .team-member-card, .glow-highlight-boxes > div, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.13s, border-color 0.13s;
}
.card:focus-within, .feature-grid > div:focus-within, .stat-card:focus-within {
  box-shadow: 0 1px 16px #19E6FF55;
  border-color: #19E6FF;
}
.cta-btn, .filter-tabs button, .mobile-nav a {
  transition: background 0.17s, color 0.16s, box-shadow 0.17s, transform 0.14s;
}

/******** TABLE STYLE OVERRIDES ********/
table {
  width: 100%;
  border-spacing: 0;
  margin-top: 12px;
}
th, td {
  text-align: left;
  padding: 12px 14px;
}
thead th {
  border-bottom: 2px solid #10112A;
  font-size: 1.09rem;
}

/********* MINI DISCLAIMERS ***********/
.mini-disclaimer {
  color: #c7cbdf;
  font-size: 0.98rem;
  margin-top: 9px;
}

/***** PRIVACY / TERMS / HIGHLIGHT LISTS *****/
.summary-points, .data-rights-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 9px;
}
.privacy-text, .terms-text, .gdpr-text, .cookie-policy-text, .cookie-settings-panel {
  background: #191B33;
  border-radius: 11px;
  padding: 23px 17px;
  margin-bottom: 17px;
  border: 1.5px solid #232555;
  box-shadow: 0 2px 8px #19e6ff11;
}
.data-rights-highlight {
  margin-top: 17px;
  background: #10112A;
  border-radius: 10px;
  border: 1.5px solid #232555;
  padding: 17px 13px;
  color: #19E6FF;
}

/**********************
COOKIE CONSENT BANNER
***********************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: #191B33;
  color: #e7e8ef;
  padding: 22px 18px;
  box-shadow: 0 -4px 32px #19E6FF44;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top: 3px solid #19E6FF22;
  font-size: 1rem;
  animation: cookieBannerIn 0.44s cubic-bezier(.68,.01,.26,1.11);
}
@keyframes cookieBannerIn {
  from {transform: translateY(80px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner .cookie-btn-row {
  display: flex;
  gap: 17px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-consent-banner button {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 17px;
  border: 2px solid #19E6FF;
  background: #10112A;
  color: #19E6FF;
  cursor: pointer;
  font-size: 1.07rem;
  margin-right: 8px;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
}
.cookie-consent-banner button.accept {
  background: #19E6FF;
  color: #10112A;
  box-shadow: 0 1px 14px #19E6FF33;
}
.cookie-consent-banner button.accept:hover, .cookie-consent-banner button.accept:focus {
  background: #10112A;
  color: #19E6FF;
}
.cookie-consent-banner button.reject {
  background: #232555;
  color: #19E6FF;
  border-color: #232555;
}
.cookie-consent-banner button.reject:hover, .cookie-consent-banner button.reject:focus {
  background: #10112A;
}
.cookie-consent-banner button.settings {
  background: #10112A;
  border: 2px solid #3D34A1;
  color: #3D34A1;
}
.cookie-consent-banner button.settings:hover, .cookie-consent-banner button.settings:focus {
  background: #3D34A1;
  color: #fff;
}

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  z-index: 9100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #10112AAC;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal {
  background: #191B33;
  border-radius: 19px;
  border: 2px solid #19E6FF;
  box-shadow: 0 2px 38px #19E6FF44;
  max-width: 420px;
  width: 95vw;
  padding: 38px 28px 29px 28px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  color: #e7e8ef;
  position: relative;
  animation: modalIn 0.43s cubic-bezier(.68,.01,.26,1.11);
}
@keyframes modalIn {
  from {transform: translateY(80px) scale(0.99); opacity: 0;}
  to {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 17px;
  right: 27px;
  background: none;
  border: none;
  font-size: 1.48rem;
  color: #19E6FF;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #19E6FF;
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category .toggle {
  width: 44px;
  height: 22px;
  background: #232555;
  border-radius: 17px;
  position: relative;
  margin-left: auto;
  margin-right: 10px;
}
.cookie-modal .cookie-category .toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-category .toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #10112A;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-modal .cookie-category .toggle input[type="checkbox"]:checked + .slider {
  left: 24px;
  background: #19E6FF;
}
.cookie-modal .category-label {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  color: #19E6FF;
  font-weight: 600;
}
.cookie-modal .category-description {
  font-size: 0.99rem;
  color: #e7e8ef;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 13px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-modal-actions button {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  border-radius: 15px;
  padding: 8px 17px;
  border: 2px solid #19E6FF;
  color: #19E6FF;
  background: #10112A;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal .cookie-modal-actions button.accept {
  background: #19E6FF;
  color: #10112A;
}
.cookie-modal .cookie-modal-actions button.accept:hover, .cookie-modal .cookie-modal-actions button.accept:focus {
  background: #10112A;
  color: #19E6FF;
}
.cookie-modal .cookie-modal-actions button.cancel {
  background: #f4f6fa;
  color: #3D34A1;
  border-color: #e7e8ef;
}
.cookie-modal .cookie-modal-actions button.cancel:hover, .cookie-modal .cookie-modal-actions button.cancel:focus {
  background: #10112A;
  color: #19E6FF;
  border-color: #19E6FF;
}

/********* INPUTS & FORM FIELDS (Registration) ************/
input, select, textarea {
  border: 2px solid #232555;
  border-radius: 13px;
  background: #191B33;
  color: #19E6FF;
  padding: 11px 17px;
  font-size: 1.11rem;
  margin-bottom: 19px;
  transition: border 0.14s;
}
input:focus, select:focus, textarea:focus {
  border-color: #19E6FF;
  outline: none;
}

/***** UTILITY CLASSES *****/
.text-accent, .accent {
  color: #19E6FF !important;
}
.text-secondary {
  color: #3D34A1 !important;
}
.bg-accent {
  background-color: #19E6FF !important;
  color: #10112A !important;
}
.bg-secondary {
  background-color: #3D34A1 !important;
}
.bg-dark {
  background-color: #10112A !important;
}

/****** HIDE ELEMENT UTILITY ******/
.hide, [hidden] {
  display: none !important;
  visibility: hidden !important;
}

/****** SELECTED STATE EMPHASIS ******/
.selected, .active {
  border-color: #19E6FF !important;
  box-shadow: 0 1px 18px #19E6FF77 !important;
  background: #19E6FF22 !important;
}

/**** ANSI TEXT OVERRIDES for table ticks ****/
td, th {
  vertical-align: middle;
}
td:has(.up-trend), td:has(.down-trend) {
  font-weight: 700;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
}

/****** END ******/
