/* Page-specific overrides for perks page */

/* Page-specific typography */
h2 {
  font-size: 1.6em;
  color: #00cccc;
  text-shadow: 0 0 5px #00cccc;
  margin: 1.2em 0 0.5em;
}
p {
  margin: 0.8em 0;
}

/* Role color */
.role {
  color: #f47fff;
}

/* Perks table */
.perks-table {
  margin: 20px auto 30px;
  border-collapse: collapse;
  width: 100%;
  max-width: 1000px;
}
.perks-table th,
.perks-table td {
  border: 1px solid #00cccc;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
}
.perks-table th {
  background-color: #00cccc;
  color: #000;
  font-weight: bold;
}
.perks-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.05);
}

/* Call-to-action */
.call-to-action {
  margin-top: 30px;
}
.soul-button {
  background-color: #ffdd57;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.soul-button:hover {
  background-color: #ffee80;
  box-shadow: 0 0 10px #ffdd57;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .container {
    padding: 20px;
    margin: 20px auto;
  }
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.4em;
  }
  .perks-table {
    display: block;
    overflow-x: auto;
  }
  .perks-table th,
  .perks-table td {
    padding: 8px;
    font-size: 0.9em;
  }
}
