/* Base Styles */
html {
    height: 100%;
    overflow-x: hidden;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #0E1015;
    color: #999CA3; /* Slightly lighter text for contrast */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Skeleton .container override + base layout */
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px; /* Default for main content, but NOT used in the nav */
  }
  
  /* Nav Bar / Header */
  .nav-bar {
    width: 100%;
    background-color: #13151b;
    border-bottom: 1px solid #202328;
    min-height: 80px; /* The height of the nav bar */
    display: flex;
    align-items: center;        /* Vertical center */
    justify-content: center;    /* Horizontal center */
  }
  
  .nav-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .logo-img {
    max-height: 40px;
  }
  
  /* Main Container */
  .app-container {
    margin-top: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  /* Heading Container */
  .container-heading {
    margin-bottom: 0px;
  }
  
  /* Main Content Container */
  .container-main-content {
    flex: 1;
    background-color: #13151b;
    border: 1px solid #202328;
    border-radius: 5px;
    padding: 20px;
  }
  
  /* Typography - Desktop Default */
  h1, h2, h3, h4, h5, h6 {
    color: #EBECF0;
    margin-top: 0;
    font-weight: 600; /* headings = 600 */
  }
  
  h1 {
    font-size: 2.5rem; /* ~40px */
  }
  
  h2 {
    font-size: 2rem;   /* ~32px */
  }
  
  h3 {
    font-size: 1.5rem; /* ~24px */
  }
  
  p {
    color: #999CA3;
    line-height: 1.6;
    font-weight: 500; /* paragraphs = 500 */
  }
  
  /* Ad Sidebar */
  .ad-sidebar {
    text-align: center;
  }
  
  .ad-banner {
    max-width: 320px;
    width: 100%;
    margin: 0 auto 20px;
  }
  
  .ad-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; /* Optional rounding */
  }
  
  /* FOOTER */
  footer {
    background: #13151b;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 1px solid #202328;
  }
  
  /* 
     Footer disclaimers, text, and links:
     - font-size: 12px
     - color: #999CA3
     - hover color: #898D94
  */
  footer p,
  footer li,
  footer a {
    font-size: 12px;
    color: #999CA3;
    text-decoration: none;
  }
  
  footer a {
    display: inline-block;
    min-width: 120px;
    padding: 8px 0;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #898D94; /* Smooth hover color */
  }
  
  footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  footer li {
    margin-bottom: 12px;
  }
  
  .footer-quick-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between links */
    padding: 0;
    margin: 0;
  }
  
  /* Center & smaller font for final row */
  .copy-row {
    margin-top: 20px;
    text-align: center;
  }
  
  .copy-row .columns {
    font-size: 10px; /* final request */
  }
  
  /* REVERSE columns for devices <= 768px so ads appear first, then content */
  .reverse-mobile {
    /* We'll handle the flex logic in the media query below */
  }
  
  /* MEDIA QUERIES / RESPONSIVE */
  @media (max-width: 768px) {
    /* Container: add top/bottom padding, reduce horizontal for tablets */
    .container {
      padding: 20px 15px;
    }
  
    h1 {
      font-size: 2rem;    /* ~32px */
    }
    h2 {
      font-size: 1.75rem; /* ~28px */
    }
    h3 {
      font-size: 1.25rem; /* ~20px */
    }
  
    .ad-sidebar {
      margin-top: 30px;
    }
  
    /* REORDER columns on screens <= 768px so ads-col is shown first */
    .reverse-mobile {
      display: flex;       /* override Skeleton's float model */
      flex-wrap: wrap;
    }
    .reverse-mobile .ads-col {
      order: 1;
    }
    .reverse-mobile .content-col {
      order: 2;
    }
    .reverse-mobile .columns {
      float: none !important;
      width: 100% !important;
    }
  }
  
  @media (max-width: 480px) {
    /* Container: keep top/bottom 20px, further reduce horizontal to 10px */
    .container {
      padding: 20px 10px;
    }
  
    h1 {
      font-size: 1.75rem;  /* ~28px */
    }
    h2 {
      font-size: 1.5rem;   /* ~24px */
    }
    h3 {
      font-size: 1.125rem; /* ~18px */
    }
  
    /* Stack quick links vertically on extra-small screens */
    .footer-quick-links {
      flex-direction: column;
      align-items: center;
    }
  }
  
  /* Responsive Images */
  img {
    max-width: 100%;
    height: auto;
  }

  .intro-background-image {
    max-width: 100%;
    height: auto;
    display: block; /* if you want to remove potential inline spacing */
    margin: 1em 0;  /* optional spacing around the image */
  }

  ul li::marker {
    color: #FF003D;
  }
  

  #CybotCookiebotDialog button,
  #CybotCookiebotDialog input[type="submit"],
  #CybotCookiebotDialog input[type="reset"],
  #CybotCookiebotDialog input[type="button"] {
    height: auto;
    line-height: 24px;
    letter-spacing: 0.1px;
    text-transform: none;
    white-space: normal;
  }