* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
body {
  background: #f7f9fc;
  color: #111;
  font-family: -apple-system, Segoe UI, Roboto, Helvetica Neue, Helvetica, sans-serif, BlinkMacSystemFont;
  font-size: 14px;
  font-weight: 400;
  font-feature-settings: "tnum";
  font-variant: tabular-nums;
  line-height: 1.5715;
}


button{
  cursor:pointer;
}
.container {
  max-width: 1200px;
  margin: auto;
}
.full-container {
  max-width: 1920px;
  margin: auto;
}
.board-container{
  padding: 70px 0px;
}
/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.mobile{
  width: 300px;
  height: 100%;
  position:fixed;
  right:-400px;
  background:#fff;
  top:0;
  z-index:100;
  padding: 30px;
  box-sizing:border-box;
  transition: all 0.3s ease;
}
.mobile .nav{
  display:block;
}
.mobile .nav a{
  display:block;
  margin-bottom: 20px;
}
.mobile .auth{
  width: 100%;
  position:relative;
  display:flex;
  margin: 30px 0px;
}
.mobile .auth button{
  width: 50%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  position: relative;
}
#mobile-close{
  width: 30px;
  height: 30px;
  background:url(../../img/intro/mobile-close.svg) no-repeat;
}
.logo {
  width: 200px;
  position:absolute;
  left:0;
}
.logo a{
   display:block;
   width:100%;
   height: 30px;
  background:url(../../img/intro/logo.svg) no-repeat;
  background-position:left;
  background-size: contain;
}
.logo span {
  color: #111;
}
.nav{
  display:flex;
}
.menu-cont{
  position:absolute;
  right: 180px;
  display:flex;
}
.mobile-btn{
  display:none;
}
.menu-cont div{
  width: 20px;
  height:20px;
  margin-left:20px;
  cursor:pointer;
}
 #dark-btn{
   background:url(../../img/intro/darkmode.svg) no-repeat;
 }
