:root {
  --bg: #08111c;
  --surface: rgba(10, 22, 34, 0.88);
  --surface-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.12);
  --ink: #f3efe3;
  --muted: #b9c9d8;
  --accent: #ff8a5b;
  --accent-2: #ffd873;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 138, 91, 0.22), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(95, 208, 200, 0.18), transparent 24%),
    linear-gradient(180deg, #102034 0%, #0b1624 40%, #08111c 100%);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

main {
  margin: 0 auto;
  max-width: 980px;
  padding: 28px 20px 56px;
}

.card {
  backdrop-filter: blur(16px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  padding: 24px;
}

.eyebrow {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Avenir Next Condensed", "Trebuchet MS", sans-serif;
  line-height: 0.96;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.4rem);
  margin: 0 0 12px;
}

h2 {
  font-size: 1.8rem;
  margin: 24px 0 10px;
}

p,
li {
  color: var(--muted);
  line-height: 1.7;
}

a {
  color: var(--accent-2);
}

.notice,
.meta {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
}

.grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.gridTwo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.miniCard {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px 18px;
}

.miniCard h3 {
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0 0 8px;
}

.miniCard p {
  margin: 0;
}

.chipList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.brandBoard {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 20px 0 0;
}

.brandTile {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  min-height: 98px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.brandWord {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brandMeta {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brandTileAgoda .brandWord {
  color: #ff5a5f;
  letter-spacing: -0.06em;
}

.brandTileExpedia .brandWord {
  color: #ffd873;
}

.brandTileSkyscanner .brandWord {
  color: #67c7ff;
}

.brandTileTrip .brandWord {
  color: #4fd6b3;
}

.brandTileHotels .brandWord {
  color: #f3efe3;
}

.brandTileBooking .brandWord {
  color: #99b9ff;
}

.brandTileKayak .brandWord {
  color: #ff8a5b;
}

.brandTileAmazon .brandWord {
  color: #ffb44d;
}

.brandTileTripadvisor .brandWord {
  color: #7ef0b0;
}

.brandTileStay .brandWord {
  color: #f39be8;
}

.chip {
  align-items: center;
  background: rgba(255, 216, 115, 0.08);
  border: 1px solid rgba(255, 216, 115, 0.2);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
}

.notice {
  color: var(--ink);
  font-weight: 800;
  margin: 18px 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  min-height: 46px;
  padding: 0 16px;
  text-decoration: none;
}

.buttonPrimary {
  background: linear-gradient(135deg, var(--accent), #ffb069);
  border: 0;
  color: #08111c;
  font-weight: 800;
}

ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

@media (max-width: 720px) {
  main {
    padding-inline: 14px;
  }

  .card {
    border-radius: 24px;
    padding: 18px;
  }

  .gridTwo {
    grid-template-columns: 1fr;
  }

  .brandBoard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
