/* Partner Showcase - Frontend Styles */
.ps-global-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #fff;
}
.ps-partner-list {
  border-radius: 8px;
  padding: 16px 0;
  margin: 0;
}
.ps-partner-item {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr 1fr;
  align-items: center;
  background: #282828;
  /* border-bottom: 1px solid #333; */
  padding: 16px 24px;
  gap: 18px;
  margin-bottom: 28px;
  justify-content: space-between;
  border-radius: 8px;
}
.ps-partner-item:last-child {
  margin-bottom: 0;
}
.ps-partner-col.ps-partner-logo img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  background: #222;
  display: block;
  margin: 0 auto;
}
.ps-partner-title-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.ps-partner-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.ps-partner-rating {
  color: #ffc700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 0;
}
.ps-partner-desc {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 0;
}
.ps-partner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.ps-btn {
  display: block;
  padding: 10px 0;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
}
.ps-btn-review {
  background: #f5c32c;
  color: #222;
  border: none;
}
.ps-btn-review:hover {
  background: #ffe082;
  color: #111;
}
.ps-btn-play {
  background: #d32f2f;
  color: #fff;
  border: none;
}
.ps-btn-play:hover {
  background: #b71c1c;
  color: #fff;
}
@media (max-width: 900px) {
  .ps-partner-item {
    grid-template-columns: 60px 1fr 1.5fr 1fr;
    padding: 12px 8px;
    gap: 10px;
  }
  .ps-partner-col.ps-partner-logo img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 600px) {
  .ps-partner-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 12px;
    padding: 18px 4px;
    justify-content: center;
    text-align: center;
  }
  .ps-partner-col.ps-partner-logo img {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
  }
  .ps-partner-title-rating, .ps-partner-actions, .ps-partner-col.ps-partner-desc {
    align-items: center !important;
    text-align: center;
    justify-content: center;
  }
  .ps-partner-actions {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
  .ps-btn {
    width: 45%;
    min-width: 110px;
    padding: 10px 0;
    font-size: 1rem;
    margin: 0;
  }
} 