@import url('https://rsms.me/inter/inter.css');
html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
  html { font-family: 'Inter var', sans-serif; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; font-family: 'Inter', 'Segoe UI', sans-serif; }
body {
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-weight: 600; color: #000; }
h1 { font-size: 32px; }
h2 { font-size: 22px; }
p { font-size: 15px; color: #444; }

.screen { display: none; padding: 20px; max-width: 480px; margin: 0 auto; }
.screen.active { display: block; }

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  width: 100%;
  padding: 20px;
}

.understand-btn {
  background-color: #000 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 16px 32px !important;
  border: none !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  width: 80% !important;
  max-width: 300px !important;
  margin: 30px auto 0 !important;
  display: block !important;
  transition: background-color 0.3s ease !important;
  -webkit-font-smoothing: antialiased !important;
}

.understand-btn:hover {
  background-color: #333 !important;
}

.nav-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.back-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
  font-weight: 600;
}

.back-btn:hover { color: #000; }

#welcome .center-content h1 { margin-bottom: 40px; text-align: center; }
#adContainer { margin: 20px auto 0; }

.categories {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.categories button {
  padding: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.categories button:hover {
  background: #222;
  transform: translateY(-2px);
}

.creator-note {
  margin-top: 40px;
  font-size: 13px;
  color: #999;
  text-align: center;
  font-style: italic;
}

.leaks-intro {
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.leaks-intro h2 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
}

.leaks-intro p {
  font-size: 14px;
  color: #666;
  margin: 16px 0;
  line-height: 1.6;
}

.removal-text { font-size: 14px !important; }

#viewContentBtn,
#understandBtn {
  width: 100%;
  max-width: 360px;
  padding: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 17px;
  margin: 20px auto 0;
  cursor: pointer;
}

#viewContentBtn:hover,
#understandBtn:hover {
  background: #222;
}

.back-text-btn {
  width: 100%;
  max-width: 360px;
  padding: 18px;
  background: transparent;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 16px;
  font-size: 17px;
  margin: 12px auto 0;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-text-btn:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

#countries .list {
  width: 100%;
  max-width: 360px;
}

#countries .list .item {
  background: #fafafa;
  padding: 18px;
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

#countries .list .item:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.list .item {
  background: #fafafa;
  padding: 18px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.list .item:hover {
  background: #fff;
  border-color: #ddd;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.post-profile-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
}

.post-profile-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.post-categories {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-categories button {
  padding: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.post-categories button:hover {
  background: #222;
  transform: translateY(-2px);
}

.post-categories button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.gallery-container {
  margin: 32px 0;
  width: 100%;
}

.media-wrapper {
  width: 100%;
  height: 420px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.media-wrapper img, .media-wrapper video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swipe-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.swipe-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 110px;
}

.swipe-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

.profile-card {
  text-align: center;
  width: 100%;
}

.profile-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.profile-card h3 { font-size: 24px; margin-bottom: 16px; }

.profile-card p { margin: 10px 0; font-size: 15px; color: #555; }
.profile-card p strong { color: #000; }

.phone-link {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.phone-link:hover { color: #333; }

#galleryBtn {
  margin-top: 24px;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
}

#galleryBtn:hover { background: #222; }

.instructions {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 16px;
  margin: 20px 0;
  border: 1px solid #eee;
  width: 100%;
}

.instructions li { margin: 12px 0; color: #555; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.pagination button {
  padding: 10px 18px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
}

.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination button:hover:not(:disabled) { background: #e0e0e0; }
#pageInfo, #escortPageInfo { font-size: 14px; color: #888; }

.media-counter {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: #888;
}

.posts-list-total {
  font-size: 30px;
  color: #000;
  margin-bottom: 12px;
  font-weight: 700;
}

.leaks-total-count {
  font-size: 30px;
  color: #000;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 700;
}

.spotlight-image {
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
}

.spotlight-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.spotlight-buttons {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 24px;
}

.spotlight-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.spotlight-btn.primary {
  background: #000;
  color: #fff;
}

.spotlight-btn.primary:hover {
  background: #222;
  transform: translateY(-2px);
}

.spotlight-btn.secondary {
  background: transparent;
  color: #000;
  border: 1px solid #ddd;
}

.spotlight-btn.secondary:hover {
  background: #f5f5f5;
  border-color: #bbb;
  transform: translateY(-2px);
}

.banner-ad-space {
  width: 100%;
  max-width: 360px;
  margin-top: 10px;
  padding: 20px;
  border: 1px dashed #ddd;
  border-radius: 16px;
  text-align: center;
  background: #fafafa;
}

.banner-ad-label {
  font-size: 12px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.banner-ad-placeholder {
  height: 60px;
  background: #f0f0f0;
  border-radius: 8px;
}

.download-leak-btn {
  display: block;
  margin: 16px auto 0;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-leak-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

.download-btn {
  display: block;
  width: 100%;
  max-width: 360px;
  padding: 18px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.download-btn:hover {
  background: #222;
  transform: translateY(-2px);
}

.download-ad-space {
  width: 100%;
  max-width: 360px;
  margin-top: 24px;
  padding: 20px;
  border: 1px dashed #ddd;
  border-radius: 16px;
  text-align: center;
  background: #fafafa;
}

.download-ad-label {
  font-size: 12px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
