@import url("../fontawesome-free-5.15.4-web/css/all.min.css");

    :root {
      --bg: #f6f8fb;
      --surface: #ffffff;
      --surface-soft: #f9fafb;
      --text: #111827;
      --muted: #6b7280;
      --border: #e5e7eb;
      --border-strong: #999999;
      --primary: #2563eb;
      --primary-hover: #1d4ed8;
      --link: #2563eb;
      --accent-blue: #4285F4;
      --accent-green: #34A853;
      --accent-yellow: #FBBC04;
      --accent-red: #EA4335;
	  --accent-purple: #7c3aed;
      --focus: rgba(37, 99, 235, 0.18);
      --shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
      --radius-lg: 22px;
      --radius-md: 14px;
    }

    * { box-sizing: border-box; }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      margin: 0;
      background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32rem),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.10), transparent 30rem),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, var(--bg) 100%);
      color: var(--text);
      min-height: 100vh;
    }
	
	h1 {
      margin: 0;
      padding-bottom: 0.08em;
      font-size: clamp(36px, 6vw, 64px);
      line-height: 1.2;
      letter-spacing: -0.035em;
      color: var(--text);
    }
	
	h2 {
      margin: 0;
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.05;
      letter-spacing: -0.035em;
    }
		
    h3 {
      margin: 16px 0 8px;
      font-size: clamp(18px, 3vw, 22px);
      line-height: 1.05;
      letter-spacing: -0.035em;
    }

    .page-shell {
      max-width: 1120px;
      margin: 0 auto;
      padding: 48px 20px;
    }
	
	.hero {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 28px;
    }
	
	.legal-header {
      max-width: 760px;
      margin-bottom: 24px;
    }
	
	.last-updated {
      margin: 12px 0 0;
	  padding-left: 5px;
      color: var(--muted);
      font-size: 15px;
    } 

    .eyebrow {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 8px 16px;
      border: 1px solid rgba(37, 99, 235, 0.22);
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(37, 99, 235, 0.10), rgba(245, 158, 11, 0.12));
      color: #1d4ed8;
      font-size: 18px;
      font-weight: 800;
	  cursor: default;
    }
	
	.back-link {
      display: inline-flex;
      align-items: center;
      margin-bottom: 18px;
      padding: 10px 15px;
      border: 1px solid rgba(37, 99, 235, 0.22);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--link);
      text-decoration: none;
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
    }

    .back-link:hover {
      background: #eef2ff;
      text-decoration: none;
    }
	
	.back-link-icon{
	  margin: 0 5px 0 0;
	  position:relative;top: 1px;
	  font-size: 16px;
	}
	
	.search-label-row {
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  gap: 16px;
	  margin-bottom: 8px;
	}

	.search-label-row .small-label {
	  margin-bottom: 0;
	}

	.page-action-buttons {
	  display: flex;
	  gap: 8px;
	  flex-wrap: wrap;
	  justify-content: flex-end;
	}

	.page-action-btn {
	  display: inline-flex;
	  align-items: center;
	  gap: 6px;
	  padding: 6px 10px;
	  border-radius: 999px;
	  background: transparent;
	  border: 1px dashed var(--border);
	  color: var(--muted);
	  cursor: help;
	  font: inherit;
	  font-size: 13px;
	  font-weight: 700;
	  transition: all 140ms ease;
	}

	.page-action-btn i {
	  font-size: 14px;
	  color: var(--muted);
	  opacity: 0.85;
	}

	/* Hover = subtle emphasis, not "click me" */
	.page-action-btn:hover {
	  border-color: var(--primary);
	  color: var(--primary);
	  background: rgba(37, 99, 235, 0.06);
	}

	.page-action-btn:hover i {
	  color: var(--primary);
	  opacity: 1;
	}

	/* Focus (keyboard / accessibility) */
	.page-action-btn:focus-visible {
	  outline: none;
	  border-color: var(--primary);
	  box-shadow: 0 0 0 4px var(--focus);
	}
	
	.page-action-buttons {
	  opacity: 0.85;
	}

	.page-action-buttons:hover {
	  opacity: 1;
	}

	.info-wrap:focus-within .tooltip {
	  display: block;
	}

	.page-action-help .tooltip {
	  width: 280px;
	}

	.page-action-btn {
	  cursor: help;
	}

	.page-action-btn:focus-visible {
	  outline: none;
	  border-color: var(--primary);
	  box-shadow: 0 0 0 4px var(--focus);
	}

	@media (max-width: 640px) {
	  .search-label-row {
		align-items: flex-start;
		flex-direction: column;
	  }

	  .page-action-buttons {
		justify-content: flex-start;
	  }
	}
	
	.legal-content p {
      margin: 0 0 4px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .legal-content a {
      color: var(--link);
      font-weight: 700;
    }

    .highlight {
      background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-red));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
      padding-right: 0.05em;
    }

    .hero p {
      margin: 18px auto 0;
      max-width: 620px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.6;
    }

    .container {
      background: rgba(255, 255, 255, 0.90);
      padding: 28px;
      border: 1px solid rgba(229, 231, 235, 0.95);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
    }

    .small-label {
      display: block;
      margin: 0 0 8px;
      color: #374151;
      font-size: 16px;
      font-weight: 800;
    }

    input[type="search"],
    input[type="text"] {
      width: 100%;
      padding: 14px 15px;
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-md);
      background: var(--surface);
      color: var(--text);
      font: inherit;
      font-size: 15px;
      outline: none;
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    input[type="search"]:focus,
    input[type="text"]:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 5px var(--focus);
    }

    input[type="search"] {
      min-height: 54px;
      line-height: 1.4;
    }

    input::placeholder,
    input[type="search"]::placeholder { color: #9ca3af; }

    .checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 0;
      cursor: pointer;
      line-height: 1.3;
    }

    input[type="checkbox"] {
      width: 17px;
      height: 17px;
      margin: 1px 0 0;
      accent-color: var(--primary);
      flex: 0 0 auto;
    }

    .toggle-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 12px;
    }

    .toggle-with-info {
      display: inline-flex;
      align-items: center;
    }

    .info-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .tooltip {
      display: none;
      position: absolute;
      left: 50%;
      bottom: 140%;
      transform: translateX(-50%);
      width: 240px;
      padding: 10px 12px;
      border-radius: 10px;
      background: #111827;
      color: white;
      font-size: 12px;
      line-height: 1.4;
      z-index: 20;
    }

    .info-wrap:hover .tooltip {
      display: block;
    }

    .info-icon {
      display: inline-block;
      margin-left: 6px;
      color: var(--muted);
      font-size: 22px;
	  font-weight: bold;
      line-height: 1;
      cursor: help;
      align-self: center;
    }

    .exact-row {
      display: inline-flex;
      padding: 10px 12px;
      border-radius: 999px;
      background: var(--surface-soft);
      border: 1px solid var(--border);
      color: #374151;
      font-size: 14px;
      font-weight: 700;
    }

    .section-heading { margin: 36px 0 18px; }

    .section-heading h2 {
      margin: 0;
      font-size: 20px;
      letter-spacing: -0.03em;
    }

    .section-heading p {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .groups {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 12px;
      align-items: start;
    }

    .group-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px 16px 16px;
      background: var(--surface);
      align-self: start;
      min-height: 178px;
      box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
      transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    }

    .group-card::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 6px;
      background: var(--card-accent, var(--accent-blue));
    }
	
	.group-title {
      display: block;
      font-size: 15px;
      font-weight: 850;
      letter-spacing: -0.025em;
      line-height: 1.25;
	  height: 40px;
    }

    .group-description {
      margin-top: 8px;
	  padding: 0 25px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .group-card:hover {
      transform: translateY(-1px);
      border-color: var(--border-strong);
      box-shadow: 0 10px 24px rgba(17, 24, 39, 0.07);
    }


    .card-icon {
      position: absolute;
      right: 14px;
      bottom: 16px;
      font-size: 26px;
      color: var(--muted);
      opacity: 0.7;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .group-card:hover .card-icon {
      opacity: 1;
      transform: scale(1.1);
    }

    .group-card[data-group="distractions"] { --card-accent: var(--accent-red); }
    .group-card[data-group="seo"] { --card-accent: var(--accent-yellow); }
    .group-card[data-group="shopping"] { --card-accent: var(--accent-green); }
    .group-card[data-group="social"] { --card-accent: var(--accent-blue); }

    .group-header {
      display: flex;
      flex-direction: column;
      min-height: 132px;
    }

    .show-list-btn {
      align-self: flex-start;
      border: none;
      background: none;
      color: var(--link);
      cursor: pointer;
      padding: 0;
      margin-top: auto;
	  position:relative;top: 8px;
      font: inherit;
      font-size: 13px;
      font-weight: 800;
    }

    .show-list-btn:hover { text-decoration: underline; }

    .site-list {
      display: none;
      margin-top: 13px;
      padding-top: 13px;
      border-top: 1px solid var(--border);
    }

    .site-list.open { display: block; }

    .site-list label {
      margin-bottom: 9px;
      color: #374151;
      font-size: 14px;
      font-weight: 600;
    }

    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 24px;
    }

    .field-card {
      padding: 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface-soft);
    }

    .buttons {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    button.search-btn {
      min-height: 48px;
      padding: 13px 16px;
      border: 0;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, #4285F4, #1a73e8);
      color: white;
      cursor: pointer;
      font: inherit;
      font-size: 15px;
      font-weight: 850;
      transition: transform 140ms ease, box-shadow 140ms ease;
    }

    button.search-btn:hover {
      background: linear-gradient(135deg, #3367d6, #1558b0);
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
    }

    button.search-btn.search-btn-primary {
      background: linear-gradient(135deg, #34A853, #2c8f46);
    }

    button.search-btn.search-btn-primary:hover {
      background: linear-gradient(135deg, #2c8f46, #237a3a);
    }

    button.search-btn:active {
      transform: translateY(0);
      box-shadow: none;
    }

    .shortcut-note {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    kbd {
      display: inline-block;
      padding: 2px 6px;
      border: 1px solid var(--border-strong);
      border-bottom-width: 2px;
      border-radius: 6px;
      background: var(--surface-soft);
      color: #374151;
      font-family: inherit;
      font-size: 12px;
      font-weight: 800;
    }

    .note {
      margin: 18px 0 0;
      padding: 13px 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: #f8fafc;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .seo-section {
      margin-top: 28px;
      padding: 28px;
      border: 1px solid rgba(229, 231, 235, 0.95);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.86);
      box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
    }

    .seo-section h2 {
      margin: 0 0 12px;
      font-size: 28px;
      line-height: 1.15;
      letter-spacing: -0.04em;
    }

    .seo-section h3 {
      margin: 24px 0 10px;
      font-size: 18px;
      letter-spacing: -0.025em;
    }

    .seo-section p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    code {
      padding: 2px 5px;
      border-radius: 6px;
      background: #eef2ff;
      color: #1e40af;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      font-size: 0.92em;
    }

    .examples-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .example-card {
      padding: 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--surface-soft);
    }

    .example-label {
      display: block;
      margin-bottom: 8px;
      color: #374151;
      font-size: 13px;
      font-weight: 800;
    }

    .example-card code {
      display: block;
      overflow-x: auto;
      white-space: nowrap;
    }

    .site-footer {
      width: 100%;
      margin-top: 60px;
      background: linear-gradient(180deg, #0f172a, #020617);
      color: #cbd5f5;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 36px 20px 24px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-logo {
      font-size: 16px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #e0e7ff;
    }

    .footer-tagline {
      margin: 8px 0 0;
      font-size: 14px;
      color: #94a3b8;
      max-width: 320px;
      line-height: 1.5;
    }

    .footer-links {
      display: flex;
      gap: 18px;
    }

    .footer-links a {
      color: #a5b4fc;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
    }

    .footer-links a:hover {
      text-decoration: underline;
      color: #c7d2fe;
    }

    .footer-bottom {
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-bottom p {
      margin: 0;
      font-size: 13px;
      color: #94a3b8;
    }

    @media (max-width: 980px) {
      .groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .buttons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .group-card { min-height: 150px; }
      .group-header { min-height: 104px; }
	  
	.group-title {
	  height: auto;
    }
	  
	  .group-description {
        padding: 0 40px 0 0;
      }
	  
    }
	

    @media (max-width: 640px) {
      .page-shell { padding: 28px 14px; }
      .hero { text-align: left; }
      .hero p { font-size: 16px; }
      .container {
        display: flex;
        flex-direction: column;
        padding: 18px;
        border-radius: 18px;
      }
      .groups,
      .field-grid,
      .buttons,
      .examples-grid { grid-template-columns: 1fr; }
      .section-heading { order: 3; }
      .groups { order: 4; }
      .field-grid { order: 5; }
      .note { order: 6; }
      .group-card,
      .group-header { min-height: 0; }
      button.search-btn { width: 100%; }

      .footer-content {
        flex-direction: column;
        gap: 16px;
      }

      .footer-links {
        gap: 14px;
      }

    }