*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────── */
.globalnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  height: 100px;
  font-size: 12px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globalnav-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 22px;
  position: relative;
}
.globalnav-lang {
  position: absolute;
  right: 22px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.lang-btn {
  background: none;
  border: none;
  color: #000000;
  font-size: 12px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  font-family: inherit;
}
.lang-btn:hover { color: #7b7b7b; }
.lang-btn.active { font-weight: 700; }
.globalnav-link {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 12px;
  white-space: nowrap;
}
.globalnav-link:hover { color: #7b7b7b; }
.globalnav-link-apple svg { fill: #000000; }
.globalnav-link-apple:hover svg { fill: #7b7b7b; }

.globalnav-title {
  font-size: 70px;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.5px;
}

/* ── PROMO ─────────────────────────────── */
.promo {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: hsl(0, 0%, 100%);
  color: #1d1d1f;
  padding: 40px 20px 50px;
  gap: 10px;
  overflow: hidden;
}
.promo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.promo-bg spine-skeleton {
  width: 100%;
  height: 100%;
}

/* ── GRID ──────────────────────────────── */
.grid-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}
.skel-create {
  position: relative;
  min-height: 200px;
  width: 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 20px 20px 20px;
  gap: 8px;
  background: hsl(0, 0%, 100%);
  overflow: hidden;
}
.skel-create-2 {
  position: relative;
  width: 300px;
  aspect-ratio: 1 / 1;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 20px 20px 20px;
  gap: 8px;
  background: hsl(0, 0%, 100%);
  overflow: hidden;
}
.skel-wrap-stretch {
  width: auto;
  min-width: 200px;
  flex: 1 1 200px;
}
.skel-skel-1 {
  position: relative;
  width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  overflow: hidden;
}
#grid-match3 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  justify-content: center;
}
#grid-match3 .tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
#grid-match3 .tile-bg spine-skeleton {
  width: 100%;
  height: 100%;
}
.tile-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tile-bg spine-skeleton {
  width: 100%;
  height: 100%;
}

.skel-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 20px;
  color: #1d1d1f;
  background: hsl(0, 0%, 100%);
  padding: 20px;
  text-transform: uppercase;
}
.skel-label-title {
  font-family: Arial, 'Helvetica Neue', sans-serif;
  font-size: 30px;
  font-weight: bold;
}
.skel-label-sub {
  font-family: Arial, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: bold;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: #f5f5f7;
  color: #6e6e73;
  text-align: center;
  padding: 20px 20px 30px;
  font-size: 12px;
}
.footer a {
  color: #424245;
  text-decoration: none;
}
.footer a:hover { text-decoration: underline; }