* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f6f4;
  color: #111;
}

.header {
  height: 76px;
  background: #080808;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px;
  position: relative;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  letter-spacing: 8px;
  font-weight: 700;
}

.create-btn {
  background: #fff;
  color: #111;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.lang {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
}

.lang select {
  background: transparent;
  color: white;
  border: none;
  font-size: 16px;
  outline: none;
}

.lang option {
  color: black;
}

.dropdown {
  display: none;
  position: absolute;
  top: 88px;
  right: 42px;
  width: 300px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  padding: 14px 0;
  z-index: 10;
}

.dropdown.open {
  display: block;
}

.dropdown-title {
  font-weight: 800;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
  margin-bottom: 6px;
}

.dropdown div:not(.dropdown-title) {
  padding: 13px 24px;
  font-size: 17px;
  cursor: pointer;
}

.dropdown div:not(.dropdown-title):hover {
  background: #f2f2f2;
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 82px;
  letter-spacing: 18px;
  font-weight: 900;
}
