* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #222;
    flex-wrap: wrap;
  }
  
  .logo-container {
    flex: 1;
  }
  
  .logo {
    height: 40px;
  }
  
  h1 {
    flex: 2;
    text-align: center;
    font-size: 24px;
    color: #0ff;
  }
  
  nav {
    flex: 1;
    text-align: right;
  }
  
  .navbar {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
  }
  
  .navbar li a {
    color: #0ff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .navbar li a:hover {
    color: #fff;
  }
  
  .content-box {
    background-color: #1a1a1a;
    margin: 50px auto;
    padding: 30px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    text-align: center;
  }
  
  .scripts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }
  
  .script-box {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    transition: transform 0.2s ease;
  }
  
  .script-box:hover {
    transform: translateY(-5px);
  }
  
  .script-box h3 {
    color: #0ff;
    margin-bottom: 10px;
  }
  
  .script-box p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #ccc;
  }
  
  .script-box button {
    padding: 8px 16px;
    background-color: #0ff;
    border: none;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .script-box button:hover {
    background-color: #00cccc;
  }
  
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
    }
  
    nav {
      text-align: center;
      margin-top: 10px;
    }
  
    .navbar {
      flex-direction: column;
      gap: 10px;
    }
  
    .script-box {
      width: 90%;
    }
  }
  