    body {
      background-color: #1e1e24;
      color: #d3d3d9;
      margin: 0; padding: 0;
    }
    .container {
      max-width: 1080px;
      margin: 0 auto;
      padding: 20px 15px;
    }
    h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 10px;
      border-bottom: 4px solid #575c66;
      padding-bottom: 12px;
    }
    h2 {
      font-size: 2rem;
      border-bottom: 2px solid #575c66;
      padding-bottom: 8px;
      margin-top: 60px;
      margin-bottom: 20px;
    }
    p.intro {
      color: #bbb;
      font-size: 1.15rem;
      margin-bottom: 30px;
      line-height: 1.5;
    }
    .daily-tip {
      background: #333;
      padding: 10px 15px;
      color: #d3d3d9;
      border-left: 4px solid #8b9a8b;
      max-width: 700px;
      margin: 0 auto 30px;
      font-style: italic;
      font-size: 1.1rem;
    }
    .daily-tip a {
      color: #a8c0a0;
      text-decoration: underline;
      font-weight: bold;
    }
    .last-used {
      background-color: #2b2c34;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
    }
    .last-used-icon {
      font-size: 48px;
    }
    .last-used-info strong {
      font-size: 1.3rem;
      display: block;
      margin-bottom: 6px;
    }
    .tools-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
    }
    .tool-card {
      background-color: #2b2c34;
      border-radius: 16px;
      padding: 20px;
      width: 280px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.8);
      cursor: pointer;
      transition: 0.3s ease;
      text-align: center;
    }
	.tool-card:hover {
  transform: scale(1.05);
  box-shadow: inset 0 0 0 1px #888;
}
    .tool-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }
    .tool-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .tool-category {
      color: #8b9a8b;
      margin-bottom: 12px;
      font-size: 0.95rem;
      display: flex;
      justify-content: center;
      gap: 6px;
    }
    .tool-desc {
      color: #b0b2bb;
      font-size: 1rem;
      min-height: 48px;
    }
    a.tool-link {
      margin-top: 16px;
      padding: 8px 20px;
      background-color: #8b9a8b;
      border-radius: 30px;
      font-weight: 600;
      color: #1f1f21;
      text-decoration: none;
      display: inline-block;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
      background-color: #2b2c34;
      border-radius: 12px;
      overflow: hidden;
    }
    th, td {
      padding: 0.8rem;
      text-align: center;
      border-bottom: 1px solid #444;
    }
    th {
      background: #40404a;
      color: #d3d3d9;
    }
    #total {
      font-size: 2.2rem;
      font-weight: bold;
      margin: 1rem 0 1.5rem;
      text-align: center;
      color: #a8c0a0;
    }
	
	/*ogscripts*/
.classic-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

#voteResult .success {
  background-color: #27ae60;
  color: white;
  padding: 12px 15px;
  border-radius: 6px;
  max-width: 400px;
  margin: 10px auto 0 auto;
  text-align: center;
  box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
}

#voteResult .error {
  background-color: #c0392b;
  color: white;
  padding: 12px 15px;
  border-radius: 6px;
  max-width: 400px;
  margin: 10px auto 0 auto;
  text-align: center;
  box-shadow: 0 0 10px rgba(192, 57, 43, 0.5);
}

button[type="submit"] {
  cursor: pointer;
  background-color: #2980b9;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #3498db;
}
	
    @media (max-width: 600px) {
      .tools-grid {
        flex-direction: column;
        gap: 20px;
      }
      .tool-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
      }
    }