.second-screen { min-height: 60vh; padding: 64px 0; background: #0B1220; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
.feature-card { border: 1px solid #E5E7EB; border-radius: 14px; background: #FFFFFF; padding: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.feature-icon { width: 24px; height: 24px; display: block; margin-bottom: 8px; opacity: 0.9; }
.extension-card { padding: 0; }
.extension-button { display: inline-flex; gap: 8px; align-items: center; padding: 10px 14px; background: #111827; color: #FFFFFF; border: 1px solid rgba(255,255,255,0.1); text-align: left; cursor: pointer; border-radius: 9999px; font-family: Montserrat, Inter, sans-serif; font-weight: 600; font-size: 14px; }
.extension-button:hover { background: #0f172a; }
.extension-button.ext-inline { box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.chrome-icon { width: 32px; height: 32px; }
.ext-copy { display: grid; }
.ext-copy strong { font-family: Montserrat, Inter, sans-serif; font-size: 16px; }
.ext-copy span { color: #4B5563; font-size: 14px; }
.feature-card h3 { margin: 0 0 8px 0; font-family: Montserrat, Inter, sans-serif; font-weight: 600; font-size: 20px; color: #111111; }
.feature-card p { margin: 0; color: #4B5563; font-size: 15px; line-height: 1.5; }
.legal-links { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
:root { color-scheme: light; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; background: #FFFFFF; color: #111111; }
.container { width: min(960px, 92%); margin: 0 auto; }
.site-header { padding: 24px 0; border-bottom: 0; }
.header-row { display: flex; align-items: center; justify-content: space-between; }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a { color: #111111; text-decoration: none; font-size: 14px; border-bottom: 2px solid transparent; padding-bottom: 2px; text-transform: uppercase; letter-spacing: 0.02em; font-weight: 500; }
.header-nav a:hover, .header-nav a:focus { border-bottom-color: #111111; outline: none; }
.brand { display: flex; align-items: center; gap: 12px; font-family: Montserrat, Inter, sans-serif; font-weight: 700; }
.logo { font-size: 36px; }
.brand-content { display: flex; flex-direction: column; gap: 2px; }
.brand-text { font-size: 24px; font-weight: 700; }
.brand-tagline { font-size: 12px; font-weight: 400; color: #6B7280; text-transform: uppercase; letter-spacing: 0.05em; }
.hero { 
  min-height: 80vh; 
  padding: 56px 0; 
  display: flex; 
  align-items: center; 
  background: linear-gradient(135deg, #0B1220 0%, #1E293B 100%);
  position: relative;
  overflow: visible; /* allow suggestions dropdown to overflow */
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 1.1fr 0.9fr; 
  align-items: center; 
  gap: 48px; 
  width: min(960px, 92%); 
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 640px; }
.hero-title { margin: 0; font-family: Montserrat, Inter, sans-serif; font-weight: 700; font-size: 48px; line-height: 1.1; color: #FFFFFF; }
.hero-sub { margin: 12px 0 0 0; color: #E5E7EB; font-size: 18px; }

.verification-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 32px 0;
  padding: 12px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.counter-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #10B981;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.counter-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.savings-indicator {
  margin: 8px 0 32px 0;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  width: fit-content;
}

.savings-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #10B981;
  font-weight: 600;
}

.search-section { padding: 8px 0 24px 0; }
#search-form + .ai-note { margin-top: 8px; font-size: 14px; color: #E5E7EB; max-width: 60ch; }
#search-form { 
  display: grid; 
  grid-template-columns: 1fr auto; 
  gap: 12px; 
  position: relative; 
  margin-top: 32px;
  max-width: 500px;
}
.hero-visual { 
  display: flex; 
  justify-content: center; 
  align-items: center;
  padding: 20px;
}
.hero-visual img { 
  max-width: 100%; 
  height: auto; 
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
  /* Prevent layout shift while loading */
  min-height: 200px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  display: block;
  /* Optimize loading */
  image-rendering: optimizeSpeed;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero-visual img:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

#store-input { 
  padding: 16px 20px; 
  font-size: 16px; 
  border: 2px solid rgba(255,255,255,0.1); 
  background: rgba(255,255,255,0.95); 
  border-radius: 12px; 
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
#store-input:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
  background: #FFFFFF;
}
#get-code-btn { 
  padding: 16px 32px; 
  font-size: 16px; 
  font-family: Montserrat, Inter, sans-serif; 
  font-weight: 600; 
  border: 0; 
  border-radius: 9999px; 
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%); 
  color: #ffffff; 
  cursor: pointer; 
  box-shadow: 0 8px 25px rgba(59,130,246,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#get-code-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
#get-code-btn:hover::before {
  left: 100%;
}
#get-code-btn:active { transform: translateY(1px); }
#get-code-btn:hover { background: #2563EB; }
#store-suggestions { 
  position: absolute; 
  top: 56px; 
  left: 0; 
  right: auto; 
  background: #FFFFFF; 
  border: 1px solid #E5E7EB; 
  border-radius: 10px; 
  list-style: none; 
  margin: 6px 0 0 0; 
  padding: 6px; 
  max-height: 240px; 
  overflow: auto; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.06); 
  z-index: 1000;
  width: auto; /* width will be set to match input via JS */
  box-sizing: border-box;
}
#store-suggestions[hidden] { display: none; }
#store-suggestions:empty { display: none; }
#store-suggestions li { padding: 8px 10px; border-radius: 6px; cursor: pointer; }
#store-suggestions li[aria-selected="true"], #store-suggestions li:hover { background: #F3F4F6; }
.banner { 
  padding: 24px 0; 
  border-top: 1px solid #E5E7EB; 
  border-bottom: 0; 
  background: #FFFFFF; 
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 0;
}
.features { padding: 16px 0 24px 0; }
.second-screen .copy-title { margin: 0; font-size: 22px; color: #FFFFFF !important; }
.features-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.features .feature-list { margin: 0; padding-left: 18px; }
.marquee { 
  display: inline-flex; 
  align-items: center; 
  gap: 32px; 
  overflow: visible; 
  width: max-content;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent); 
  will-change: transform;
  animation: scroll 60s linear infinite;
  flex-shrink: 0;
}
.marquee:hover { animation-play-state: paused; }

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* Ensure marquee container has proper overflow */
.banner {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
.marquee .logo-item { 
  background: white; 
  border: 1px solid #E5E7EB; 
  padding: 8px 12px; 
  margin: 0 8px; 
  min-width: 80px; 
  height: 60px; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer; 
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.marquee .logo-item:focus { outline: 2px solid #3B82F6; outline-offset: 2px; border-radius: 8px; }
.marquee .logo-item:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
  border-color: #3B82F6; 
  z-index: 2; /* ensure hover border is above previous section */
  position: relative;
}
.logo-emoji { 
  font-size: 20px; 
  margin-bottom: 2px; 
}
.logo-name { 
  font-size: 10px; 
  font-weight: 500; 
  color: #374151; 
  text-align: center; 
  line-height: 1.2; 
}
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.45); display: grid; place-items: center; padding: 16px; z-index: 9999; }
.modal[hidden] { display: none; }
.modal-content { 
  background: #FFFFFF; 
  border-radius: 16px; 
  width: min(480px, 96%); 
  padding: 32px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: relative;
  text-align: center;
  overflow: visible;
  max-height: 90vh;
  overflow-y: auto;
}

#ext-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #111827;
  margin: 40px 0 8px 0; /* Added top margin to clear close button */
  line-height: 1.2;
}

#ext-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.ext-form { 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
  margin-top: 0;
}

.ext-form input[type="email"] { 
  padding: 16px 20px; 
  border: 2px solid #E5E7EB; 
  border-radius: 12px; 
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #FAFAFA;
}

.ext-form input[type="email"]:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  background: #FFFFFF;
}

.ext-form button[type="submit"] {
  padding: 16px 24px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.ext-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

#ext-thanks {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #10B981;
  margin: 16px 0 0 0;
  font-weight: 500;
}
.modal-close { 
  position: absolute; 
  top: 16px; 
  right: 16px; 
  background: #F3F4F6; 
  border: 1px solid #E5E7EB; 
  border-radius: 50%; 
  width: 36px; 
  height: 36px; 
  cursor: pointer; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6B7280;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.modal-close:hover {
  background: #E5E7EB;
  color: #374151;
  transform: scale(1.05);
}
.code-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.code-card { border: 1px solid #111111; background: #FFFFFF; border-radius: 12px; padding: 12px; display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; }
.code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; background: #f5f5f5; padding: 6px 8px; border-radius: 8px; }
.skeleton { display: grid; gap: 8px; }
.skeleton .bar { height: 12px; background: linear-gradient(90deg, #eee, #f5f5f5, #eee); border-radius: 6px; animation: shimmer 1.2s infinite linear; }
.skeleton .bar.short { width: 60%; }
@keyframes shimmer { 0% { background-position: -200px 0; } 100% { background-position: 200px 0; } }
.copy-code-btn { padding: 12px 16px; background: #111111; color: #ffffff; border-radius: 10px; border: 1px solid #111111; font-family: Montserrat, Inter, sans-serif; font-weight: 600; cursor: pointer; transition: background 0.2s ease; }
.copy-code-btn:hover { background: #000000; }
.site-footer { 
  margin-top: auto; 
  padding: 48px 0 32px 0; 
  background: #F9FAFB; 
  border-top: 1px solid #E5E7EB;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-logo .logo {
  font-size: 24px;
}
.brand-name {
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111827;
}
.footer-tagline {
  margin: 0;
  color: #6B7280;
  font-size: 14px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  justify-content: flex-end;
}
.footer-nav { 
  display: flex; 
  gap: 24px; 
  font-size: 14px;
}
.footer-nav a {
  color: #6B7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: #111827;
}
.footer-bottom {
  padding-top: 24px;
}
.footer-disclaimer {
  text-align: center;
}
.footer-disclaimer p {
  margin: 0 0 4px 0;
  color: #9CA3AF;
  font-size: 12px;
  line-height: 1.4;
}

/* Unified Footer Layout */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
  padding: 32px 0;
  border-bottom: 1px solid #E5E7EB;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-emoji {
  font-size: 32px;
  line-height: 1;
}

.brand-info h3 {
  margin: 0 0 4px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1F2937;
}

.brand-info p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4B5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #3B82F6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 16px 0;
}

.footer-legal {
  text-align: right;
}

.footer-copyright {
  margin: 0 0 4px 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.4;
}

.footer-disclaimer {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.4;
}
.affiliate-disclosure {
  font-style: italic;
}

.security-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #374151;
}

.badge-icon {
  font-size: 14px;
}

.badge-text {
  font-family: 'Inter', sans-serif;
}

.verification-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 16px 0;
  padding: 8px 12px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  width: fit-content;
}

.verification-badge .badge-icon {
  font-size: 16px;
}

.verification-badge .badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
}
.copy-block { margin-bottom: 12px; }
.copy-title { margin: 0 0 8px 0; font-size: 20px; font-family: Montserrat, Inter, sans-serif; font-weight: 600; color: #1F2937; }
.feature-list { margin: 0; padding-left: 18px; }
.meta { color: #444444; font-size: 12px; }
.footer-top { margin-bottom: 12px; }
.footer-ext { display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.extension-button.ext-footer { background: #111827; color: #FFFFFF; border: 1px solid rgba(0,0,0,0.2); padding: 8px 12px; font-size: 12px; }

/* Secondary Page Content Styling */
.page-content {
  padding: 48px 0;
  line-height: 1.7;
}

.page-content h1 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #111827;
}

.page-content h2 {
  font-size: 24px;
  margin: 24px 0 12px 0;
  color: #374151;
}

.page-content h3 {
  font-size: 20px;
  margin: 20px 0 8px 0;
  color: #4B5563;
}

.page-content p {
  margin-bottom: 12px;
  color: #4B5563;
}

.page-content ul, .page-content ol {
  margin: 12px 0;
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 6px;
  color: #4B5563;
}

.page-content strong {
  color: #111827;
  font-weight: 600;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #6B7280;
}

.breadcrumb a {
  color: #3B82F6;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.content-section {
  margin-bottom: 24px;
}

.content-section h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.content-section p {
  margin-bottom: 10px;
}

.content-block {
  max-width: 800px;
}

/* Professional step cards for How It Works page */
.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

.step-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s ease;
}

.step-card:hover {
  border-color: #3B82F6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.step-number {
  background: #3B82F6;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.step-content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1F2937;
}

.step-content p {
  margin: 0;
  color: #4B5563;
  line-height: 1.5;
}

/* Quality assurance section styling */
.quality-section {
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.quality-section h2 {
  margin: 0 0 12px 0;
  color: #0369A1;
  font-size: 20px;
}

.quality-section p {
  margin: 0;
  color: #0C4A6E;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-nav {
    gap: 20px;
  }
  
  .page-content {
    padding: 32px 0;
  }
  
  .page-content h1 {
    font-size: 28px;
  }
  
  .page-content h2 {
    font-size: 22px;
  }
}
.extension-button.ext-footer .chrome-icon { width: 20px; height: 20px; }
.extension-button.ext-header { 
  background: #F3F4F6; 
  color: #374151; 
  border: 1px solid #D1D5DB; 
  padding: 6px 12px; 
  font-size: 13px;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.extension-button.ext-header:hover { 
  background: #E5E7EB; 
  border-color: #9CA3AF;
  color: #111827;
}
.extension-button.ext-header .chrome-icon { width: 16px; height: 16px; }

.body, body, html { min-height: 100%; }
body { display: flex; flex-direction: column; }
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.consent { 
  position: fixed; 
  left: 12px; 
  right: 12px; 
  bottom: 12px; 
  background: #fff; 
  border: 1px solid #eee; 
  border-radius: 12px; 
  padding: 12px; 
  box-shadow: 0 12px 30px rgba(0,0,0,0.1); 
  display: grid; 
  gap: 10px; 
  z-index: 10000;
}
.consent[hidden] { display: none; }
.consent-actions { display: flex; gap: 8px; }
.consent .secondary { background: #f6f6f6; color: #111; border: 1px solid #eaeaea; }

/* Polished consent buttons to match brand */
#consent-accept, #consent-decline {
  padding: 10px 18px;
  border-radius: 9999px;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 600;
  border: 1px solid transparent;
}
#consent-accept {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(59,130,246,0.25);
}
#consent-accept:hover { filter: brightness(1.05); }
#consent-decline {
  background: #F3F4F6;
  color: #374151;
  border-color: #D1D5DB;
}
#consent-decline:hover { background: #E5E7EB; }
/* Ensure Safari text visibility and contrast */
#consent-accept, #consent-accept * { color: #FFFFFF !important; -webkit-text-fill-color: #FFFFFF; }
#consent-decline, #consent-decline * { color: #374151 !important; -webkit-text-fill-color: #374151; }

/* Page content styles */
.page-content { 
  padding: 40px 0 60px 0; 
  min-height: calc(100vh - 200px); 
  background: #FFFFFF;
}

.page-content h1 { 
  font-family: Montserrat, Inter, sans-serif; 
  font-weight: 700; 
  font-size: 28px; 
  margin: 0 0 20px 0; 
  color: #1F2937; 
  line-height: 1.2;
}

.content-block { 
  max-width: 720px; 
  margin: 0 auto;
}

.content-block p { 
  margin: 0 0 10px 0; 
  line-height: 1.6; 
  color: #4B5563; 
  font-size: 16px;
}

.content-block p:last-child { 
  margin-bottom: 0; 
}

.content-section {
  margin: 32px 0;
  padding: 24px 0;
}

.content-section h2 {
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 16px 0;
  color: #1F2937;
}

.content-section h3 {
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 12px 0;
  color: #374151;
}

.steps-list { 
  margin: 32px 0; 
  padding-left: 0; 
  list-style: none; 
}

.steps-list li { 
  margin: 20px 0; 
  padding: 20px 0 20px 40px; 
  position: relative; 
  border-left: 3px solid #3B82F6; 
  background: #F9FAFB; 
  border-radius: 0 8px 8px 0; 
}

.steps-list li::before { 
  content: counter(step-counter); 
  counter-increment: step-counter; 
  position: absolute; 
  left: 12px; 
  top: 20px; 
  background: #3B82F6; 
  color: white; 
  width: 24px; 
  height: 24px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 14px; 
  font-weight: 600; 
}

.steps-list { 
  counter-reset: step-counter; 
}

/* Breadcrumb navigation */
.breadcrumb {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6B7280;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #D1D5DB;
}

.breadcrumb a {
  color: #3B82F6;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Content list styling */
.content-block ul {
  margin: 16px 0;
  padding-left: 20px;
}

.content-block li {
  margin: 8px 0;
  line-height: 1.6;
  color: #4B5563;
}

.content-block ul li {
  list-style-type: disc;
}

.content-block strong {
  color: #1F2937;
  font-weight: 600;
}

.content-block a {
  color: #3B82F6;
  text-decoration: none;
}

.content-block a:hover {
  text-decoration: underline;
}

/* AdSense Ad Containers */
.ad-container {
  margin: 24px 0;
  text-align: center;
}

.ad-banner {
  margin: 24px 0;
}

.ad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 100%;
}

.ad-section {
  background: #FFFFFF;
  padding: 24px 0;
}

/* Support section */
.support { padding: 24px 0 40px; }
.support .support-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { background:#111827; color:#fff; border:none; padding:10px 16px; border-radius:8px; cursor:pointer; }
.btn:hover { background:#0b1220; }
.btn.btn-secondary { background:#374151; }
.btn.btn-secondary:hover { background:#1f2937; }

.ad-label {
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ad-slot {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

/* Mobile ad optimization */
@media (max-width: 768px) {
  .ad-section {
    padding: 16px 0;
  }
  
  .ad-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .ad-slot {
    min-height: 150px;
    width: 100%;
  }
  
  .adsbygoogle {
    min-height: 120px;
  }
}

/* AdSense ad styling */
.adsbygoogle {
  display: block !important;
  width: 100%;
  height: auto;
  min-height: 90px;
}

.ad-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  color: #9CA3AF;
  font-size: 14px;
  font-weight: 500;
}

.ad-placeholder-content {
  padding: 20px;
  border: 2px dashed #D1D5DB;
  border-radius: 4px;
}

/* Responsive ad sizing */
@media (max-width: 768px) {
  .ad-slot {
    min-height: 150px;
  }
  
  .adsbygoogle {
    min-height: 150px;
  }
  
  .ad-banner {
    margin: 16px 0;
  }
  
  .ad-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-links {
    align-items: center;
  }
  
  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-legal {
    text-align: center;
  }
  
  .security-badges {
    justify-content: center;
  }
  
  .steps-container {
    gap: 12px;
  }
  
  .step-card {
    padding: 16px;
    gap: 12px;
  }
  
  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .step-content h3 {
    font-size: 16px;
  }
  
  .quality-section {
    padding: 20px;
    margin: 20px 0;
  }
  
  /* Additional mobile optimizations */
  .feature-cards { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    padding: 10px;
  }
  
  .hero-visual img {
    max-width: 80%;
    height: auto;
    min-height: 150px;
  }
  
  .extension-button.ext-header {
    padding: 4px 6px;
    font-size: 10px;
    white-space: nowrap;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: none; /* Hide on mobile to prevent overflow */
  }
  
  .extension-button.ext-header .chrome-icon {
    width: 14px;
    height: 14px;
  }
  
  .header-nav {
    gap: 16px;
  }
  
  /* Mobile search form optimization */
  #search-form {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }
  
  #store-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
  }
  
  #get-code-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    min-height: 48px;
  }
  
  #store-suggestions {
    right: 0;
    left: 0;
  }
}