#mo-menu{
  background:url(../../img/intro/menu.svg) no-repeat;
}
.auth{
  position:absolute;
  right:0;
}
.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #555;
  position:relative;
}
.nav a:hover{
  color:#000000;
  font-weight:400;
}
.nav a:before{
  width: 0px;
  height: 2px;
  display:block;
  content:'';
  position:absolute;
  left:50%;
  bottom:-5px;
  transition: all .3s ease;
  background: linear-gradient(to right,#66ce20, #89cf00);
}
.nav a:hover:before{
  width:100%;
  left:0;
}
.auth button {
  margin-left: 8px;
}
.btn-dark:hover{
  background: #66ce20;
}
.btn-outline {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
}
.btn-outline:hover{
   border: 1px solid #89cf00;
  color:#66ce20;
  background: #89cf0011;
}
.btn-dark {
  background: #111;
  color: #fff;
  padding: 7px 15px;
  border-radius: 6px;
  border:0;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #f5f8ff, #ffffff);
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-text p {
  margin-bottom: 24px;
}

.btn-primary {
  background: linear-gradient(to right,#66ce20, #89cf00);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
}

.hero-image {
  display: flex;
  justify-content: center;
}
.hero-image img{
  width: 600px;
  height:auto
}
.mock-3d {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg,#1a73e8,#5fa8ff);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

/* Services */
.services {
  padding: 80px 0;
  text-align: center;
}

.service-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.icon {
  width: 200px;
  height: 200px;
 
  border-radius: 16px;
  margin: 0 auto 20px;
}
.icon img{
  width:100%;
}

/* terms */
.terms {
  padding: 120px 0;
}

.terms h2{
  text-align:center;
}

/* Market */
.market {
  padding: 120px 0;
}

.market h2{
  text-align:center;
}

.market-table {
  margin-top: 30px;
  background: #f7f9fc;
  border-radius: 14px;
  overflow-x: auto;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr 1fr;
  padding: 16px;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.table-row .coin img{
  width: 30px;
  height:30px;
  border-radius: 30px;
  vertical-align:middle;
  margin-right: 10px;
}
.coin{
  display: inline-flex;
}
.table-row2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 6px;
  border-bottom: 1px solid #eee;
  align-items: center;
}
.table-row2 .coin img{
  width: 20px;
  height:20px;
  border-radius: 20px;
  vertical-align:middle;
  margin-right: 10px;
}
.table-head {
  background: #ffffff;
  font-weight: 600;
}

.table-row button {
  border:0;
  padding: 6px 12px;
  border-radius: 6px;
  background: linear-gradient(to right,#66ce20, #89cf00);
  color:#fff;
  cursor:pointer;
}

.down {
  color: #f10b0b;
}
.red-dot{
  font-weight: bold;
  margin-right: 5px;
  color: #f10b0b;
}
.up {
  color: #66ce20;
}

.request-card {
  width: 100%;
  max-width: 662px;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  margin: auto auto 24px;
}
.request-title {
  margin: 10px auto;
  max-width: 662px;
  border-radius: 8px;
  padding: 16px 20px;
  background: #7ab900;
}
.request-title p{
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bolder;
  text-align: center;
  margin-top: 1em;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* login wrapper */
.login-wrapper {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* login card */
.login-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

/* title */
.title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* desc */
.desc {
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
}

/* sec URL */
.secure-url {
  display: inline-block;
  background: #f1f3f5;
  color: #2f80ed;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}

/* form */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-form input {
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 12px 4px;
  font-size: 15px;
}

.login-form input:focus {
  outline: none;
  border-bottom-color: #4fc600;
}

/* button */
.login-form button {
  margin-top: 12px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background: #4fc600;
  color: #ffffff;
  font-size: 16px;
}

/* link */
.login-links {
  margin-top: 22px;
  font-size: 13px;
  color: #888;
}

.login-links a {
  color: #666;
  text-decoration: none;
}

.login-links span {
  margin: 0 6px;
}

/* bottom-sec-login */
.security-status {
  margin-top: 24px;
  font-size: 12px;
  color: #888;
}

.security-status .off {
  margin-left: 6px;
  background: #ddd;
  color: #666;
  padding: 2px 6px;
  border-radius: 6px;
}



/* wrapper */
.signup-wrapper {
  width: 100%;
  padding: 100px 0px;
  display: flex;
  justify-content: center;
}

/* card */
.signup-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* title */
.title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #111;
}

/* form */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* input box */
.input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #f1f3f6;
  border-radius: 10px;
  padding: 0 14px;
  height: 52px;
}
.textarea-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #f1f3f6;
  border-radius: 10px;
  padding: 0 14px;
}
.input-box input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
}

.input-box select{
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
}
.textarea-box textarea{
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
  width: 100%;
  height: 100px;
}
.input-box select option{
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
}

.input-box .icon {
  font-size: 16px;
  color: #999;
}

.input-box .icon.right {
  cursor: pointer;
}

/* checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}

.checkbox input {
  margin-top: 3px;
}

.checkbox a {
  color: #81cf08;
  text-decoration: none;
  font-weight: 500;
}

.checkbox span .link {
  color: #81cf08;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.pure-material-button-text {
  position: absolute;
  left: 85%;
  right: 0;
  top: 5px;
  bottom: 5px;
  background: linear-gradient(to right,#66ce20, #89cf00);
  color: #fff;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
/* button */
.btn-primary {
  margin-top: 10px;
  height: 52px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(to right,#66ce20, #89cf00);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: linear-gradient(to right,#242424, #191919);
}

/* divider */
.divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  padding: 0 10px;
  font-size: 13px;
  color: #91cf30;
}

/* login link */
.login-link {
  text-align: center;
  font-size: 14px;
  color: #555;
}

.login-link a {
  color: #91cf30;
  font-weight: 600;
  text-decoration: none;
}


._symbol__NetWorkStatusWrap__gRqHJ{
  max-width: 1920px;
}


/*footer*/
.site-footer {
  background: #ffffff;
  padding: 60px 20px 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #333;
}

/* grid */
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}

/* column */
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #4fc600;
}

.footer-col .muted {
  font-size: 13px;
  color: #999;
}

.footer-col .mt {
  margin-top: 24px;
}

/* socials */
.socials a {
  margin-right: 12px;
  font-size: 14px;
}
.socials a img{
  width: 20px;
  vertical-align:middle;
  margin-right: 10px;
}
/* divider */
.footer-divider {
  max-width: 1200px;
  height: 1px;
  background: #e5e7eb;
  margin: 40px auto;
}

/* license */
.footer-license {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}
.footer-license img{
  width: 150px;
  opacity:0.7;
  margin-bottom: 20px;
}
.footer-license .warning {
  color: #888;
}

/* bottom */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
}
.requests_fileList{
  list-style: none;
}
.file-item-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-delete-btn {
  margin-left: auto;
}
/*board*/
.board-item {
  list-style: none;
  border-bottom: 1px solid #eee;
}
.board-header {
  padding: 14px ;
  cursor: pointer;
}
.board-header.active{
  background:#fff;
  padding: 14px;
  border-bottom: 1px solid #eee;
}
.board-title-text {
  font-size: 16px;
  font-weight:600;
  color: #717171;
}
.board-header.active .board-title-text{
  color: #000000;
}
.board-meta {
  font-size: 13px;
  color: #999;
}

.board-content {
  display: none;
  padding: 16px;
  color: #999;
  white-space: pre-wrap;
  background: #fefefe;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px;
}

.page-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 5px;
}

