/* kittybin main styles - stop touching it */
* {
  box-sizing: border-box
}
*:focus {
  outline: none !important;
  box-shadow: none !important
}
::-webkit-scrollbar {
  display: none
}
html {
  scrollbar-width: none;
  background-color: #000
}
body {
  background-color: #000;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  margin: 0;
  padding: 0;
  font-size: 11px
}
/* header / logo */
.logo-header {
  text-align: center;
  padding: 25px 0 10px
}
.ascii-logo {
  color: #ffb6c1;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.2
}
.site-title {
  color: #ff69b4;
  margin: 15px 0 0;
  font-size: 22px;
  letter-spacing: 1px
}
/* nav */
.navbar {
  background: #111;
  border-top: 2px solid #ffb6c1;
  border-bottom: 2px solid #ffb6c1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
  gap: 8px
}
.nav-links a, .auth-links a {
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  margin-right: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px
}
.auth-links a {
  margin-left: 15px;
  margin-right: 0;
  color: #ffb6c1
}
.nav-links a:hover, .nav-links a.active, .auth-links a:hover {
  color: #ff69b4
}
.online-count {
  color: #ffb6c1;
  font-size: 9px;
  opacity: .7
}
/* main content area */
.content-wrapper {
  max-width: 950px;
  margin: 20px auto;
  padding: 0 15px
}
.data-box {
  background: #111;
  border: 1px solid #333
}
.data-box-header {
  background: #161616;
  padding: 12px 15px;
  font-size: 11px;
  color: #ffb6c1;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center
}
/* forms */
input, button, select, textarea {
  background: #161616;
  border: 1px solid #333;
  color: #fff;
  padding: 8px;
  font-family: inherit;
  font-size: 11px
}
button, .submit-button {
  cursor: pointer
}
button:hover, .submit-button:hover {
  background: #222;
  color: #ff69b4
}
label {
  display: block;
  color: #ffb6c1;
  margin: 15px 0 5px;
  font-size: 10px
}
/* tables */
.paste-table, .user-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 10px
}
.paste-table th, .user-table th {
  background: #0d0d0d;
  padding: 12px 15px;
  color: #888;
  border-bottom: 1px solid #222
}
.user-table td {
  padding: 14px 15px;
  border-bottom: 1px solid #1a1a1a
}
.empty-state {
  text-align: center;
  padding: 60px 40px;
  color: #555;
  font-size: 11px;
  line-height: 1.8
}
/* rank badges */
.rank-badge {
  padding: 4px 6px;
  font-size: 8px;
  font-weight: bold;
  border-radius: 2px
}
.rank-admin { background: #ff69b4; color: #000 }
.rank-criminal { background: #8b0000; color: #fff }
.rank-vip { background: #ffb6c1; color: #000 }
.rank-premium { background: #bf5fff; color: #fff }
.rank-user { background: #333; color: #fff }
/* pagination */
.pagination {
  text-align: center;
  margin: 25px 0;
  font-size: 10px
}
.pagination a {
  color: #fff;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid #333;
  margin: 2px;
  background: #111
}
.pagination a.active {
  background: #ffb6c1;
  color: #000
}
/* search */
.search-container {
  text-align: center;
  margin: 25px 0 15px
}
.search-label {
  color: #ffb6c1;
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  letter-spacing: 1px
}
.search-form {
  display: flex;
  justify-content: center;
  gap: 5px
}
.search-box {
  width: 280px;
  height: 38px;
  padding: 5px 12px;
  font-size: 10px
}
.search-button {
  height: 38px;
  padding: 5px 15px;
  color: #ffb6c1;
  font-size: 10px
}
.search-button:hover {
  background: #222;
  color: #ff69b4
}
.profile-link {
  color: #fff;
  text-decoration: none
}
.profile-link:hover {
  color: #ffb6c1
}
/* footer */
.footer-links {
  text-align: center;
  margin: 40px 0 30px;
  font-size: 10px
}
.footer-links a {
  color: #ffb6c1;
  text-decoration: none;
  margin: 0 12px
}
.footer-links a:hover {
  color: #ff69b4
}
/* --- page-specific extras --- */
/* add-paste editor */
.editor-container {
  background: #111;
  border: 1px solid #333
}
.editor-header {
  background: #161616;
  padding: 12px 15px;
  color: #ffb6c1
}
.paste-text-area {
  width: 100%;
  height: 420px;
  background: #080808;
  color: #fff;
  border: none;
  padding: 15px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  resize: vertical
}
.options-grid {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px
}
.submit-button {
  background: #161616;
  color: #ffb6c1;
  border: 1px solid #333;
  padding: 12px 30px
}
/* upgrades shop */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px
}
.shop-card {
  background: #111;
  border: 1px solid #333;
  text-align: center;
  transition: all .2s
}
.shop-card:hover {
  border-color: #ff69b4
}
.card-header {
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  background: #0a0a0a
}
.card-price {
  font-size: 24px;
  padding: 25px 0;
  background: #090909;
  font-weight: bold
}
.perks-list {
  list-style: none;
  padding: 20px;
  text-align: left;
  font-size: 9px;
  line-height: 2.2;
  min-height: 180px
}
.perks-list li::before {
  content: "\2713  ";
  color: #ffb6c1
}
.buy-button {
  display: block;
  background: #161616;
  color: #fff;
  padding: 15px;
  text-decoration: none;
  border-top: 1px solid #333;
  font-weight: bold
}
.buy-button:hover {
  background: #222;
  color: #ffb6c1
}
.vip-card {
  border-top: 3px solid #ffb6c1
}
.criminal-card {
  border-top: 3px solid #ff4444
}
.premium-card {
  border-top: 3px solid #bf5fff
}
.crypto-notice {
  background: #111;
  border: 1px solid #333;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
  font-size: 10px
}
/* hall of autism */
.clown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px
}
.clown-card {
  background: #0d0d0d;
  border: 1px solid #333;
  padding: 10px;
  text-align: center
}
.clown-image {
  width: 100%;
  height: 180px;
  background: #1a1a1a;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 10px;
  margin-bottom: 10px
}
.clown-name {
  color: #ff69b4;
  font-size: 11px;
  margin: 8px 0 4px
}
.clown-text {
  font-size: 9px;
  color: #aaa;
  line-height: 1.4;
  min-height: 60px
}
.admin-note {
  text-align: center;
  color: #ff4444;
  font-size: 10px;
  margin-top: 30px
}
/* admin panel */
.admin-header-text {
  color: #ff4444;
  font-size: 11px
}
/* legal / tos / nolog headers */
h2 {
  color: #ffb6c1;
  font-size: 12px;
  margin-top: 30px
}
/* centered box for login/register */
.auth-box {
  background: #111;
  border: 1px solid #333;
  padding: 30px 25px
}
.auth-box .data-box-header {
  text-align: center;
  color: #ff69b4;
  font-size: 14px;
  margin-bottom: 25px;
  display: block;
  border: none;
  background: none
}
.auth-box input {
  padding: 12px
}
.auth-box button {
  width: 100%;
  padding: 14px;
  margin-top: 25px
}
/* paste detail view */
.paste-content {
  background: #080808;
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all
}
.paste-meta {
  color: #888;
  font-size: 9px;
  padding: 10px 15px;
  background: #0d0d0d;
  border-bottom: 1px solid #222
}
.delete-btn {
  background: #440000;
  color: #ff6666;
  border: 1px solid #660000;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 10px
}
.delete-btn:hover {
  background: #660000
}
/* layout variations */
.content-narrow {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px
}
.content-narrower {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 15px
}
.data-box-padded {
  padding: 25px
}
.body-line-height {
  line-height: 1.6
}
.data-box-header-alt {
  display: block;
  text-align: center;
  color: #ff4444;
  font-size: 13px;
  margin-bottom: 25px;
  padding: 12px 15px;
  background: #161616;
  border-bottom: 1px solid #333
}
.data-box-header-center {
  display: block;
  text-align: center;
  color: #ff69b4;
  font-size: 14px;
  padding: 15px;
  background: #161616;
  border-bottom: 1px solid #333
}
.content-medium {
  max-width: 650px
}
.textarea-tall textarea {
  min-height: 180px
}
.form-wide button {
  margin-top: 20px
}
