* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #f5f5f0;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}

nav {
  background: #fff;
  border-bottom: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
}
.nav-logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #111;
  text-decoration: none;
}
.nav-logo span { color: #2d7a3a; }
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: #111; }
.nav-links .tiktok-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #111;
  color: #fff !important;
  padding: 6px 14px;
  font-size: 12px;
  line-height: 1;
}
.nav-links .tiktok-link:hover { background: #333; }

.page {
  padding: 60px 20px;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  color: #111;
}
h1 span { color: #2d7a3a; }

h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #111;
}

.subtitle {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ip-row {
  display: flex;
  align-items: stretch;
  border: 2px solid #111;
  background: #fff;
}
.ip-text {
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  border-right: 2px solid #111;
  flex: 1;
}
button {
  background: #111;
  color: #fff;
  border: none;
  padding: 13px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background .15s;
  white-space: nowrap;
}
button:hover { background: #2d7a3a; }
button.copied { background: #2d7a3a; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: #fff;
  border: 2px solid #111;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag.accent { background: #111; color: #fff; }
.tag.green  { background: #2d7a3a; color: #fff; border-color: #2d7a3a; }

hr { border: none; border-top: 2px solid #ddd; }

.info {
  font-size: 14px;
  color: #555;
  line-height: 2.2;
  font-weight: 600;
}
.info strong { color: #111; font-weight: 700; }

.notice {
  background: #fff8e1;
  border: 2px solid #f0a500;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #7a5500;
  line-height: 1.7;
}
.notice strong { color: #5a3c00; }

/* UPDATES */
.update-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.update-item {
  background: #fff;
  border: 2px solid #111;
  padding: 18px 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.update-date {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  padding-top: 2px;
  min-width: 80px;
}
.update-body { flex: 1; }
.update-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}
.update-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  font-weight: 600;
}
.update-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #111;
  color: #111;
  white-space: nowrap;
  margin-top: 8px;
  display: inline-block;
}

/* CONTACT */
.contact-block {
  background: #fff;
  border: 2px solid #111;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-block .label {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-block .email {
  font-size: 17px;
  font-weight: 700;
  color: #2d7a3a;
  text-decoration: none;
}
.contact-block .email:hover { text-decoration: underline; }
.contact-block p {
  font-size: 13px;
  color: #666;
  font-weight: 600;
  line-height: 1.7;
}

.tiktok-block {
  background: #111;
  border: 2px solid #111;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background .15s;
}
.tiktok-block:hover { background: #333; }
.tiktok-block .tt-icon { font-size: 28px; }
.tiktok-block .tt-text .tt-label {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.tiktok-block .tt-text .tt-handle {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

p.muted {
  font-size: 13px;
  color: #888;
  font-weight: 600;
}

.home-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 2px solid #111;
}

.server-desc {
  font-size: 14px;
  color: #555;
  font-weight: 600;
  line-height: 1.7;
}
