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

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff9fb;
  color: #333;
}

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid #f8bbd0;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 20px;
  font-weight: 600;
  color: #880e4f;
}

.nav-logo i {
  color: #e91e63;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #ad1457;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e91e63;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: #880e4f;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero p {
  font-size: 16px;
  color: #ad1457;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 1rem;
}

.badge {
  background: #fff;
  border: 1px solid #f48fb1;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: #880e4f;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CHECK SECTION */
.check-section {
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
}

.check-box {
  background: #fff;
  border: 1px solid #f8bbd0;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
}

/* TABS */
.tabs {
  display: flex;
  background: #fce4ec;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 1.5rem;
  gap: 4px;
}

.tab {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #ad1457;
  transition: all 0.2s;
}

.tab.active {
  background: #fff;
  color: #880e4f;
  border: 1px solid #f48fb1;
}

.tab:hover {
  background: #fff0f5;
}

/* TAB PANELS */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* INPUT ROW */
.input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.url-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #f48fb1;
  border-radius: 10px;
  font-size: 14px;
  background: #fff9fb;
  color: #333;
  outline: none;
  transition: border 0.2s;
}

.url-input:focus {
  border-color: #e91e63;
}

.url-input::placeholder {
  color: #f48fb1;
}

.check-btn {
  background: #e91e63;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.check-btn:hover {
  background: #c2185b;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform {
  background: #fff0f5;
  border: 1px solid #f8bbd0;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: #ad1457;
}

/* UPLOAD AREA */
.upload-area {
  border: 2px dashed #f48fb1;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  background: #fff9fb;
  cursor: pointer;
  transition: background 0.2s;
}

.upload-area:hover {
  background: #fce4ec;
}

.upload-area i {
  font-size: 40px;
  color: #f48fb1;
}

.upload-area p {
  font-size: 15px;
  color: #ad1457;
  margin: 10px 0 4px;
  font-weight: 500;
}

.upload-area span {
  font-size: 12px;
  color: #f48fb1;
}

/* RESULT BOX */
.result-box {
  margin-top: 1.5rem;
  background: #fff0f5;
  border: 1px solid #f48fb1;
  border-radius: 12px;
  padding: 1.25rem;
}

.result-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.result-inner i {
  font-size: 28px;
  color: #e91e63;
}

.result-text {
  flex: 1;
}

.result-text p:first-child {
  font-size: 14px;
  font-weight: 600;
  color: #880e4f;
}

.result-text p:last-child {
  font-size: 13px;
  color: #ad1457;
  margin-top: 3px;
}

.result-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.badge-real {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-fake {
  background: #ffebee;
  color: #c62828;
}

.badge-analyzing {
  background: #fff8e1;
  color: #f57f17;
}

/* PROGRESS BAR */
.progress-bar {
  height: 6px;
  background: #f8bbd0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: #e91e63;
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
}

/* RESULT DETAILS */
.result-details {
  border-top: 1px solid #f8bbd0;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #880e4f;
}

.detail-item span:last-child {
  font-weight: 600;
}

/* FEATURES */
.features {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #fff;
}

.features h2 {
  font-size: 24px;
  color: #880e4f;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.feat-card {
  background: #fff9fb;
  border: 1px solid #f8bbd0;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.feat-card:hover {
  transform: translateY(-4px);
}

.feat-card i {
  font-size: 32px;
  color: #e91e63;
  margin-bottom: 12px;
}

.feat-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #880e4f;
  margin-bottom: 6px;
}

.feat-card p {
  font-size: 13px;
  color: #ad1457;
  line-height: 1.5;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  text-align: center;
}

.how-it-works h2 {
  font-size: 24px;
  color: #880e4f;
  margin-bottom: 2rem;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border: 1px solid #f8bbd0;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  width: 200px;
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  background: #e91e63;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step h3 {
  font-size: 14px;
  font-weight: 600;
  color: #880e4f;
  margin-bottom: 6px;
}

.step p {
  font-size: 12px;
  color: #ad1457;
  line-height: 1.5;
}

.step-arrow {
  font-size: 24px;
  color: #e91e63;
}

/* FOOTER */
.footer {
  background: #880e4f;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 { font-size: 26px; }
  .input-row { flex-direction: column; }
  .check-btn { width: 100%; justify-content: center; }
  .step-arrow { display: none; }
  .nav-links { display: none; }
}
/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switcher select {
  padding: 6px 10px;
  border: 1px solid #f48fb1;
  border-radius: 8px;
  font-size: 13px;
  color: #880e4f;
  background: #fff9fb;
  cursor: pointer;
  outline: none;
}
.nav-login {
  padding: 7px 16px;
  border: 1.5px solid #e91e63;
  border-radius: 8px;
  color: #e91e63;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-login:hover { background: #fff0f5; }
.nav-signup {
  padding: 7px 16px;
  background: #e91e63;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-signup:hover { background: #c2185b; }

/* LAUNCH STRIP */
.launch-strip {
  background: #e91e63;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.launch-strip a {
  color: #fff;
  text-decoration: underline;
}

/* FREE COUNTER */
.free-counter {
  background: #fff0f5;
  border: 1px solid #f48fb1;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #880e4f;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.free-counter a {
  margin-left: auto;
  color: #e91e63;
  font-weight: 600;
  text-decoration: none;
}

/* TEXT INPUT */
.text-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #f48fb1;
  border-radius: 10px;
  font-size: 14px;
  background: #fff9fb;
  color: #333;
  outline: none;
  resize: vertical;
  font-family: inherit;
  transition: border 0.2s;
}
.text-input:focus { border-color: #e91e63; }

/* AD BANNERS */
.ad-banner-top, .ad-banner-bottom {
  background: #fff0f5;
  border-bottom: 1px solid #f8bbd0;
  text-align: center;
  padding: 8px;
  font-size: 11px;
  color: #f48fb1;
}
.ad-banner-bottom {
  border-top: 1px solid #f8bbd0;
  border-bottom: none;
}
.ad-placeholder {
  background: #fce4ec;
  border: 1px dashed #f48fb1;
  border-radius: 6px;
  padding: 12px;
  font-size: 13px;
  color: #ad1457;
  margin: 6px auto;
  max-width: 728px;
}
.ad-box {
  margin-top: 1rem;
  text-align: center;
  font-size: 11px;
  color: #f48fb1;
}
.ad-placeholder-small {
  background: #fce4ec;
  border: 1px dashed #f48fb1;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  color: #ad1457;
  margin: 6px auto;
  max-width: 320px;
}

/* FOOTER LINKS */
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-links a {
  color: #ffb3d1;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
/* APP DOWNLOAD SECTION */
.app-download {
  background: linear-gradient(135deg, #880e4f, #e91e63);
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem;
}
.app-download h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.app-download p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.app-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.app-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}
.install-btn {
  background: #fff;
  color: #e91e63;
}
.install-btn:hover { background: #fce4ec; }
.playstore-btn {
  background: #fff;
  color: #2e7d32;
}
.playstore-btn:hover { background: #f1f8e9; }
.appstore-btn {
  background: #fff;
  color: #1565c0;
}
.appstore-btn:hover { background: #e3f2fd; }