@charset "UTF-8";

body {
  font-family: "Pretendard Variable", sans-serif;
  font-style: normal;
}

.game {
  font-family: "Play", sans-serif;
  font-weight: 400;
  /* 또는 700 */
}

:where(html, body) {
  min-height: 100dvh;
}

:where(:lang(ko)) {
  word-break: keep-all;
}

:where(body) {
  margin: 0;
  overflow-wrap: break-word;
}

:where(img) {
  max-width: 100%;
  height: auto;
}

:where([class]) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([class])::before,
:where([class])::after {
  box-sizing: border-box;
  pointer-events: none;
}

:where(ol[class], ul[class]) {
  list-style: none;
}

:where(hr[class], button[class], fieldset[class], iframe[class], input[class], select[class], textarea[class]) {
  border: 0;
}

:where(button[class], dialog[class], input[class], mark[class], meter[class], progress[class]) {
  background-color: transparent;
}

:where(table[class]) {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

:where(button[class], input[class], meter[class], progress[class], select[class], textarea[class]) {
  appearance: none;
}

.neo {
  display: flex;
  flex-direction: column;
}

.neoHeader {
  /*
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  */
  transition: all 0.5s;
  position: fixed;
  width: 100%;
  z-index: 1000;
  left: 0;
  top: 0;
  box-sizing: border-box;
  padding: 0 100px;
}

.neoHeader.up {
  top: 0;
}

.neoHeader.down {
  top: -80px;
}

.neoHeader.active,
.neoHeader.scrolls,
.fp-viewing-2 .neoHeader,
.fp-viewing-3 .neoHeader,
.fp-viewing-4 .neoHeader {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.neoHeader .nav-container {
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 80px;
}

.neoHeader .logo {
  display: flex;
}

.neoHeader .logo .yellow {
  color: #FFD700;
}

.neoHeader .tagline {
  font-size: 10px;
  color: #888;
  margin-top: 2px;
  letter-spacing: 1px;
}

.neoHeader .nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 60px;
}

.neoHeader .nav-item {
  position: relative;
  width: 90px;
  text-align: center;
}

.neoHeader .nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-bottom: 2px solid rgba(255, 215, 0, 0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.neoHeader .nav-item.has-dropdown.active::after {
  opacity: 1;
  width: 100%;
}

.neoHeader .nav-item.active .nav-link {
  color: #FFD700;
}

.neoHeader .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  padding: 10px 0;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  font-family: "Play", sans-serif;
}

.neoHeader .nav-link:hover {
  color: #FFD700;
}

.neoHeader .right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.neoHeader .lang-selector {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  gap: 5px;
  text-decoration: none;
}

.neoHeader .globe-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  background: url("../img/ico_lang.png") no-repeat 0 0/contain;
}

.neoHeader .hamburger {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: url("../img/ico/ico-hamburger.png") no-repeat center center;
}

.neoHeader.active .hamburger {
  background: url("../img/ico/ico-menu-close.png") no-repeat center center;
}

.neoHeader .hamburger span {
  display: none;
  width: 100%;
  height: 2px;
  background-color: #ccc;
  transition: all 0.3s ease;
}

.gnb-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid #1d1d1d;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  z-index: 999;
}

.gnb-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gnb-content {
  margin: 0 auto;
  padding: 30px 0 35px 64px;
  display: grid;
  grid-template-columns: 90px 90px 90px 90px 90px;
  gap: 60px;
  justify-content: center;
}

.gnb-section {}

.gnb-section h3 {
  color: #FFD700;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 1px;
  display: none;
}

