/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #6c3d70;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  h1 {
    text-align: center;
    color: #e3ddea;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  /* Discord Icon */
  .discord-icon {
    text-align: center;
    margin: 20px 0;
  }
  
  .discord-icon img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
  }
  
  .discord-icon img:hover {
    transform: scale(1.1);
  }
  
  /* Table Styles */
  table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #2c2c2c;
    color: #e0e0e0;
  }
  
  table, th, td {
    border: 1px solid #444;
  }
  
  th, td {
    padding: 12px;
    text-align: left;
    font-size: 1.1rem;
  }
  
  th {
    background-color: #bb86fc;
    color: #1a1a1a;
    font-weight: 700;
  }
  
  tr:nth-child(even) {
    background-color: #333;
  }
  
  tr:hover {
    background-color: #444;
  }
  
  /* Image Sections */
  .image-section {
    margin: 20px 0;
    padding: 15px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  .image-section p {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 500;
  }
  
  .image-section img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 10px 0;
    border-radius: 8px;
  }
  
  /* Call-to-Action Button */
  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #bb86fc;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #9c6fdb;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #2c2c2c;
    color: #e0e0e0;
    border-top: 1px solid #444;
    font-size: 1.1rem;
  }
  
  footer a {
    color: #bb86fc;
    text-decoration: none;
    font-weight: 600;
  }
  
  footer a:hover {
    text-decoration: underline;
  }