body {
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
  background: #0C1E44;
  overflow-x: hidden;
}

.container {
  width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.row {
  width: 100%;
  margin-bottom: 16px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  margin-top: 16px;
}

.logo {
  height: 48px;
}

.support {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 16px;
}

.support span {
  font-weight: 700;
}

.support a {
  color: #fff;
  text-decoration: none;
}

.support a:hover {
  text-decoration: underline;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  border-radius: 16px;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 16px;
}

.glass {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(70px);
  -webkit-backdrop-filter: blur(70px);
  border: 0.5px solid rgba(223, 219, 233, 0.29);
}

.search {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 16px;
  box-sizing: border-box;
}

.search input {
  flex-grow: 1;
  border: none;
  background: transparent;
  font-size: 18px;
  color: white;
  outline: none;
}

.search-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

.card-row {
  display: flex;
  gap: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.card {
  color: white;
  padding: 16px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-large {
  width: 483px;
  height: auto;
  min-height: 256px;
  flex-shrink: 0;
  cursor: pointer;
}

.card-small {
  width: 234px;
  height: 100%;
  flex-shrink: 0;
  cursor: pointer;
}

.card-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 25.5px;
  margin-bottom: 8px;
}

.card-subtitle {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  margin-top: auto;
}

.card-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 18px;
}
