/* General Dark Theme Styles */
    body {
      background-color: #121213;
      color: #e0e0e0; /* Light text color for readability */
    }
    a, a:hover, a:focus, a:active {
      color: #ffffff;
      text-decoration: none;
    }
    
    /* Hero section styling */
    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../dist/images/ocean.gif') no-repeat center center/cover;
      color: #ffffff;
      padding: 100px 0;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    .hero p {
      font-size: 1.3rem;
    }

    /* Card and Section Styling */
    .card {
      background-color: #1e1e1e; /* Dark card background */
      color: #e0e0e0;
      transition: transform 0.3s, box-shadow 0.3s;
        
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    }

    section h2 {
      font-size: 2rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 1rem;
      text-align: center;
    }
    section p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 2rem auto;
      color: #b0b0b0; /* Slightly muted for body text */
    }

    /* Button styling for Dark Theme */
    .btn-primary {
      background-color: #0066cc;
      border-color: #0066cc;
    }
    .btn-primary:hover {
      background-color: #005bb5;
      border-color: #005bb5;
    }

    .btn-success {
      background-color: #28a745;
      border-color: #28a745;
    }
    .btn-success:hover {
      background-color: #218838;
      border-color: #218838;
    }

    /* Background for light text sections */
    .bg-light {
      background-color: #2b2b2b !important;
      color: #e0e0e0;
    }

.update-card {
      border-left: 4px solid #0066cc; /* Accent border for version updates */
      background-color: #1e1e1e;
      color: #e0e0e0;
      margin-bottom: 20px;
    }
    .update-card-header {
      background-color: #121213;
      color: #ffffff;
      padding: 10px 15px;
      font-size: 1.1rem;
      font-weight: bold;
    }
    .update-card-body {
      padding: 15px;
    }

#donate {
    color: #343a40;
}

#donate h2 {
    color: #0066cc;
}

#donate .btn-primary {
    background-image: linear-gradient(45deg, #0066cc, #0099ff);
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#donate .btn-primary:hover {
    background-image: linear-gradient(45deg, #005bb5, #007acc);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
