html { scroll-behavior: smooth; }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #27272a;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 24px 24px;
  background-image: url("boritokep.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-title {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 44px;
  font-weight: 700;
}

.content {
  min-height: 100vh;
  padding: 64px 32px;
  border-top: 1px solid #3f3f46;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container p,
.container li {
  color: #d4d4d8;
}

.main-title,
.center-white-title {
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}

.main-title {
  font-size: 34px;
  margin: 0 0 24px;
}

.center-white-title {
  font-size: 30px;
  margin: 56px 0 18px;
}

.white-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 40px 0 14px;
}

.left-tight {
  text-align: left;
  margin-top: 56px;
}

.white-subtitle {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 28px;
}

.section-label {
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 6px;
  color: #ffffff;
}

.section-label.light { margin-top: 0; }

.green { color: #4ade80 !important; font-weight: 700; }
.black { color: #000000 !important; font-weight: 700; }
.red-title {
  color: #ef4444 !important;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 6px;
}

.red-inline { color: #ef4444 !important; font-weight: 700; }
.white-inline { color: #ffffff !important; font-weight: 700; }
.underlined { text-decoration: underline; }
.underlined-white {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: underline;
}

.box {
  background: #3f3f46;
  border-radius: 16px;
  padding: 18px;
  margin-top: 10px;
}

.default-list,
.example-list,
.numbered-list,
.miranda-list {
  padding-left: 22px;
}

.default-list.nested {
  margin-top: 8px;
}

.example-list li { color: #60a5fa !important; }
.miranda-list li { color: #ffffff !important; font-weight: 700; text-decoration: underline; }

.code-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.code-card {
  background: #3f3f46;
  border-radius: 14px;
  padding: 14px;
}

.code-red { color: #f87171 !important; font-weight: 700; }
.code-blue { color: #60a5fa !important; }

.footer-note {
  text-align: center;
  color: #ffffff !important;
  font-weight: 700;
  margin-top: 40px;
}

.footer-sign {
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hero-title { font-size: 32px; }
  .content { padding: 40px 18px; }
  .code-grid { grid-template-columns: 1fr; }
}
