body {
    margin: 0;
    font-family: 'Frutiger', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #0a0a0a;
    color: #00ffea;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* Neon/glowing text */
  .glow-text {
    text-shadow:
      0 0 6px #00ffe7,
      0 0 12px #00ffe7,
      0 0 18px #00ffd0,
      0 0 30px #00ffd0;
  }

  /* Top Navigation Bar */
  nav {
    display: flex;
    align-items: center;
    background: #040404;
    padding: 1rem 2rem;
    border-bottom: 2px solid #00ffe7;
    box-shadow:
      0 0 18px #00ffe7;
    user-select: none;
    position: sticky;
    top: 0;
    z-index: 100;
    font-family: 'Orbitron', 'Courier New', monospace;
  }
  nav .logo {
    font-weight: 900;
    font-size: 1.75rem;
    color: #00ffe7;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-right: 4rem;
    text-shadow:
      0 0 10px #00ffe7,
      0 0 30px #00ffc7,
      0 0 40px #00ffb0;
  }
  nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.8rem;
  }
  nav ul li a {
    color: #00ffc7;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 3px;
    transition: color 0.3s ease;
    user-select: none;
  }
  nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffea;
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  nav ul li a:hover,
  nav ul li a:focus {
    color: #00ffd8;
    outline: none;
  }
  nav ul li a:hover::after,
  nav ul li a:focus::after {
    width: 100%;
  }

  /* Container for page content */
  .container {
    display: flex;
    flex-grow: 1;
    gap: 2.5rem;
    padding: 2.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
  }

  /* Left content - 66% */
  .main-content {
    flex: 2 1 66%;
    background: linear-gradient(135deg, #001014 0%, #001a1e 100%);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    color: #00ffe7;
    box-shadow:
      0 0 18px #00ffe7aa,
      inset 0 0 20px #007f7f99;
    font-family: 'Frutiger', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border: 1.5px solid #00ffce;
    backdrop-filter: saturate(180%) blur(10px);
    display: flex;
    flex-direction: column;
  }
  .main-content h1 {
    font-weight: 900;
    font-size: 3rem;
    font-family: 'Orbitron', 'Courier New', monospace;
    letter-spacing: 0.13em;
    margin-top: 0;
    color: #00ffd4;
    text-shadow:
      0 0 10px #00ffe7,
      0 0 25px #00ffc2,
      0 0 40px #00ffb0;
  }
  
  .main-content p.subtitle {
    font-weight: 400;
    font-size: 1.3rem;
    color: #40fff7cc;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }

  /* Navigation Buttons Container inside main-content */
  .nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-top: auto;
  }
  .nav-buttons button {
    flex: 1 1 130px;
    background: linear-gradient(135deg, #00f0ff 0%, #008080 100%);
    color: #010d0f;
    font-weight: 800;
    font-size: 1.15rem;
    border: none;
    border-radius: 10px;
    padding: 1.1rem 1.8rem;
    cursor: pointer;
    box-shadow:
      0 0 12px #00fff9cc,
      inset 0 0 22px #00ccccdd;
    font-family: 'Orbitron', 'Courier New', monospace;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    user-select: none;
    text-transform: uppercase;
  }
  .nav-buttons button:hover,
  .nav-buttons button:focus {
    background: linear-gradient(135deg, #00fff9, #00aaa8);
    box-shadow:
      0 0 28px #00fff9ee,
      inset 0 0 32px #00ffffee;
    outline: none;
  }

  /* Right sidebar - 33% */
  .sidebar {
    flex: 1 1 33%;
    background: linear-gradient(135deg, #001718, #002825);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    box-shadow:
      0 0 18px #00ffe799,
      inset 0 0 18px #006655cc;
    color: #00ffcc;
    display: flex;
    flex-direction: column;
    border: 1.5px solid #00ffcc;
    backdrop-filter: saturate(200%) blur(14px);
    position: relative;
    overflow: hidden;
  }
  .sidebar h2 {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-weight: 900;
    font-size: 2rem;
    color: #00ffd9;
    letter-spacing: 0.15em;
    margin-top: 0;
    margin-bottom: 2rem;
    text-shadow:
      0 0 15px #00ffe7,
      0 0 30px #00ffc2;
    user-select: none;
  }

  /* Scroll container & vertical scrolling animation */
  .ticker-wrapper {
    position: relative;
    flex-grow: 1;
    overflow: hidden;
  }
  .ticker {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    animation: scrollUp 25s linear infinite normal;
  }

  .ticker ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #00ffef;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    text-shadow:
      0 0 8px #00ffe7,
      0 0 16px #00ffce;
  }
  .ticker ul li {
    border-bottom: 1px solid #1effd8;
    padding-bottom: 0.2rem;
    padding-left: 0.5rem;
    border-left: 3px solid #00ffe7;
    line-height: 1.4;
    cursor: default;
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  .ticker ul li:hover {
    color: #00ffff;
    text-shadow:
      0 0 12px #00fff0,
      0 0 30px #00fff0;
  }
  
  .news-date {
  text-transform: uppercase;
  color: #0ff;
  opacity: 0.7;
  font-weight: 600;
  margin-bottom: 0.08rem;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.news-title {
  color: #33ffef;
  font-weight: 700;
  line-height: 1.5em;
  height: 3em;
  overflow: hidden;
  white-space: collapse;
  text-overflow: ellipsis;
  margin-bottom: 0.1rem;
  text-shadow:
    0 0 3px #1effd8,
    0 0 6px #1effd8;
  font-size: 1rem;
}

.news-excerpt {
  color: #55fff7;
  opacity: 0.6;
  font-style: italic;
  line-height: 1.5em;
  height: 3em;
  overflow: hidden;
  white-space: collapse;
  text-overflow: ellipsis;
  margin-left: 0.15rem;
  font-size: 0.85rem;
}

  /* Animation keyframes for vertical scroll */
  @keyframes scrollUp {
    from { transform: translateY(-100%); }
    to { transform: translateY(100%); }
  }

  /* Responsive */
  @media (max-width: 900px) {
    .container {
      flex-direction: column;
      padding: 1.5rem 2rem;
    }
    .main-content,
    .sidebar {
      flex: none;
      width: 100%;
      margin-bottom: 2rem;
    }
    .sidebar {
      margin-bottom: 0;
      max-height: 280px;
    }
    .nav-buttons {
      justify-content: center;
    }
    .nav-buttons button {
      flex: 1 1 160px;
    }
  }
