:root {
  --primary-color: #1eb5a4;
  --primary-dark: #199488;
  --secondary-color: #263238;
  --background-offwhite: #e3edec;
  --background-contrast: #f4f5fa;
  --text-dark: #263238;
  --text-muted: #777;
  --text-light: #f4f5fa;
  --border-color: rgba(38, 50, 56, 0.1);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.05);
  --font-family: "Manrope", "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-dark);
  background: var(--background-offwhite);
}

a {
  color: inherit;
}

.notice-page {
  padding: 26px 8px 34px;
}

.notice-container {
  max-width: 1180px;
  margin: 0 auto;
}

.notice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.notice-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.notice-brand img {
  width: 28px;
  height: 28px;
}

.notice-contact {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.notice-contact:hover,
.notice-button:hover {
  color: var(--primary-dark);
}

.notice-contact-inline {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.notice-contact-inline:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.notice-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.notice-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.notice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(186, 26, 26, 0.12);
  color: #ba1a1a;
  flex: 0 0 auto;
}

.notice-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.notice-icon--subtle {
  background: rgba(38, 50, 56, 0.08);
  color: var(--secondary-color);
}

.notice-card--status {
  margin-bottom: 18px;
}

.notice-card--language,
.notice-card--footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.notice-card--language {
  display: block;
  margin-top: 0;
}

.notice-card--footer {
  margin-top: 18px;
}

.notice-card--stats {
  margin-top: 18px;
}

.notice-footer-copy-wrap--full {
  width: 100%;
}

.notice-language-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.notice-language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--background-contrast);
}

.notice-language-button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.notice-language-button.is-active {
  background: #fff;
  color: var(--secondary-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.notice-language-panel {
  display: none;
}

.notice-language-panel.is-active {
  display: block;
}

.notice-stats-panel {
  display: none;
}

.notice-stats-panel.is-active {
  display: block;
}

.notice-footer-panel {
  display: none;
}

.notice-footer-panel.is-active {
  display: block;
}

.notice-kicker,
.notice-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notice-title-row + p {
  margin-top: 18px;
}

.notice-subtle {
  color: var(--text-muted);
  margin-bottom: 18px !important;
  font-size: 0.95rem;
}

.notice-label-lang {
  display: inline-block;
  margin-left: 6px;
  color: var(--secondary-color);
  font-weight: 700;
}

.notice-footer-copy-wrap .notice-label {
  margin-bottom: 0;
}

.notice-card h1 {
  margin: 0 0 10px;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
}

.notice-card p {
  margin: 0 0 14px;
  line-height: 1.62;
}

.notice-card p:last-child {
  margin-bottom: 0;
}

.notice-footer-copy {
  color: var(--text-dark);
}

.notice-footer-copy + .notice-footer-copy {
  margin-top: -2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: #fbfcfd;
  padding: 16px 14px;
}

.stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(30, 181, 164, 0.12);
  color: var(--primary-color);
}

.stat__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.stat__value {
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--secondary-color);
}

.stat__title {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.notice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.notice-contact-inline--footer {
  display: inline-block;
  margin-top: 4px;
  font-size: 1rem;
}

.notice-site-footer {
  padding: 0 8px 20px;
}

.notice-site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.notice-site-footer__inner a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}

.notice-site-footer__inner a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.notice-button:hover {
  background: var(--primary-dark);
  color: var(--text-light);
}

@media (max-width: 720px) {
  .notice-page {
    padding: 18px 8px 24px;
  }

  .notice-header,
  .notice-card--footer,
  .notice-language-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .notice-card h1 {
    font-size: 1.8rem;
  }

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

  .notice-button {
    width: 100%;
  }

  .notice-site-footer {
    padding: 0 8px 16px;
  }

  .notice-site-footer__inner {
    justify-content: flex-start;
    gap: 12px;
  }
}
