/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  body.dark-mode {
    background-color: #1a1a1a;
    color: #f4f4f4;
  }
  
  nav {
    background: #005f40; /* Home page color */
    padding: 1rem;
    text-align: center;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  nav ul li {
    display: inline;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  #theme-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s;
  }
  
  #theme-toggle:hover {
    transform: scale(1.1);
  }
  
  .page {
    display: none;
    padding: 2rem;
    text-align: center;
    flex: 1;
  }
  
  .page.active {
    display: block;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
  }
  
  .home-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .logo-box {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
  }
  
  .logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .logo-box img {
    width: 150px; /* Fixed size for logos */
    height: 150px; /* Fixed size for logos */
    border-radius: 10px;
    object-fit: cover; /* Ensures the image fills the square */
  }
  
  .logo-box h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.5rem;
    color: #005f40; /* Home page color */
  }
  
  .logo-box p {
    font-size: 1rem;
    color: #555;
    margin: 0;
  }
  
  .logo-box a {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #005f40; /* Home page color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .logo-box a:hover {
    background-color: #004830; /* Darker shade for hover */
  }
  
  .calculator {
    margin-top: 2rem;
  }
  
  .calculator input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .calculator input:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
    outline: none;
  }
  
  .calculator p {
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  
  .dummy-numbers {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .dummy-numbers button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background-color: #007bff; /* Default color */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .dummy-numbers button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
  }
  
  .details {
    margin-top: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #007bff, #00bfff);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    color: white;
    transition: background 0.3s;
  }
  
  .details p {
    margin: 0.75rem 0;
    font-size: 1.1rem;
  }
  
  .details strong {
    font-weight: 600;
  }
  
  .video-placeholder {
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .video-placeholder iframe {
    width: 100%;
    height: 225px;
    border-radius: 15px;
    border: none;
  }
  
  footer {
    margin-top: auto;
    padding: 1rem;
    background: #005f40; /* Home page color */
    color: white;
    text-align: center;
    font-size: 0.9rem;
    transition: background 0.3s;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Dark Mode Styles */
  body.dark-mode nav {
    background: #004830; /* Darker shade for dark mode */
  }
  
  body.dark-mode .home-description {
    color: #ddd;
  }
  
  body.dark-mode .logo-box {
    background: #444;
  }
  
  body.dark-mode .logo-box h3 {
    color: #005f40; /* Home page color */
  }
  
  body.dark-mode .logo-box p {
    color: #ddd;
  }
  
  body.dark-mode .logo-box a {
    background-color: #005f40; /* Home page color */
  }
  
  body.dark-mode .logo-box a:hover {
    background-color: #004830; /* Darker shade for hover */
  }
  
  body.dark-mode .calculator input {
    background-color: #444;
    color: #f4f4f4;
    border-color: #555;
  }
  
  body.dark-mode .dummy-numbers button {
    background-color: #555;
  }
  
  body.dark-mode .dummy-numbers button:hover {
    background-color: #444;
  }
  
  body.dark-mode .details {
    background: linear-gradient(135deg, #444, #666);
  }
  
  body.dark-mode footer {
    background: #004830; /* Darker shade for dark mode */
  }
  
  /* Cashout and Bank Options */
  .mfs-option {
    margin-bottom: 1rem;
  }
  
  .mfs-option label {
    font-size: 1rem;
    margin-right: 0.5rem;
  }
  
  .mfs-option select {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
  }
  
  .mfs-option select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  }
  body {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }