.elementor-1815 .elementor-element.elementor-element-9979d7b:not(.elementor-motion-effects-element-type-background), .elementor-1815 .elementor-element.elementor-element-9979d7b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#01152E;}.elementor-1815 .elementor-element.elementor-element-9979d7b > .elementor-background-overlay{background-color:#01152E;opacity:1;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-1815 .elementor-element.elementor-element-9979d7b{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}/* Start custom CSS for section, class: .elementor-element-9979d7b *//* SCOPED DARK THEME FOR ELEMENTOR HTML WIDGET */
.hackwithgoogle {
  --bg: #0b0f16;
  --card: #141a23;
  --text: #e8ecf2;
  --muted: #8a94a6;
  --accent: #00f5a0;
  --accent-600: #00d58d;
  --border: #1e2632;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  --glass: rgba(255, 255, 255, 0.05);
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0b0f16 0%, #0e141d 100%);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* container box */
.hackwithgoogle .container {
  background: linear-gradient(180deg, var(--card), #0f1620);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

/* heading */
.hackwithgoogle .container h1 {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 245, 160, 0.2);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

/* search bar area */
.hackwithgoogle .search-container {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hackwithgoogle .search-container label {
  font-size: 0.95rem;
  color: var(--muted);
  min-width: 120px;
}

/* input field */
.hackwithgoogle #domainInput {
  flex: 1 1 320px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
  transition: 0.25s ease;
}

.hackwithgoogle #domainInput::placeholder {
  color: #6f788a;
}

.hackwithgoogle #domainInput:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(0, 245, 160, 0.25);
  outline: none;
  transform: scale(1.01);
}

/* tooltip bubble */
.hackwithgoogle #tooltip {
  position: absolute;
  display: none;
  background: rgba(15, 20, 27, 0.95);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  z-index: 100;
  line-height: 1.4;
  transition: 0.3s;
}

/* dork list */
.hackwithgoogle #dorkList {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 14px;
}

/* list items */
.hackwithgoogle #dorkList li {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: 0.25s;
}

.hackwithgoogle #dorkList li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,245,160,0.1);
}

/* section title inside list */
.hackwithgoogle .description {
  margin: 0 0 8px 0;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: capitalize;
}

/* link design */
.hackwithgoogle .dorkLink {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-family: "Fira Code", monospace;
  font-size: 0.95rem;
  background: linear-gradient(90deg, rgba(0,245,160,0.08), rgba(0,245,160,0.03));
  padding: 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  word-break: break-word;
}

.hackwithgoogle .dorkLink:hover {
  color: var(--accent);
  border-color: var(--accent-600);
  box-shadow: 0 0 18px rgba(0,245,160,0.15);
  transform: translateY(-2px);
}

/* mobile tweaks */
@media (max-width: 560px) {
  .hackwithgoogle .container {
    padding: 20px;
  }
  .hackwithgoogle #dorkList {
    grid-template-columns: 1fr;
  }
  .hackwithgoogle .search-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .hackwithgoogle .search-container label {
    min-width: 0;
  }
}/* End custom CSS */