/*!********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[10].use[3]!./src/styles/globals.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************/
:root {
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --bg: #071110;
  --bg-elevated: rgba(10, 20, 19, 0.84);
  --bg-strong: rgba(6, 15, 14, 0.95);
  --surface: rgba(11, 26, 24, 0.76);
  --surface-border: rgba(116, 255, 198, 0.14);
  --surface-border-strong: rgba(116, 255, 198, 0.24);
  --text: #ecfff7;
  --muted: #b8d3c8;
  --accent: #71ffc6;
  --accent-strong: #48f0b8;
  --accent-pink: #ff4fa8;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --hero-glow: radial-gradient(circle at top, rgba(84, 255, 192, 0.18), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(255, 79, 168, 0.14), transparent 24%);
  color-scheme: dark;
}

html[data-theme='girly'] {
  --bg: #120713;
  --bg-elevated: rgba(34, 10, 38, 0.9);
  --bg-strong: rgba(28, 9, 32, 0.97);
  --surface: rgba(43, 15, 47, 0.82);
  --surface-border: rgba(255, 122, 214, 0.24);
  --surface-border-strong: rgba(198, 118, 255, 0.4);
  --text: #fff4fc;
  --muted: #edc9e3;
  --accent: #ff7ad6;
  --accent-strong: #ff4fc0;
  --accent-pink: #b88cff;
  --shadow: 0 30px 80px rgba(24, 0, 28, 0.5);
  --hero-glow: radial-gradient(circle at top, rgba(255, 122, 214, 0.28), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(184, 140, 255, 0.24), transparent 26%);
  color-scheme: dark;
}

html[data-theme='standard'] {
  --bg: #f6f8fb;
  --bg-elevated: rgba(255, 255, 255, 0.96);
  --bg-strong: rgba(255, 255, 255, 0.99);
  --surface: rgba(255, 255, 255, 0.86);
  --surface-border: rgba(82, 99, 124, 0.12);
  --surface-border-strong: rgba(56, 84, 132, 0.18);
  --text: #142033;
  --muted: #5b677a;
  --accent: #3b82f6;
  --accent-strong: #2563eb;
  --accent-pink: #8aa4ff;
  --shadow: 0 24px 64px rgba(42, 59, 92, 0.1);
  --hero-glow: radial-gradient(circle at top, rgba(59, 130, 246, 0.1), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(138, 164, 255, 0.08), transparent 24%);
  color-scheme: light;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--hero-glow),
    var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: transparent;
  line-height: 1.5;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  min-height: 100vh;
}

.site-footer-ad {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto 32px;
}

.site-footer-ad__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--surface-border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    color-mix(in srgb, var(--surface) 84%, transparent);
  box-shadow: var(--shadow);
}

.site-footer-ad__inner p {
  margin: 0;
  color: var(--muted);
  flex: 1 1;
}

