  body {
    margin: 0;
    background-color: #043729; /*043729*/
    color: #fff5ee;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .toolbar {
    background-color: #0F1C1A; /*004D40, 2F4073, 0A2F28, 0F1C1A*/
    padding: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 603628;
  }

  .toolbar-side {
    width: 50px; /* same as logo width */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .toolbar-side-right {
    width: 25px; /* same as logo width */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Toolbar Navigation */
  .toolbar-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition);
  }

  .nav-link:hover {
    transform:scale(1.1);
    transition: transform 0.2s;
  }
  .nav-link:focus {
    color: var(--accent-color);
  }

  /* Ensure smooth scrolling behavior */
  html {
    scroll-behavior: smooth;
  }

  /* Optional: Adjust target sections to account for toolbar height */
  :target {
    scroll-margin-top: 100px; /* CSS-only fallback, but may not be precise with fixed toolbar */
  }

  .logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }

  .logo-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-tooltip-wrapper {
    position: relative;
    display: inline-block;
  }

  .tooltip-text-right {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
    padding: 4px 8px;
    border-radius: 4px;
    position: absolute;
    left: 70px; /* Push it to the right of the logo */
    top: 100%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .logo-tooltip-wrapper:hover .tooltip-text-right {
    visibility: visible;
    opacity: 1;
  }

  .tooltip-text-left {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
    padding: 4px 8px;
    border-radius: 4px;
    position: absolute;
    right: 70px; /* Push it to the left of the logo */
    top: 100%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .logo-tooltip-wrapper:hover .tooltip-text-left {
    visibility: visible;
    opacity: 1;
  }

  .main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding-top: calc(64px + 1rem);
  }

  .validator-blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .validator-block {
    width: 150px;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
  }

  .validator-block:hover {
    transform: scale(1.05);
  }

  .validator-block-past {
    width: 150px;
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    filter: grayscale(75%);
    transition: filter 0.5s ease;
  }

  .validator-block-past:hover {
    transform: scale(1.05);
    filter: none;
  }

  .validator-title {
    font-size: 0.9rem;
    font-weight: bold;
    padding-bottom: 6px;
  }

  .validator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .validator-links {
    display: flex;
    justify-content: space-around;
    gap: 0.25rem;
    flex-wrap: wrap;
  }

  .validator-link {
    font-size: 0.75rem;
    color: #fff5ee;
    text-decoration: none;
    background-color: rgba(37, 43, 45, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 2px 6px;
    transition: background-color 0.2s;
  }

  .validator-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .footer {
    background-color: #0F1C1A;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
  }

  .social-links a {
    color:inherit;
    font-size:24px;
    text-decoration:none;
    display:inline-block;
    width:48px;
    height:40px;
    border-radius:50%;
    background-color:var(--content-color);
    transition:transform .3s,background-color .3s
  }

  .social-links a:hover {
    transform:scale(1.1);
    background-color:var(--button-hover)
  }