.page-btn.active {
  background: #66ce20;
  color: #fff;
  border-color: #66ce20;
}

.board-list{
  margin:30px 0px;
}

.tab-wrap {
  margin: 0 auto;
  margin-top: 30px;
}

.tab-menu {
  display: flex;
  border-bottom: 2px solid #e5e5e5;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-btn {
  padding: 12px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  color: #666;
  position: relative;
}

.tab-btn.active {
  color: #66ce20;
  font-weight: 600;
  background: #66ce2022;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #66ce20;
}

.ant-select-v2-selection-search-input option{color: #000;}
.ui-datepicker {
  width: 280px;
  padding: 10px;
  font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
}
.ui-datepicker-header {
  background: transparent;  /* 또는 background: none; */
  color: #333;
  border: none;
  padding: 10px;
}
.ui-datepicker-title {
  color: #333;
  font-weight: bold;
}

.ui-datepicker-prev, .ui-datepicker-next {
  cursor: pointer;
}

.ui-datepicker th {
  color: #333;
  font-weight: bold;
  padding: 8px 0;
}

.ui-datepicker th:first-child,
.ui-datepicker td:first-child a {
  color: #e74c3c !important;
}

.ui-datepicker th:last-child,
.ui-datepicker td:last-child a {
  color: #3498db !important;
}

.ui-datepicker td a {
  text-align: center;
  padding: 8px;
  border-radius: 4px;
}

.ui-datepicker td a:hover {
  background: #e8f4f8;
}

.ui-state-active {
  background: #4a90e2 !important;
  color: white !important;
}

.ui-datepicker-today a {
  background: #fff3cd !important;
  font-weight: bold;
}

.date-input-wrapper {
  position: relative;
  display: inline-block;
}
.calendar-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}
.ui-datepicker td span, .ui-datepicker td a {
  text-align: center !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .table-head, .table-row{
    width: 1000px;
  }
  .header,
  .container,
  .full-container{
    padding: 0 20px;
  }
  .board-container{
    padding: 30px 20px;
  }
  .container.market-table{
    padding:0;
  }
  .service-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    margin-top: 40px;
  }
  .menu-cont{
    right:0
  }
  .menu-cont .mobile-btn{
    display:block;
  }
  .header-inner .auth,
  .header-inner .nav{
    display:none;
  }
  .mobile.view{
    right:0;
    box-shadow: 0px 0px 50px rgba(0,0,0,0.1);
  }
}