.gnb-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gnb-section li {
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.gnb-section a {
  color: #717071;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  line-height: 1.4;
  white-space: nowrap;
}

.gnb-section a:hover {
  color: #FFD700;
}

.gnb-section a.highlight {
  color: #FFD700;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .neoHeader .nav-menu {
    gap: 40px;
  }

  .gnb-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .neoHeader .nav-container {
    padding: 0 20px;
  }

  .neoHeader .nav-menu {
    display: none;
  }

  .gnb-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.neoFooter {
  background-color: #000;
  margin-top: auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.neoFooter__row {
  max-width: 1680px;
  margin: 0 auto;
}

.neoFooter__row.top {
  padding: 40px 0;
  position: relative;
  border-bottom: 1px solid #1f1f1f;
}

.neoFooter__row.main {
  padding: 70px 0;
  display: flex;
  align-content: flex-start;
}

.neoFooter__select {
  position: absolute;
  right: 0;
  top: 26px;
}

.neoFooter__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.neoFooter__menuItem {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.neoFooter__logo {
  height: 36px;
}

.neoFooter__sns {
  display: flex;
  align-content: center;
  gap: 20px;
  margin-left: auto;
}

.neoFooter__copyright {
  color: #717071;
  font-size: 17px;
  margin-left: 70px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.neoFooter__copyright .blank {
  display: inline-block;
  width: 20px;
}

.neoFooter__copyright .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 31px;
  font-size: 15px;
  color: #ccc;
  background-color: #333;
  padding: 0 5px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 10px;
}

.container {
  margin: 0 auto;
}

.container.news,
.container.ir {
  max-width: 1200px;
  padding: 150px 0;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background-color: #000;
  color: #fff;
  border: 1px solid #333;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 180px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.dropdown-button:hover {
  background-color: #222;
}

.dropdown-button.active .dropdown-arrow {
  transform: rotate(-135deg);
}

.dropdown-button:before {
  content: "";
  width: 1px;
  height: 45px;
  background-color: #333;
  position: absolute;
  right: 45px;
}

.dropdown-arrow {
  margin-left: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #000;
  border: 1px solid #333;
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #333;
  transition: background-color 0.2s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: #333;
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}

.board-info {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.search-area {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-area .category-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  min-width: 100px;
}

.search-area .search-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 200px;
}

.search-area .search-btn {
  padding: 8px 16px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.search-area .search-btn:hover {
  background-color: #555;
}

.image-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 60px;
  padding-block: 40px;
  border-bottom: 1px solid #e6e6e6;
  border-top: 2px solid #e9ecef;
}

.image-card {
  background: white;
  cursor: pointer;
}

.image-card-wrap {
  border-radius: 8px;
  overflow: hidden;
  height: 240px;
}

.image-card img {
  width: 100%;
  object-fit: cover;
}

.image-card-content {
  padding: 25px 0 0;
}

.image-card-title {
  font-size: 25px;
  font-weight: 900;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.image-card-date {
  font-size: 18px;
  color: #666;
}

.table-board {
  background: white;
  margin-bottom: 20px;
  border-top: 1px solid #666;
}

.board-table {
  width: 100%;
  border-collapse: collapse;
}

.board-table thead {
  background-color: #f8f9fa;
}

.board-table th {
  padding: 18px;
  text-align: center;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #e9ecef;
}

.board-table td {
  padding: 17px;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  color: #666;
}

.board-table td.title {
  text-align: left;
  font-weight: 500;
  color: #333;
}

.board-table td.number {
  font-weight: 600;
  color: #666;
}

.board-table tbody tr {
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.board-table tbody tr:hover {
  background-color: #f8f9fa;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 30px;
}

.pagination button {
  padding: 8px 12px;
  border: 1px solid #ddd;
  background-color: white;
  cursor: pointer;
  font-size: 14px;
}

.pagination button:hover {
  background-color: #f8f9fa;
}

.pagination button.active {
  background-color: #333;
  color: white;
  border-color: #333;
}

.pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.detail-page {
  background: #fff;
}

.detail-page .detail-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.detail-page .detail-header .meta-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.detail-page .detail-header .meta-info .meta-left {
  display: flex;
  gap: 30px;
}

.detail-page .detail-header .meta-info .meta-left .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-page .detail-header .meta-info .meta-left .meta-item .label {
  color: #333;
  font-weight: 500;
}

.detail-page .detail-header .meta-info .meta-left .meta-item .value {
  color: #666;
}

.detail-page .detail-header .meta-info .meta-right .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-page .detail-header .meta-info .meta-right .meta-item .label {
  color: #333;
  font-weight: 500;
}

.detail-page .detail-header .meta-info .meta-right .meta-item .value {
  color: #666;
}

.detail-page .detail-header .post-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #333;
}

.detail-page .detail-header .file-info {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-page .detail-header .file-info .file-label {
  font-weight: 600;
  color: #333;
}

.detail-page .detail-header .file-info .file-item {
  color: #666;
}

.detail-page .content-section {
  margin-bottom: 40px;
}

.detail-page .content-section .content-body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.detail-page .content-section .content-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 4px;
}

.detail-page .content-section .content-body p {
  margin-bottom: 18px;
  word-break: keep-all;
  word-wrap: break-word;
}

.detail-page .content-section .content-body.editable {
  border: 2px dashed #007bff;
  padding: 20px;
  border-radius: 4px;
  background: #f8f9ff;
  outline: none;
  min-height: 300px;
}

.detail-page .action-area {
  text-align: right;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.detail-page .action-area .btn-group {
  display: inline-flex;
  gap: 10px;
}

.detail-page .action-area .btn-group .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 100px;
  justify-content: center;
}

.detail-page .action-area .btn-group .btn.btn-list {
  background-color: #333333;
  color: #ffffff;
}

.detail-page .action-area .btn-group .btn.btn-list:hover {
  background-color: #555555;
}

.careers-detail-wrap {
  transition: all 1s;
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 0.5s;
}

.fp-viewing-2 .careers-detail-wrap,
.fp-viewing-3 .careers-detail-wrap{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .detail-page .detail-header .meta-info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .detail-page .detail-header .meta-info .meta-left {
    flex-direction: column;
    gap: 8px;
  }

  .detail-page .detail-header .post-title {
    font-size: 18px;
    text-align: left;
  }

  .detail-page .content-section .content-body {
    font-size: 14px;
    line-height: 1.6;
  }

  .detail-page .action-area .btn-group {
    justify-content: flex-end;
  }

  .detail-page .action-area .btn-group .btn {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .board-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .search-area {
    width: 100%;
    flex-wrap: wrap;
  }

  .search-area .search-input {
    flex: 1;
    min-width: 150px;
  }

  .image-board {
    grid-template-columns: 1fr;
  }

  .board-table {
    font-size: 12px;
  }

  .board-table th,
  .board-table td {
    padding: 8px;
  }

  .board-table th:nth-child(1),
  .board-table td:nth-child(1) {
    width: 60px;
  }

  .board-table th:nth-child(3),
  .board-table td:nth-child(3) {
    width: 100px;
  }
}

/*# sourceMappingURL=neo_style.css.map */

/***/
.web-br {
  display: none;
}

@media (max-width: 1200px) {
  .neoHeader {
    padding: 0;
  }

  .neoHeader .nav-container {
    padding: 0 20px;
  }

  .gnb-section h3 {
    display: block;
    margin-bottom: 10px;
  }

  .gnb-section ul {
    display: none;
  }

  .gnb-section ul.on {
    display: block;
  }

  .gnb-content {
    gap: 0;
  }

  .gnb-menu {
    height: 100vh;
  }

  .gnb-section h3 a {
    color: #fff;
    font-family: "Play", sans-serif;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
  }

  .gnb-section h3 a:before {
    content: "";
    width: 24px;
    height: 24px;
    display: flex;
    overflow: hidden;
    background: url(../img/ico/ico-gnb-arrow-down.png) no-repeat;
    background-size: 24px 24px;
    position: absolute;
    right: 0;
    top: 4px;
  }

  .gnb-section h3 a.on {
    color: #FFD700;
  }

  .gnb-section h3 a.on:before {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(92%) sepia(22%) saturate(6633%) hue-rotate(358deg) brightness(99%) contrast(108%)
  }

}

@media (max-width: 769px) {
  .neoHeader .nav-container {
    height: 60px;
    padding-right: 15px;
  }

  .gnb-content {
    padding: 0 20px 20px 20px;
  }

  .gnb-section {
    border-bottom: 1px solid #1b1b1b;
  }

  .gnb-section li {
    margin-bottom: 8px;
    display: block;
    text-align: left;
  }

  .neoFooter {
    padding: 0 20px;
  }

  .neoFooter__row.top {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 40px 0 20px 0;
  }

  .neoFooter__select {
    position: static;
    width: 100%;
  }

  .neoFooter__select .dropdown-container {
    width: 100%;
  }

  .neoFooter__menu {
    justify-content: center;
  }

  .neoFooter__menuItem {
    font-size: 14px;
  }

  .neoFooter__select .dropdown-button {
    width: 100%;
  }

  .neoFooter__row.main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 40px 0;
  }

  .neoFooter__copyright {
    margin: 0;
    font-size: 13px;
    text-align: center;
  }

  .biz-number {
    display: none;
  }

  .neoFooter__sns {
    justify-content: center;
    margin: 0;
  }

  .neoHeader .logo img {
    width: 120px;
  }

  .neoHeader .hamburger {
    width: 40px;
    height: 40px;
    background-size: 40px 40px !important;
  }

  .neoFooter__logo {
    width: 150px;
    height: 30px;
    margin: 0 auto;
  }

  .web-br {
    display: block;
  }

}