
    body {
      color: #909596;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      font-family: Arial, sans-serif;
      background: #212121;
      transition: background 0.5s;
	  font-size: 0.9rem;
	  line-height: 1.6; /* Adjust this value as needed */
		overflow-x: hidden;
		 overflow-x: hidden;
  width: 100vw;
  max-width: 100vw;
    }
	  
	  img, .main-img {
  max-width: 100%;
  height: auto;
  display: block;
}
	  
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px 10px 20px;
      width: 100%;
    }
    .app-title {
      font-family: 'Allerta Stencil', sans-serif;
      font-size: 1.3rem;
      font-weight: normal;
      margin-bottom: 0px;
      letter-spacing: 2px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.6);
		line-height: 1.1;
    }
    .app-subtitle {
      font-size: 0.9rem;
      font-weight: 300;
      color: #909596;
      margin-bottom: 30px;
      letter-spacing: 1px;
      font-family: Arial, sans-serif;
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }
    .main-img {
      max-width: 650px;
      margin-bottom: 30px;
      background: transparent;
      box-shadow: none;
    }
    .button-container {
      display: flex;
      gap: 20px;
      margin-bottom: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .download-button {
      background-color: #1e88e5;
      border: none;
      color: white;
      padding: 15px 30px;
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-family: Arial, sans-serif;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      margin-bottom: 10px;
    }
    .download-button:hover {
      background-color: #1565c0;
    }
    .cta {
      margin: 20px 0;
      text-align: center;
    }
    .cta button {
      background: #d32f2f;
      color: #fff;
      padding: 0.8rem 1.5rem;
      border-radius: 5px;
      border: none;
      font-weight: bold;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background 0.2s;
    }
    .cta button:hover {
      background: #b71c1c;
    }
    .forum-instructions {
      text-align: center;
      color: #8C9392;
      margin-top: 0.5rem;
      margin-bottom: 2rem;
      font-size: .9rem;
      max-width: 600px;
      padding: 10px;
    }
    .forum-instructions strong {
      color: #B8C3C3;
    }
    a {
      color: #90caf9;
    }
    /* Lightbox styles */
    .lightbox-overlay {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0; top: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.85);
      justify-content: center;
      align-items: center;
      overflow: auto;
      padding: 20px;
    }
    .lightbox-overlay.active {
      display: flex;
    }
    .lightbox-content {
      background: #23272a;
      color: #8C9392;
      border-radius: 12px;
      max-width: 700px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 6px 32px rgba(0,0,0,0.4);
      padding: 2rem;
      position: relative;
      animation: fadeIn 0.3s;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.97);}
      to { opacity: 1; transform: scale(1);}
    }
    .lightbox-content h2 {
      color: #ffb300;
	  font-size: 1.0rem;
      font-family: 'Allerta Stencil', Arial, sans-serif;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
    }
    .lightbox-content ul {
      columns: 2;
      gap: 2rem;
      padding-left: 1.2rem;
      margin-bottom: 1.5rem;
    }
    @media (max-width: 700px) {
      .lightbox-content ul {
        columns: 1;
      }
      .lightbox-content {
        padding: 1rem;
      }
      .main-img {
        max-width: 85vw;
      }
    }
    .close-btn {
      position: absolute;
      top: 16px;
      right: 18px;
      background: transparent;
      color: #fff;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      font-weight: bold;
      line-height: 1;
      transition: color 0.2s;
    }
    .close-btn:hover {
      color: #ffb300;
    }
    .note {
      background: #fff3e0;
      color: #bf360c;
      border-left: 4px solid #d32f2f;
      padding: 1rem;
      margin: 2rem 0 1rem 0;
      border-radius: 5px;
      font-size: 1rem;
    }
 