@media (max-width: 768px) {
  .board-wrap {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .market{
    padding-top:50px;
    padding: 0 20px;
  }
}
@media (max-width: 600px) {
  .nav {
    display: none;
  }
  .service-grid {
    grid-template-columns: 2fr ;
  }
  .hero-image img{
    width:100%;
  }
  .hero-text h1 {
    font-size: 32px;
  }
  .icon{
    width: 100px;
    height:100px;
  }
  .auth button{
    margin:0;
  }
  .logo{
    width: 140px;
  }
}
/* mobile */
@media (max-width: 480px) {
  .signup-card {
    padding: 32px 24px;
  }

  .login-card {
    padding: 36px 24px;
  }

  .title {
    font-size: 24px;
  }
}
@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .socials{
    display:flex;

  }
  .socials a{
    font-size:0;
  }
  .socials a img{
    width: 30px;
  }
  .site-footer {
    padding: 40px 16px 24px;
  }
}
body[data-theme="dark"] {
  color: white;
  background-color: #000000;
}
body[data-theme="dark"] .service-card{
  background:#111111;
}
body[data-theme="dark"] .service-card p{
  opacity:0.5;
}
body[data-theme="dark"] .site-footer{
  background:#111111;
  color:#fff;
}
body[data-theme="dark"] .footer-col a{
  color:#ccc;
}
body[data-theme="dark"] .market-table{
  background:#111111;
}
body[data-theme="dark"] .table-head{
  background:#20241d;
}
body[data-theme="dark"] .table-head,
body[data-theme="dark"] .table-row{
  border-bottom: 1px solid #333
}
body[data-theme="dark"] .table-head,
body[data-theme="dark"] .table-row2{
  border-bottom: 1px solid #333
}
body[data-theme="dark"] .hero{
  background:#111111;
}
body[data-theme="dark"] .header{
  background:#000;
  border-bottom: 1px solid #444;
}
body[data-theme="dark"] .nav a{
  color:#aaa;
}
body[data-theme="dark"] .nav a:hover{
  color:#fff;
}
body[data-theme="dark"] .btn-outline,
body[data-theme="dark"] .btn-dark{
  color:#fff;
  background:#111111;
  border:1px solid #333;
}
body[data-theme="dark"] .logo a{
  background:url(../../img/intro/logo-w.svg) no-repeat;
}
body[data-theme="dark"] #dark-btn{
  background:url(../../img/intro/lightmode.svg) no-repeat;
}
body[data-theme="dark"] #mo-menu{
  background:url(../../img/intro/menu-w.svg) no-repeat;
}
body[data-theme="dark"] .mobile{
  background:#1b1b1b;
}
body[data-theme="dark"] #mobile-close{
  background:url(../../img/intro/mobile-close-w.svg) no-repeat;
}
body[data-theme="dark"] .login-card,
body[data-theme="dark"] .signup-card,
body[data-theme="dark"] .request-card{
  background:#111111
}
body[data-theme="dark"] .title{
  color:#fff;
}
body[data-theme="dark"] .login-form input{
  background:none;

}
body[data-theme="dark"] .login-form input::placeholder{
  color:#ccc;
}
body[data-theme="dark"] .desc,
body[data-theme="dark"] .login-links a{
  color:#ccc
}
body[data-theme="dark"] .link {
  color: #81cf08 !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}
body[data-theme="dark"] .checkbox span,
body[data-theme="dark"] .login-link{
  color:#ddd;
}
body[data-theme="dark"] .input-box,
body[data-theme="dark"] .textarea-box{
  background:#000;
}
body[data-theme="dark"] .input-box input::placeholder{
  color:#aaa;
}
body[data-theme="dark"] .input-box input{
  color:#fff;
}
body[data-theme="dark"] .input-box select option{
  color:#aaa;
}
body[data-theme="dark"] .input-box select{
  color:#fff;
}
body[data-theme="dark"] .textarea-box textarea::placeholder{
  color:#aaa;
}
body[data-theme="dark"] .textarea-box textarea{
  color:#fff;
}
body[data-theme="dark"] .login-form input{
  color:#fff;
}
body[data-theme="dark"] .board-header.active{
  background:#222;
  border-bottom: 1px solid #333;
}
body[data-theme="dark"] .board-header.active
body[data-theme="dark"] .board-title-text{
  color:#fff;
}
body[data-theme="dark"] .board-content{
  background:#222;
  color:#fff;
}
body[data-theme="dark"] .board-title-text{
  color:#cecece;
}
body[data-theme="dark"] .board-item{
  border-bottom: 1px solid #343434;
}
body[data-theme="dark"] .tab-btn{
  color:#fff;
}
body[data-theme="dark"] .tab-menu li{
  background:#222;
}
body[data-theme="dark"] .tab-btn.active{
  background:#223105;
}

/* toastr가 상단에 뜨는 모든 경우에 공통 적용 */
#toast-container.toast-top-right,
#toast-container.toast-top-left,
#toast-container.toast-top-center,
#toast-container.toast-top-full-width {
    top: 50px;
}