.site-footer-ad__inner a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.site-footer-ad__inner a:hover {
  transform: translateY(-1px);
  border-color: var(--surface-border-strong);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--surface-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    color-mix(in srgb, var(--bg-strong) 92%, transparent);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.topbar-spacer {
  height: 84px;
}

.brand,
.topbar__nav a,
.cta-link,
.theme-toggle,
.theme-toggle__option,
.hero-search__ideas button,
.hero-search__panel button,
.service-card,
.inline-link,
.panel__actions a,
.support-card__actions a,
.primary-button,
.pagination__link,
.empty-message a {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #071110;
  background: linear-gradient(135deg, var(--accent), var(--accent-pink));
  box-shadow: 0 8px 24px rgba(255, 79, 168, 0.2);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong,
.topbar__nav a span,
.hero-search h1,
.section-block h2,
.page-hero h1,
.panel h2,
.panel h3,
.support-card h3,
.article-list-item h3,
.article-detail h1 {
  font-family: var(--font-display);
}

.brand__text small,
.eyebrow,
.service-card__category,
.article-list-item__meta,
.support-card__badge,
.notice {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand__text small,
.article-list-item__meta,
.support-card__badge,
.service-card__category,
.empty-message p {
  color: var(--muted);
}

.topbar__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar__nav a,
.cta-link,
.theme-toggle,
.theme-toggle__option,
.hero-search__ideas button,
.hero-search__panel button,
.panel__actions a,
.support-card__actions a,
.primary-button,
.empty-message a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.topbar__nav a:hover,
.cta-link:hover,
.theme-toggle:hover,
.hero-search__ideas button:hover,
.hero-search__panel button:hover,
.panel__actions a:hover,
.support-card__actions a:hover,
.primary-button:hover,
.inline-link:hover,
.empty-message a:hover {
  transform: translateY(-1px);
  border-color: var(--surface-border-strong);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.topbar__actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-link,
.primary-button,
.hero-search__panel button {
  color: #06110f;
  background: linear-gradient(135deg, var(--accent), #b4ffd8);
}

.theme-toggle {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  min-width: 310px;
  padding: 4px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.theme-toggle__thumb {
  position: absolute;
  inset: 4px auto 4px 4px;
  width: calc((100% - 8px) / 3);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-pink) 65%, white));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    background 180ms ease;
  z-index: 0;
}

.theme-toggle__thumb--girly {
  transform: translateX(0%);
}

.theme-toggle__thumb--hacker {
  transform: translateX(100%);
}

.theme-toggle__thumb--standard {
  transform: translateX(200%);
}

.theme-toggle__option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border-radius: 999px;
}

.theme-toggle__option svg {
  flex: none;
}

.theme-toggle__option--active {
  color: #06110f;
}

.home-page,
.content-page {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto 56px;
}

.home-page {
  display: grid;
  gap: 28px;
}

.hero-search,
.panel,
.page-hero,
.hero-panel,
.service-card,
.support-card,
.article-list-item,
.inner-search,
.suggestion-form,
.notice,
.article-body,
.video-frame,
.empty-message {
  border: 1px solid var(--surface-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    color-mix(in srgb, var(--surface) 84%, transparent);
  box-shadow: var(--shadow);
}

.hero-search,
.page-hero,
.hero-panel,
.article-body,
.video-frame,
.empty-message,
.suggestion-form {
  border-radius: 28px;
}

.hero-search {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 36px;
  overflow: hidden;
}

.hero-search__copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.hero-search h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.94;
}

.hero-search p,
.page-hero p,
.panel p,
.suggestion-form label span + *,
.article-list-item p,
.support-card p,
.article-body p {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--accent);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.hero-search__panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 79, 168, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    color-mix(in srgb, var(--bg-elevated) 92%, transparent);
}

.hero-search__label,
.field-grid label span,
.suggestion-form label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-search__controls {
  display: grid;
  grid-template-columns: 1fr 190px auto;
  gap: 12px;
}

.hero-search__inputWrap,
.inner-search {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-search__inputWrap,
.inner-search,
.suggestion-form input,
.suggestion-form textarea,
.suggestion-form select {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-strong) 88%, transparent);
}

.hero-search__inputWrap input,
.inner-search input,
.suggestion-form input,
.suggestion-form textarea,
.hero-search__controls select {
  width: 100%;
  background: transparent;
  color: var(--text);
  outline: none;
}

.hero-search__controls select {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-strong) 88%, transparent);
}

.hero-search__ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-search__ideas button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted);
}

.home-grid,
.page-hero--split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 20px;
}

.panel,
.hero-panel {
  padding: 24px;
}

.panel__actions,
.support-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.panel--ad {
  position: relative;
  overflow: hidden;
}

.panel--ad::after {
  content: '';
  position: absolute;
  inset: auto -14% -24% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 79, 168, 0.16), transparent 65%);
}

.section-block {
  display: grid;
  gap: 18px;
}

.section-block__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.section-block__header h2,
.panel h2,
.panel h3,
.support-card h3,
.article-list-item h3,
.article-detail h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.services-grid,
.supports-grid,
.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card,
.support-card,
.article-list-item,
.search-result-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
}

