/* FYP Toolkit - Main CSS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

#fyp-toolkit-wrap.fyp-wrap {
  font-family: var(--fyp-font, 'Syne', sans-serif);
  background: var(--fyp-bg, #0a0a0a);
  color: var(--fyp-text, #f0f0f0);
  min-height: 60vh;
  position: relative;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  max-width: 100vw !important;
  overflow-x: hidden;
}
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* NAV */
.fyp-nav {
  display: flex; align-items: center; gap: 8px;
  background: var(--fyp-nav-bg, rgba(10,10,10,0.95));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  padding: 0 24px; height: 60px;
  position: sticky; top: 0; z-index: 100;
}
.fyp-nav-brand {
  font-weight: 800; font-size: 18px;
  color: var(--fyp-accent, #ff2d55);
  white-space: nowrap; margin-right: 8px;
}
.fyp-nav-tools {
  display: flex; gap: 2px; flex: 1; overflow-x: auto;
  scrollbar-width: none;
}
.fyp-nav-tools::-webkit-scrollbar { display: none; }
.fyp-nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 8px;
  text-decoration: none; color: var(--fyp-text-muted, #aaa);
  font-size: 13px; font-weight: 500; white-space: nowrap;
  transition: all .2s; border: 1px solid transparent;
}
.fyp-nav-link:hover, .fyp-nav-link.active {
  background: var(--fyp-card-bg, rgba(255,255,255,0.06));
  color: var(--fyp-text, #f0f0f0);
  border-color: var(--fyp-border, rgba(255,255,255,0.12));
}
.fyp-nav-link.active { color: var(--fyp-accent, #ff2d55); }
.fyp-nav-icon { font-size: 16px; }
.fyp-btn-premium {
  background: linear-gradient(135deg, var(--fyp-accent, #ff2d55), var(--fyp-accent2, #ff6b35));
  color: #fff; border: none; border-radius: 8px;
  padding: 8px 16px; font-size: 13px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: all .2s;
}
.fyp-btn-premium:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,45,85,0.4); }
.fyp-hamburger {
  display: none; background: none; border: none;
  color: var(--fyp-text, #f0f0f0); font-size: 22px; cursor: pointer;
}

/* MOBILE MENU */
.fyp-mobile-menu {
  display: none; flex-direction: column;
  background: var(--fyp-nav-bg, rgba(10,10,10,0.98));
  border-bottom: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  padding: 8px;
}
.fyp-mobile-menu.open { display: flex; }
.fyp-mobile-link {
  padding: 12px 16px; text-decoration: none;
  color: var(--fyp-text, #f0f0f0); font-size: 15px;
  border-radius: 8px; transition: background .2s;
}
.fyp-mobile-link:hover { background: var(--fyp-card-bg, rgba(255,255,255,0.06)); }

/* HERO */
.fyp-hero {
  padding: 50px 24px 40px;
  background: radial-gradient(ellipse at top, var(--fyp-hero-glow, rgba(255,45,85,0.12)) 0%, transparent 60%);
  text-align: center;
}
.fyp-hero-badge {
  display: inline-block;
  background: rgba(255,45,85,0.15);
  border: 1px solid rgba(255,45,85,0.3);
  color: var(--fyp-accent, #ff2d55);
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.fyp-hero-title {
  font-size: clamp(26px, 4vw, 48px); font-weight: 800;
  color: var(--fyp-text, #f0f0f0);
  margin-bottom: 12px; line-height: 1.2;
}
.fyp-hero-highlight {
  background: linear-gradient(135deg, var(--fyp-accent, #ff2d55), var(--fyp-accent2, #00e5ff));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fyp-hero-sub {
  font-size: 16px; color: var(--fyp-text-muted, #aaa);
  margin-bottom: 36px;
}

/* TOOLS GRID */
.fyp-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.fyp-tool-card-btn {
  background: var(--fyp-card-bg, rgba(255,255,255,0.05));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.1));
  border-radius: 14px; padding: 18px 14px;
  cursor: pointer; transition: all .25s;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  text-align: center; position: relative;
  overflow: hidden;
}
.fyp-tool-card-btn:hover {
  background: rgba(255,45,85,0.12);
  border-color: var(--fyp-accent, #ff2d55);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,45,85,0.2);
}
.fyp-tool-card-icon { font-size: 32px; }
.fyp-tool-card-name {
  font-size: 13px; font-weight: 700;
  color: var(--fyp-text, #f0f0f0);
}
.fyp-tool-card-desc {
  font-size: 11px; color: var(--fyp-text-muted, #888);
  line-height: 1.4;
}
.fyp-tool-card-arrow {
  font-size: 14px; color: var(--fyp-accent, #ff2d55);
  margin-top: 4px; opacity: 0;
  transition: opacity .2s;
}
.fyp-tool-card-btn:hover .fyp-tool-card-arrow { opacity: 1; }

/* TRUST SECTION */
.fyp-trust-section {
  max-width: 800px; margin: 0 auto;
}
.fyp-trust-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; background: var(--fyp-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  border-radius: 14px; padding: 20px; margin-bottom: 20px;
  flex-wrap: wrap;
}
.fyp-trust-stat { text-align: center; padding: 0 24px; }
.fyp-trust-num {
  display: block; font-size: 28px; font-weight: 800;
  color: var(--fyp-accent, #ff2d55); line-height: 1;
}
.fyp-trust-label { font-size: 12px; color: var(--fyp-text-muted, #aaa); margin-top: 4px; }
.fyp-trust-divider {
  width: 1px; height: 40px;
  background: var(--fyp-border, rgba(255,255,255,0.1));
}
.fyp-trust-points {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fyp-trust-point {
  background: var(--fyp-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  border-radius: 10px; padding: 12px 16px;
  font-size: 13px; color: var(--fyp-text, #f0f0f0);
  text-align: left;
}

/* TOOL PAGE */
.fyp-tool-page { max-width: 800px; margin: 0 auto; padding: 24px 16px; }

/* TOOL HEADER */
.fyp-tool-header { text-align: center; margin-bottom: 32px; }
.fyp-tool-icon { font-size: 48px; display: block; margin-bottom: 12px; }
.fyp-wrap .fyp-tool-title {
  font-size: 28px; font-weight: 800; margin-bottom: 8px;
  color: #f0f0f0 !important;
}
.fyp-wrap .fyp-tool-desc {
  color: #aaaaaa !important; font-size: 15px;
}

/* FORM */
.fyp-form-wrap { display: flex; flex-direction: column; gap: 20px; }
.fyp-field { display: flex; flex-direction: column; gap: 8px; }
.fyp-wrap .fyp-label {
  font-size: 13px; font-weight: 700;
  color: #aaaaaa !important;
  text-transform: uppercase; letter-spacing: .5px;
  font-family: var(--fyp-font, 'Syne', sans-serif);
}
.fyp-wrap .fyp-input,
.fyp-wrap .fyp-select {
  background: #1e1e1e !important;
  border: 1.5px solid #333333 !important;
  color: #f0f0f0 !important;
  padding: 14px 40px 14px 16px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  height: auto !important;
  min-height: 50px !important;
  width: 100% !important;
  transition: border-color .2s !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block !important;
  overflow: visible !important;
}
.fyp-wrap .fyp-input:focus,
.fyp-wrap .fyp-select:focus {
  border-color: var(--fyp-accent, #ff2d55) !important;
  box-shadow: 0 0 0 3px rgba(255,45,85,0.15) !important;
}
.fyp-wrap .fyp-input::placeholder { color: #666666 !important; }
.fyp-wrap .fyp-select option {
  background: #1e1e1e !important;
  color: #f0f0f0 !important;
}

/* PLATFORM TOGGLE */
.fyp-platform-toggle { display: flex; gap: 8px; }
.fyp-wrap .fyp-platform-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #1e1e1e !important;
  border: 2px solid #333333 !important;
  color: #aaaaaa !important;
  padding: 12px !important;
  border-radius: 10px !important;
  font-size: 14px !important; font-weight: 600 !important;
  cursor: pointer !important; transition: all .2s !important;
}
.fyp-wrap .fyp-platform-btn.active {
  background: rgba(255,45,85,0.15) !important;
  border-color: var(--fyp-accent, #ff2d55) !important;
  color: var(--fyp-accent, #ff2d55) !important;
}
.fyp-wrap .fyp-platform-btn:hover:not(.active) {
  background: #2a2a2a !important;
  border-color: #555555 !important;
  color: #f0f0f0 !important;
}

/* ADS ROW */
.fyp-ads-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fyp-ad { min-height: 90px; overflow: hidden; }
.fyp-ad ins, .fyp-ad > div { max-width: 100% !important; }

/* GENERATE BUTTON */
.fyp-generate-btn {
  width: 100%; padding: 16px; font-size: 18px; font-weight: 800;
  background: linear-gradient(135deg, var(--fyp-accent, #ff2d55), var(--fyp-accent2, #ff6b35));
  color: #fff; border: none; border-radius: 12px;
  cursor: pointer; transition: all .2s; letter-spacing: .5px;
}
.fyp-generate-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,45,85,0.4); }
.fyp-generate-btn:active { transform: translateY(0); }
.fyp-generate-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* GENERATING STEP */
.fyp-generating-wrap { text-align: center; padding: 60px 24px; }
.fyp-loader { position: relative; width: 80px; height: 80px; margin: 0 auto 24px; }
.fyp-loader-ring {
  width: 80px; height: 80px; border-radius: 50%;
  border: 4px solid var(--fyp-border, rgba(255,255,255,0.1));
  border-top-color: var(--fyp-accent, #ff2d55);
  animation: fyp-spin 1s linear infinite;
}
.fyp-loader-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 28px; animation: fyp-pulse 1.5s ease-in-out infinite;
}
@keyframes fyp-spin { to { transform: rotate(360deg); } }
@keyframes fyp-pulse { 0%,100% { opacity: 1; transform: translate(-50%,-50%) scale(1); } 50% { opacity: .7; transform: translate(-50%,-50%) scale(1.1); } }

.fyp-generating-title { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.fyp-generating-steps { display: flex; flex-direction: column; gap: 10px; max-width: 300px; margin: 0 auto; }
.fyp-gen-step {
  padding: 10px 16px; border-radius: 8px;
  background: var(--fyp-card-bg, rgba(255,255,255,0.04));
  color: var(--fyp-text-muted, #666); font-size: 14px;
  transition: all .3s;
}
.fyp-gen-step.active {
  background: rgba(255,45,85,0.15); color: var(--fyp-text, #f0f0f0);
  border-left: 3px solid var(--fyp-accent, #ff2d55);
}
.fyp-gen-step.done { color: #22c55e; }

/* RESULTS */
.fyp-results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.fyp-results-header h3 { font-size: 20px; font-weight: 700; }
.fyp-btn-back {
  background: var(--fyp-card-bg, rgba(255,255,255,0.06));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.1));
  color: var(--fyp-text, #f0f0f0); padding: 8px 16px;
  border-radius: 8px; cursor: pointer; font-size: 13px; transition: all .2s;
}
.fyp-btn-back:hover { background: var(--fyp-card-bg2, rgba(255,255,255,0.1)); }

/* RESULT CARDS */
.fyp-result-card {
  background: var(--fyp-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  border-radius: 12px; padding: 20px; margin-bottom: 16px;
  transition: border-color .2s;
}
.fyp-result-card:hover { border-color: var(--fyp-accent, #ff2d55); }
.fyp-result-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.fyp-result-badge {
  background: rgba(255,45,85,0.15); color: var(--fyp-accent, #ff2d55);
  padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.fyp-copy-btn {
  background: var(--fyp-card-bg2, rgba(255,255,255,0.08));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.1));
  color: var(--fyp-text, #f0f0f0); padding: 6px 12px;
  border-radius: 6px; font-size: 12px; cursor: pointer; transition: all .2s;
}
.fyp-copy-btn:hover { background: var(--fyp-accent, #ff2d55); border-color: var(--fyp-accent, #ff2d55); }
.fyp-copy-btn.copied { background: #22c55e; border-color: #22c55e; }
.fyp-result-text { font-size: 15px; line-height: 1.6; color: var(--fyp-text, #f0f0f0); }

/* HASHTAG RESULTS */
.fyp-hashtag-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.fyp-hashtag-tag {
  background: var(--fyp-card-bg, rgba(255,255,255,0.06));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.1));
  color: var(--fyp-accent2, #00bcd4); padding: 6px 12px;
  border-radius: 20px; font-size: 13px; cursor: pointer; transition: all .2s;
}
.fyp-hashtag-tag:hover { background: var(--fyp-accent2, #00bcd4); color: #fff; }

/* VIRAL SCORE */
.fyp-viral-score-wrap { text-align: center; padding: 20px; }
.fyp-score-circle {
  width: 140px; height: 140px; border-radius: 50%;
  border: 8px solid var(--fyp-border, rgba(255,255,255,0.1));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative;
}
.fyp-score-number { font-size: 42px; font-weight: 800; color: var(--fyp-accent, #ff2d55); }
.fyp-score-grade { font-size: 18px; font-weight: 700; color: var(--fyp-text-muted, #aaa); }
.fyp-score-bars { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.fyp-score-bar-row { display: flex; align-items: center; gap: 12px; }
.fyp-score-bar-label { width: 140px; font-size: 13px; color: var(--fyp-text-muted, #aaa); text-align: right; }
.fyp-score-bar-track { flex: 1; height: 8px; background: var(--fyp-card-bg, rgba(255,255,255,0.08)); border-radius: 4px; overflow: hidden; }
.fyp-score-bar-fill { height: 100%; background: linear-gradient(90deg, var(--fyp-accent, #ff2d55), var(--fyp-accent2, #ff6b35)); border-radius: 4px; transition: width .8s ease; }
.fyp-score-bar-val { width: 35px; font-size: 12px; font-weight: 700; }

/* SCHEDULE TABLE */
.fyp-schedule-table { width: 100%; border-collapse: collapse; }
.fyp-schedule-table th, .fyp-schedule-table td {
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--fyp-border, rgba(255,255,255,0.06));
  font-size: 14px;
}
.fyp-schedule-table th { color: var(--fyp-text-muted, #aaa); font-weight: 600; font-size: 12px; text-transform: uppercase; }
.fyp-time-badge {
  background: rgba(255,45,85,0.15); color: var(--fyp-accent, #ff2d55);
  padding: 3px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; margin-right: 4px;
}

/* TREND CARDS */
.fyp-trend-section { margin-bottom: 24px; }
.fyp-trend-section-title { font-size: 14px; font-weight: 700; text-transform: uppercase; color: var(--fyp-text-muted, #aaa); margin-bottom: 12px; letter-spacing: .5px; }
.fyp-trend-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--fyp-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  border-radius: 10px; padding: 14px; margin-bottom: 8px;
}
.fyp-trend-icon { font-size: 24px; }
.fyp-trend-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.fyp-trend-desc { font-size: 13px; color: var(--fyp-text-muted, #aaa); }
.fyp-viral-pct { background: rgba(34,197,94,0.15); color: #22c55e; padding: 3px 8px; border-radius: 4px; font-size: 12px; font-weight: 700; margin-left: auto; white-space: nowrap; }

/* RELATED TOOLS */
.fyp-related-tools { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--fyp-border, rgba(255,255,255,0.08)); }
.fyp-related-tools h4 { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.fyp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fyp-related-card {
  background: var(--fyp-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  border-radius: 10px; padding: 16px; text-align: center;
  cursor: pointer; transition: all .2s; text-decoration: none; color: inherit;
}
.fyp-related-card:hover { border-color: var(--fyp-accent, #ff2d55); transform: translateY(-2px); }
.fyp-related-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.fyp-related-label { font-size: 13px; font-weight: 600; }

/* MODAL */
.fyp-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 16px; }
.fyp-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.fyp-modal-box {
  position: relative; z-index: 1; background: var(--fyp-modal-bg, #111);
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.12));
  border-radius: 16px; padding: 32px; max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto;
}
.fyp-modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  background: var(--fyp-card-bg, rgba(255,255,255,0.06));
  border: none; color: var(--fyp-text, #f0f0f0);
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 16px; transition: background .2s;
}
.fyp-modal-close-btn:hover { background: var(--fyp-card-bg2, rgba(255,255,255,0.12)); }
.fyp-pricing-header { text-align: center; margin-bottom: 24px; }
.fyp-pricing-header h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.fyp-pricing-header p { color: var(--fyp-text-muted, #aaa); }
.fyp-pricing-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.fyp-pricing-col {
  background: var(--fyp-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  border-radius: 12px; padding: 20px; position: relative;
}
.fyp-pricing-premium { border-color: var(--fyp-accent, #ff2d55); background: rgba(255,45,85,0.06); }
.fyp-popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--fyp-accent, #ff2d55); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; white-space: nowrap;
}
.fyp-pricing-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.fyp-pricing-col ul { list-style: none; margin-bottom: 16px; }
.fyp-pricing-col li { font-size: 13px; padding: 4px 0; color: var(--fyp-text-muted, #bbb); }
.fyp-price-tag { font-size: 18px; font-weight: 800; color: var(--fyp-accent, #ff2d55); }

.fyp-google-login-btn {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  width: 100%; padding: 14px; border-radius: 10px;
  background: #fff; color: #333; border: none;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all .2s;
}
.fyp-google-login-btn:hover { background: #f0f0f0; }
.fyp-login-note { font-size: 12px; color: var(--fyp-text-muted, #888); text-align: center; margin-top: 10px; }

.fyp-payment-option {
  background: var(--fyp-card-bg, rgba(255,255,255,0.04));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
  border-radius: 10px; padding: 16px; margin-bottom: 12px;
}
.fyp-payment-option h5 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.fyp-payment-option p { font-size: 13px; color: var(--fyp-text-muted, #bbb); line-height: 1.5; }
.fyp-screenshot-upload { text-align: center; margin-top: 16px; }
.fyp-email-btn {
  display: inline-block; background: var(--fyp-accent, #ff2d55); color: #fff;
  padding: 10px 20px; border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: 14px; margin-top: 10px;
}

/* LIMIT NOTICE */
.fyp-limit-notice {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
  background: var(--fyp-modal-bg, #111);
  border: 1px solid var(--fyp-accent, #ff2d55);
  border-radius: 12px; padding: 16px 20px; z-index: 500;
  max-width: 500px; width: calc(100% - 32px);
}
.fyp-limit-inner { display: flex; align-items: center; gap: 12px; }
.fyp-limit-icon { font-size: 24px; }
.fyp-limit-inner p { font-size: 13px; color: var(--fyp-text-muted, #aaa); margin: 4px 0 0; }
.fyp-limit-inner strong { font-size: 15px; }
.fyp-btn-upgrade {
  background: var(--fyp-accent, #ff2d55); color: #fff; border: none;
  padding: 8px 16px; border-radius: 8px; cursor: pointer;
  font-weight: 700; font-size: 13px; white-space: nowrap; margin-left: auto;
}
.fyp-limit-close {
  background: none; border: none; color: var(--fyp-text-muted, #aaa);
  font-size: 16px; cursor: pointer; padding: 4px;
}

/* ANCHOR AD */
.fyp-ad-anchor {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: var(--fyp-nav-bg, rgba(10,10,10,0.98));
  border-top: 1px solid var(--fyp-border, rgba(255,255,255,0.1));
  text-align: center; padding: 8px;
}
.fyp-anchor-close {
  position: absolute; top: 4px; right: 8px; background: none; border: none;
  color: var(--fyp-text-muted, #aaa); font-size: 14px; cursor: pointer;
}

/* VIGNETTE AD */
.fyp-vignette-ad {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,0.85); display: flex;
  align-items: center; justify-content: center;
}
.fyp-vignette-inner {
  background: var(--fyp-modal-bg, #111);
  border-radius: 12px; padding: 20px; max-width: 420px; width: 100%;
  text-align: center; position: relative;
}
.fyp-vignette-close {
  display: block; margin: 12px auto 0;
  background: var(--fyp-card-bg, rgba(255,255,255,0.06));
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.1));
  color: var(--fyp-text, #f0f0f0); padding: 8px 20px;
  border-radius: 6px; cursor: pointer; font-size: 13px;
}

/* SOCIAL SHARING */
.fyp-share-wrap {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 16px 0; margin-top: 8px;
  border-top: 1px solid var(--fyp-border, rgba(255,255,255,0.08));
}
.fyp-share-label {
  font-size: 13px; font-weight: 600; color: var(--fyp-text-muted, #aaa);
  margin-right: 4px;
}
.fyp-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: all .2s;
  border: 1px solid var(--fyp-border, rgba(255,255,255,0.1));
  background: var(--fyp-card-bg, rgba(255,255,255,0.05));
  color: var(--fyp-text, #f0f0f0);
}
.fyp-share-btn:hover { transform: translateY(-1px); }
.fyp-share-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.fyp-share-tw:hover { background: #000; border-color: #000; color: #fff; }
.fyp-share-wa:hover { background: #25d366; border-color: #25d366; color: #fff; }
.fyp-share-copy:hover { background: var(--fyp-accent, #ff2d55); border-color: var(--fyp-accent, #ff2d55); color: #fff; }

/* TOAST */
.fyp-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #22c55e; color: #fff; padding: 10px 24px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  opacity: 0; transition: all .3s; z-index: 9999; pointer-events: none;
}
.fyp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .fyp-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .fyp-trust-points { grid-template-columns: 1fr; }
  .fyp-trust-divider { display: none; }
  .fyp-trust-stat { padding: 8px 16px; }
  .fyp-ads-row { grid-template-columns: 1fr; }
  .fyp-related-grid { grid-template-columns: 1fr 1fr; }
  .fyp-pricing-compare { grid-template-columns: 1fr; }
  .fyp-score-bar-label { width: 100px; font-size: 11px; }
}
@media (max-width: 480px) {
  .fyp-hero { padding: 32px 16px 24px; }
  .fyp-tools-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .fyp-tool-card-btn { padding: 14px 10px; }
  .fyp-tool-card-icon { font-size: 26px; }
  .fyp-modal-box { padding: 20px 16px; }
  .fyp-related-grid { grid-template-columns: 1fr; }
}
