.domain-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
.domain-row h3 {
  margin: 0;
  font-size: 1.18rem;
  color: #3e7cb1;
  font-weight: 700;
}
.domain-first-result {
  font-size: 1.08rem;
  font-weight: 500;
  color: #1a2540;
  text-align: left;
}
/* Results Textbox Styling */
.results-box {
  margin: 2.2rem auto 0 auto;
  padding: 1.5rem 1.2rem;
  background: #f7fafc;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30, 60, 90, 0.10);
  min-height: 120px;
  max-width: 700px;
  width: 100%;
}
.results-domain {
  margin-bottom: 1.8rem;
}
.results-domain h3 {
  margin-bottom: 0.7rem;
  color: #3e7cb1;
  font-size: 1.18rem;
  font-weight: 700;
}
.results-domain ul {
  list-style: disc inside;
  padding-left: 1.2rem;
  margin: 0;
  text-align: left;
}
.results-domain li {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
  text-align: left;
}
.results-domain a {
  color: #1a2540;
  text-decoration: underline;
  transition: color 0.15s;
}
.results-domain a:hover {
  color: #3e7cb1;
}
/* Highlighted Centered Heading */
.highlight-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(90deg, #e9f0f7 60%, #c7d0e0 100%);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(62, 124, 177, 0.18), 0 1.5px 0 #3e7cb1 inset;
  padding: 1.2rem 0.5rem;
  margin: 0 auto 2.2rem auto;
  width: 80%;
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a2540;
  letter-spacing: -2px;
  text-shadow: 0 2px 12px rgba(62, 124, 177, 0.13), 0 1.5px 0 #fff;
}
/* --- AllThingsFinance Inspired Theme --- */

body {
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: linear-gradient(135deg, #e9f0f7 0%, #f7fafc 100%);
  margin: 0;
  padding: 0;
  color: #1a2540;
}

.container {
  max-width: 900px;
  margin: 48px auto;
  background: #fff;
  padding: 2.8rem 3.2rem;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(30, 60, 90, 0.10);
}


h1, h2, h3 {
  color: #1a2540;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 8px rgba(62, 124, 177, 0.08);
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 2.2rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}

/* Metrics/Stats Block */
.metrics {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem 0 1.5rem 0;
}
.metric {
  background: #f2f6fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30, 60, 90, 0.07);
  padding: 1.5rem 2.2rem;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.metric-value {
  color: #1a2540;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(62, 124, 177, 0.10);
}
.metric-label {
  color: #3e7cb1;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Buttons */
.domain-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.domain-btn, .search-btn, button {
  padding: 0.7rem 1.6rem;
  border: none;
  border-radius: 10px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(30, 60, 90, 0.08);
  background: linear-gradient(90deg, #1a2540 0%, #3e7cb1 100%);
  color: #fff;
}
.domain-btn:hover, .search-btn:hover, button:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 16px rgba(30, 60, 90, 0.13);
  background: linear-gradient(90deg, #3e7cb1 0%, #1a2540 100%);
}

/* Search Form Styling */
.search-form {
  display: flex;
  gap: 0;
  margin-bottom: 0.5rem;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.search-input {
  flex: 1;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 10px 0 0 10px;
  font-size: 1.08rem;
  background: #f2f6fa;
  color: #1a2540;
  outline: none;
  box-shadow: 0 1px 4px rgba(30, 60, 90, 0.04);
}
.search-btn {
  border-radius: 0 10px 10px 0;
  background: linear-gradient(90deg, #3e7cb1 0%, #1a2540 100%);
  color: #fff;
}

input[type="text"] {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #c7d0e0;
  border-radius: 6px;
  font-size: 1rem;
}

ul {
  list-style: none;
  padding: 0;
}

/* Card/Block Section */
.domains-section {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.domain-block {
  background: #f2f6fa;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30, 60, 90, 0.08);
  padding: 1.7rem 2.1rem;
  min-width: 220px;
  flex: 1 1 0;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.2rem;
}

.domain-block strong {
  color: #3e7cb1;
}

li {
  margin-bottom: 1rem;
  color: #3e7cb1;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  padding: 0.8rem 1rem;
}

/* Accent and Utility */
a {
  color: #1a2540;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover {
  color: #3e7cb1;
}

::-webkit-scrollbar {
  width: 8px;
  background: #e9f0f7;
}
::-webkit-scrollbar-thumb {
  background: #c7d0e0;
  border-radius: 8px;
}
