:root {
  --bg: #ffffff;
  --text: #000000;
  --border: 4px solid #000000;
  --font-ui: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --link-hover: #000000;
  --link-hover-text: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1 { margin: 0; line-height: 0; width: 100%; text-align: center; }

a.text-link { border-bottom: 2px solid #000; font-weight: bold; transition: all 0.2s; }
a.text-link:hover { background: var(--link-hover); color: var(--link-hover-text) !important; text-decoration: none; }

header {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.logo-img {
  max-width: 450px;
  width: 100%;
  height: auto;
  transition: transform 0.2s;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}
.logo-img:hover { transform: scale(1.02); }

.social-row {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  width: calc(100% - 30px);
  max-width: 450px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 44px;
  background: #fff;
  color: #000;
  border: var(--border);
  padding: 0;
  transition: all 0.2s ease;
}
.social-btn svg { width: 22px; height: 22px; fill: currentColor; display: block; }
.social-btn:hover { background: #000; color: #fff; transform: translateY(-2px); }
#pk-socials { 
  justify-content: flex-start; 
  width: 100%; 
  max-width: none; 
  flex-wrap: wrap; 
}
#pk-socials .social-btn { flex: 0 0 44px; }

.nav-tabs {
  display: flex;
  padding: 0;
  flex-wrap: nowrap;
  justify-content: center;
  border: var(--border);
  background: #000;
  gap: 4px;
  width: calc(100% - 30px);
  max-width: 450px;
}

.tab-btn {
  background: #fff;
  border: none;
  color: #000;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-ui);
  transition: all 0.2s;
  flex: 1;
  text-align: center;
}
.tab-btn:hover { background: #eee; }
.tab-btn.active { background: #000; color: #fff; }

main {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  margin-top: 20px;
  flex: 1;
}

.panel { display: none; animation: fadeIn 0.4s ease; }
.panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.hero-desc {
  border: var(--border);
  padding: 24px;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  font-size: 18px;
  background: #fff;
  width: 100%;
}

.cta-container { display: flex; justify-content: center; width: 100%; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: #000;
  border: var(--border);
  padding: 20px 10px;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  width: calc(100% - 30px);
  max-width: 450px;
}
.cta-btn svg { width: 28px; height: 28px; fill: #fff; transition: fill 0.2s; }
.cta-btn:hover { background: #fff; color: #000; border-color: #000; transform: scale(1.02); }
.cta-btn:hover svg { fill: #000; }
.cta-btn:active { transform: scale(0.98); }

.gif-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
  width: 100%;
}
.framed-gif {
  width: 100%;
  height: auto;
  border: var(--border);
  display: block;
  background: #000;
}

.faq-section { max-width: 100%; margin: 0 auto;  padding-top: 40px; }
.faq-title { text-align: center; font-size: 32px; margin-bottom: 30px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }

details.faq-item { margin-bottom: 15px; border: var(--border); background: #fff; transition: all 0.2s; width: 100%; }
details.faq-item[open] { background: #000; color: #fff; }

summary.faq-q { padding: 18px 24px; cursor: pointer; font-weight: bold; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 16px; }
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after { content: '+'; font-size: 24px; font-weight: 300; }
details[open] summary.faq-q::after { content: '-'; }

.faq-a { padding: 0 24px 24px; line-height: 1.6; font-size: 15px; margin-top: 0; padding-top: 15px; }

.card { border: var(--border); padding: 30px; background: #fff; width: 100%; }
.streamer-guide { background: #f4f4f4; padding: 20px; border: var(--border); margin-top: 20px; }
.streamer-guide h4 { margin-top: 0; text-transform: uppercase; }
.streamer-guide ol { padding-left: 20px; line-height: 1.6; }
.streamer-box-row { display: flex; gap: 10px; margin-top: 15px; }

.streamer-link-box {
  background: #fff; padding: 12px; border: var(--border);
  color: #000; font-family: monospace; font-size: 13px;
  word-break: break-all; flex: 1;
}

.copy-btn {
  background: #000; color: #fff; border: var(--border);
  padding: 0 20px; cursor: pointer; font-weight: bold;
  text-transform: uppercase; font-family: var(--font-ui);
}
.copy-btn:hover { background: #fff; color: #000; }

.pk-header { border-bottom: var(--border); padding-bottom: 20px; margin-bottom: 30px; }
.pk-header h2 { margin: 0; font-size: 28px; text-transform: uppercase; letter-spacing: 2px; }

.pk-grid { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.pk-sidebar { padding: 20px; border: var(--border); background: #fafafa; width: 100%; }
.pk-sidebar,
.pk-main {
  min-width: 0;
}
.pk-section-title { font-size: 14px; text-transform: uppercase; border-bottom: 2px solid #000; padding-bottom: 8px; margin-bottom: 15px; margin-top: 0; }

.pk-fact { margin-bottom: 16px; }
.pk-fact strong { display: block; color: #666; font-size: 11px; text-transform: uppercase; margin-bottom: 4px; }
.pk-fact span, .pk-fact a:not(.social-btn) { color: #000; font-size: 14px; display: block; line-height: 1.4; font-weight: bold; }

.pk-block { margin-bottom: 40px; }
.pk-block h3 { border-bottom: var(--border); padding-bottom: 10px; text-transform: uppercase; font-size: 18px; margin-top: 0; }
.pk-block p { line-height: 1.7; margin-bottom: 15px; }
.pk-block ul { padding-left: 20px; line-height: 1.7; }
.pk-block li { margin-bottom: 8px; }

.btn-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px; width: 100%; }
.btn-pk {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #000; color: #fff; padding: 16px 20px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  text-transform: uppercase; border: var(--border);
  transition: all 0.2s ease; flex: 1; min-width: 200px;
}
.btn-pk:hover { background: #fff; color: #000; }

footer { margin-top: auto; padding: 60px 20px; width: 100%; border-top: var(--border); text-align: center; color: #000; font-size: 11px; line-height: 1.6; background: #fff; }
.footer-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; width: 100%; }

.footer-logo { width: 160px; height: auto; margin-bottom: 20px; transition: opacity 0.3s; }
.footer-logo:hover { opacity: 0.7; }
.steam-logo-footer { width: 100px; height: auto; margin: 20px 0; filter: invert(1); }
.legal-text { margin: 15px; color: #444; }
.legal-text2 { margin: 0px; color: #444; }

@media (max-width: 768px) {
  .pk-grid { grid-template-columns: 1fr; gap: 20px; }
  .pk-sidebar { order: 1; width: 100%; }
  .pk-main { order: 2; width: 100%; }
  
  .tab-btn { font-size: 13px; padding: 12px 2px; }
  
  main { padding: 15px; }

  .framed-gif, details.faq-item, .card, .btn-pk, .hero-desc, .copy-btn { width: 100%; max-width: none; }
  .streamer-box-row, .btn-row { flex-direction: column; }
  
  .logo-img { width: 92%; }
}