* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e6f0ff;
  color: #333;
}

.browser-bar {
  background-color: #1689ff;
  color: white;
  padding: 8px 0;
  text-align: center;
  font-weight: 600;
  position: relative;
  font-size: 16px;
}

.browser-bar .circles {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
}

.browser-bar .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.circle.red { background: #d33f49; }
.circle.orange { background: #d48a31; }
.circle.green { background: #4db54d; }

.search-container {
  margin: 16px 40px;
}

.search-bar {
  width: 100%;
  height: 50px;
  border: 1px solid black;
  padding: 8px 12px;
  font-size: 16px;
  outline: none;
}

nav {
  margin: 16px 40px;
  font-size: 14px;
}

nav a {
  text-decoration: none;
  color: black;
  margin: 0 8px;
}

nav a:not(:last-child)::after {
  content: "|";
  margin-left: 8px;
  color: #555;
}

nav a.disabled {
  color: #bbb;
  pointer-events: none;
}

h1 {
  margin: 24px 40px 16px;
  color: #445dbd;
  font-weight: normal;
  font-size: 20px;
}

.content {
  display: flex;
  gap: 40px;
  margin: 0 40px 40px;
}

.card {
  width: 150px;
  text-align: center;
}

.card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  filter: blur(6px);
  background: #999;
}

.card p {
  font-style: italic;
  font-size: 12px;
  margin-top: 8px;
  line-height: 1.2;
  color: #222;
}