.service-card__top,
.article-list-item__meta,
.support-card__badge {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.service-card--green:hover {
  border-color: rgba(113, 255, 198, 0.32);
}

.service-card--pink:hover {
  border-color: rgba(255, 79, 168, 0.28);
}

.articles-stack {
  display: grid;
  gap: 16px;
}

.article-list-item__meta span,
.support-card__badge {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.inline-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  color: var(--accent);
}

.content-page {
  display: grid;
  gap: 24px;
}

.search-page-hero {
  gap: 20px;
  padding: 22px;
}

.search-page-form {
  display: grid;
  gap: 12px;
}

.search-page-form__controls {
  grid-template-columns: 1fr auto;
}

.search-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tabs__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.search-tabs__link:hover {
  transform: translateY(-1px);
  border-color: var(--surface-border-strong);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.search-tabs__link--active {
  color: #06110f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #b4ffd8);
}

.search-status {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.search-status h2 {
  margin: 8px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.search-status p {
  margin: 0;
  color: var(--muted);
}

.search-results {
  grid-template-columns: 1fr;
}

.search-results--images {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.search-results--videos {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.search-result-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.search-result-card__meta span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.search-result-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.search-result-card p {
  margin: 0;
  color: var(--muted);
}

.search-result-card--image,
.search-result-card--video {
  align-content: start;
}

.search-result-card__mediaLink {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg-strong) 88%, transparent);
}

.search-result-card__mediaImage {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.search-result-card__iframeWrap {
  overflow: hidden;
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  background: #000;
}

.search-result-card__iframeWrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.search-result-card__playBadge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ecfff7;
  background: rgba(6, 15, 14, 0.78);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.pagination {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 176px;
  padding: 0 18px;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
}

.pagination__link--disabled {
  opacity: 0.54;
}

.page-hero,
.article-detail {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.hero-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}

.hero-panel__line {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}

.hero-panel a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  color: var(--accent);
}

.inner-search {
  min-height: 58px;
  padding-right: 8px;
}

.inner-search button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #06110f;
  background: linear-gradient(135deg, var(--accent), #b4ffd8);
}

.video-frame {
  padding: 16px;
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  background: #000;
}

.article-body {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.article-body p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.suggestion-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.suggestion-form label {
  display: grid;
}

.suggestion-form input,
.suggestion-form textarea {
  min-height: 52px;
  padding: 14px 16px;
}

.notice {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 18px;
  width: fit-content;
}

.notice--success {
  color: var(--accent);
}

.notice--error {
  color: var(--accent-pink);
}

.empty-message {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.empty-message a {
  width: fit-content;
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .topbar__nav {
    justify-content: flex-start;
  }

  .topbar__actions {
    justify-content: space-between;
  }

  .topbar-spacer {
    height: 152px;
  }

  .hero-search,
  .home-grid,
  .page-hero--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .home-page,
  .content-page {
    width: min(100% - 24px, 1280px);
  }

  .topbar {
    padding: 14px 14px 16px;
  }

  .topbar-spacer {
    height: 170px;
  }

  .hero-search,
  .page-hero,
  .article-detail,
  .suggestion-form {
    padding: 20px;
  }

  .site-footer-ad__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .theme-toggle {
    min-width: 100%;
  }

  .theme-toggle__option {
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .theme-toggle__option svg {
    width: 12px;
    height: 12px;
  }

  .search-page-hero {
    padding: 18px;
  }

  .hero-search__controls,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .section-block__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-status,
  .pagination {
    flex-direction: column;
  }
}

/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[15].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"src/app/layout.tsx","import":"Chakra_Petch","arguments":[{"subsets":["latin"],"variable":"--font-display","weight":["400","500","600","700"]}],"variableName":"displayFont"} ***!
  \************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* thai */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/c43ef54631c6ad3c-s.woff2) format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}
/* vietnamese */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/48b76bf2200d991e-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/29e4af7482351bce-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/e6fd32ec5acdd27d-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* thai */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/3926fa88ed32c251-s.woff2) format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}
/* vietnamese */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/c3206c67a3393998-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/b7d7f401753dc0c4-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/6681946d7a6ccbb7-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* thai */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/1fc9a8acda3903f0-s.woff2) format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}
/* vietnamese */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/7b750d5bfef15842-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/2a7c45462b39533e-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/4c7c43bdd7a35c63-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* thai */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/8d541ca8617572f0-s.woff2) format('woff2');
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}
/* vietnamese */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/3955bbd902881c26-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/f6d84cc3be9d6158-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/84f090e3b62fb9e3-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'Chakra Petch Fallback';src: local("Arial");ascent-override: 96.77%;descent-override: 30.05%;line-gap-override: 0.00%;size-adjust: 102.51%
}.__className_bde904 {font-family: 'Chakra Petch', 'Chakra Petch Fallback';font-style: normal
}.__variable_bde904 {--font-display: 'Chakra Petch', 'Chakra Petch Fallback'
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[15].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"src/app/layout.tsx","import":"IBM_Plex_Sans","arguments":[{"subsets":["latin"],"variable":"--font-body","weight":["400","500","600","700"]}],"variableName":"bodyFont"} ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/7b19b489dc6743ba-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/28793f5c5e3d822d-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/c9c3823090ec8b55-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/b3bf17a9041d9433-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/2801417b65625cf5-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/7b19b489dc6743ba-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/28793f5c5e3d822d-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/c9c3823090ec8b55-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/b3bf17a9041d9433-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/2801417b65625cf5-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/7b19b489dc6743ba-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/28793f5c5e3d822d-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/c9c3823090ec8b55-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/b3bf17a9041d9433-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/2801417b65625cf5-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/7b19b489dc6743ba-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/28793f5c5e3d822d-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/c9c3823090ec8b55-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/b3bf17a9041d9433-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/2801417b65625cf5-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(/_next/static/media/26d4368bf94c0ec4-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: 'IBM Plex Sans Fallback';src: local("Arial");ascent-override: 101.32%;descent-override: 27.18%;line-gap-override: 0.00%;size-adjust: 101.17%
}.__className_c8daab {font-family: 'IBM Plex Sans', 'IBM Plex Sans Fallback';font-style: normal
}.__variable_c8daab {--font-body: 'IBM Plex Sans', 'IBM Plex Sans Fallback'
}

