* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Header / Nav */
.site-header {
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A90D9;
  text-decoration: none;
}
.site-nav {
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.site-nav a:hover { color: #4A90D9; }

/* Main */
main {
  flex: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero */
.hero { text-align: center; margin-bottom: 2rem; }
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #4A90D9, #357ABD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle { color: #a0a0a0; max-width: 700px; margin: 0 auto; line-height: 1.7; }

/* Sections */
.site-section { margin: 2.5rem 0; }
.site-section h2 {
  font-size: 1.5rem;
  color: #c0c8d0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Link cards */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.link-card {
  display: block;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #4A90D9;
  transition: all 0.3s;
}
.link-card:hover {
  background: rgba(74, 144, 217, 0.2);
  border-color: #4A90D9;
  transform: translateY(-2px);
}
.link-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.link-card p { color: #a0a0a0; font-size: 0.9rem; line-height: 1.5; }
.link-card--fintools { color: #27ae60; }
.link-card--fintools:hover { background: rgba(39, 174, 96, 0.2); border-color: #27ae60; }
.link-card--gcserevise { color: #e67e22; }
.link-card--gcserevise:hover { background: rgba(230, 126, 34, 0.2); border-color: #e67e22; }
.link-card--easyplaytv { color: #e0245e; }
.link-card--easyplaytv:hover { background: rgba(224, 36, 94, 0.2); border-color: #e0245e; }

/* Content sections */
.content-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 1.5rem 0;
}
.content-section h3 { color: #4A90D9; font-size: 1.15rem; margin-bottom: 0.8rem; }
.content-section h3 a { color: inherit; text-decoration: none; }
.content-section h3 a:hover { text-decoration: underline; }
.content-section p { color: #8899a6; line-height: 1.7; margin-bottom: 0.8rem; font-size: 0.95rem; }
.content-section ul { margin-left: 1.5rem; margin-bottom: 0.8rem; }
.content-section li { color: #8899a6; line-height: 1.7; margin-bottom: 0.3rem; font-size: 0.95rem; }
.content-section a { color: #4A90D9; }

/* Tool grid */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.tool-tag {
  display: block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.85rem;
  color: #a0a0a0;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.tool-tag:hover {
  background: rgba(74, 144, 217, 0.15);
  border-color: rgba(74, 144, 217, 0.3);
}
a.tool-tag { cursor: pointer; }
.browse-cta { margin: 1.2rem 0 0; font-size: 1rem; }
.browse-cta a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  background: #4A90D9;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.browse-cta a:hover { background: #5BA0EA; }

/* FAQ */
.faq-item { margin-bottom: 1rem; }
.faq-item h4 { color: #c0c8d0; font-size: 1rem; margin-bottom: 0.3rem; }
.faq-item p { color: #8899a6; font-size: 0.95rem; line-height: 1.6; }

/* Privacy badges */
.badges { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.badge {
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid rgba(39, 174, 96, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: #27ae60;
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 2rem 20px;
  text-align: center;
  color: #556;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.footer-nav a { color: #4A90D9; text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }

.affiliate-section { margin: 2.5rem 0; }
.affiliate-section h2 { margin-bottom: 1rem; }
.affiliate-cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.affiliate-card {
  flex: 1; min-width: 200px; max-width: 320px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid #FF9900;
  border-radius: 8px; padding: 1.2rem;
  text-decoration: none; color: #fff;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.affiliate-card:hover {
  border-color: #FF9900;
  background: rgba(255,153,0,0.08);
  box-shadow: 0 4px 16px rgba(255, 153, 0, 0.2);
  transform: translateY(-1px);
}
.affiliate-card-title { font-weight: 700; margin-bottom: 0.3rem; }
.affiliate-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.affiliate-card-store { font-size: 0.75rem; color: #FF9900; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; }
.affiliate-card-store img { height: 14px; width: auto; vertical-align: middle; }
.affiliate-card-urgency {
  font-size: 0.65rem;
  color: #e0245e;
  margin-top: 0.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.affiliate-card[data-fastmail] .affiliate-card-icon {
  float: right;
  margin-left: 0.6rem;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  flex-shrink: 0;
}
 .fastmail-topbar {
   display: block;
   margin-bottom: 12px;
   text-decoration: none;
 }
 .fastmail-topbar[hidden] {
   display: none !important;
 }
 .fastmail-topbar img {
   display: block;
   width: 100%;
   max-width: 970px;
   height: auto;
   border-radius: 8px;
   margin: 0 auto;
   transition: box-shadow 0.2s, transform 0.15s;
 }
 .fastmail-topbar:hover img {
   box-shadow: 0 4px 16px rgba(139,92,246,0.35);
   transform: translateY(-1px);
 }
 .fastmail-topbar-icon {
   width: 20px;
   height: 20px;
   vertical-align: middle;
 }
.fastmail-topbar-text {
  color: #e0e7ff;
  font-weight: 600;
}
.fastmail-topbar-cta {
  color: #a78bfa;
  font-size: 0.75rem;
}
.fastmail-trademark {
  font-size: 0.65rem;
  color: #a0a0a0;
  margin-top: 0.3rem;
  line-height: 1.3;
}
.affiliate-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.8rem; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .link-cards { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .header-inner { flex-wrap: wrap; gap: 0.5rem; }
  .site-nav { gap: 1rem; }
  .affiliate-cards { flex-direction: column; }
  .affiliate-card { max-width: 100%; }
}
.share-section { text-align: center; padding: 1.5rem 0; }
.share-buttons { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-top: 0.5rem; }
.share-btn { display: inline-block; padding: 0.4rem 0.9rem; border-radius: 4px; font-size: 0.8rem; font-weight: 600; text-decoration: none; color: #fff; transition: opacity 0.2s; }
.share-btn:hover { opacity: 0.85; }
.share-twitter { background: #1DA1F2; }
.share-facebook { background: #1877F2; }
.share-linkedin { background: #0A66C2; }
.share-whatsapp { background: #25D366; color: #fff; }
.share-copy { background: var(--card-bg, #1e293b); border: 1px solid var(--border, #334155); cursor: pointer; }
