body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #0e0f1a;
    color: #f0f0f0;
    padding: 0 16px;
  }
  
  header {
    background-color: #121629;
    padding: 20px;
    border-bottom: 2px solid #00bfff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    margin-top: 16px;
  }
  
  header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #00bfff;
    margin: 0;
  }
  
  header button {
    background: linear-gradient(145deg, #00bfff, #007acc);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  header button:hover {
    background: #008cdd;
  }
  
  main {
    margin-top: 30px;
  }
  
  h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #89caff;
  }
  
  .posts-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .post {
    background-color: #1b1d30;
    border: 1px solid #2c3551;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.2);
  }
  
  .post p {
    margin: 6px 0;
  }
  
  .post button {
    background-color: #00bfff;
    border: none;
    padding: 8px 14px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
  }
  
  .post button:hover {
    background-color: #009acd;
  }
  