@font-face {
    font-family: 'msyi';
    src: 
    url('../fonts/msyi.ttf') format('truetype');
    font-weight: normal; font-style: normal;
}
body {
    font-family: msyi;
    margin:0;
    padding:0;
    background: #272C39;
    overflow: hidden;
}
html, body {
    height: 100%;
}
* {
    box-sizing: border-box;
}
.overlay {
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(39,44,57,0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
    z-index: 999;
    pointer-events: none;
}
.overlay.active {
    opacity: 1;
    pointer-events: all;
}
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px; /* 3x from 200px */
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 140, 0, 0.12); /* very soft center to avoid harsh dot */
  box-shadow: 0 0 450px 225px rgba(255, 140, 0, 0.12); /* 3x size with balanced opacity */
  transform: translate(-50%, -50%);
  z-index: 9999;
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translate(60px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
.touch {
    background: #C3AA60;
    width: 500px;
    padding:0 0 0 110px;
    position: absolute;
    top: 50%;
    right: -440px;
    transform: translate(60px, -50%);
    transition: right 0.7s ease-in-out;
    z-index: 999999;
    opacity: 0;
    transition: all 0.5s ease-out;
}
.touch.animate {
    animation: fadeLeft 0.8s ease forwards;
}
.touch.active {
    right: 0;
}
.touch_button {
    position: absolute;
    top:0;
    left:0;
    background: #C3AA60;
    border-right: 1px solid #272C39;
    width: 60px;
    height: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.touch_button span {
  display: inline-block;
  transform: rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap; /* prevents text wrapping */
  font-size: 34px;
  text-transform: uppercase;
  color: #272C39;
  -webkit-text-stroke: 1px #272C39;
}
.touch_content {
    padding:50px 50px 50px 0;
}
.touch_items {
    
}
@keyframes fadeLeftTouchItem {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.touch_item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin:0 0 20px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease-out;
}
.touch_item.animate {
    animation: fadeLeftTouchItem 0.8s ease forwards;
}
.touch_item:last-child {
    margin:0;
}
.touch_item span {
    margin:8px 0 0 0;
}
.touch_item span svg {
    width: 22px;
    height: 22px;
    fill:#272C39;
}
.touch_item div {
    margin:0 0 0 20px;
    font-size: 30px;
    color: #272C39;
}
.touch_item a.map {
    font-size: 30px;
    color: #272C39;
    margin:6px 0 0 2px;
    font-size: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}
.touch_item a.map svg {
    margin:6px 0 0 14px;
    font-size: 17px;
}
.touch_item a.map:hover {
    opacity: 0.7;
}
.wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}
.logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 170px;
    padding:0 60px;
    line-height: 0;
}
.logo img {
    height: 70px;
}
.content {
    width: 100%;
    padding:0 60px 0 0;
}
.points {
    width:100%;
    padding:0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.point_item {
    width: calc(50% - 30px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin:6px 0;
    border:1px solid transparent;
    height: 70px;
    border-radius: 70px;
    padding:0 0 7px 0;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease-out;
}
.point_item.animate {
    animation: fadeRight 0.8s ease forwards;
}
.point_item:hover {
    border:1px solid #fff;
    padding:0 20px 7px 20px;
}
.point_item.active {
    padding:0 20px 7px 20px;
    background: rgba(255,255,255,0.1);
}
.point_item span {
    margin:5px 0 0 0;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    border:2px solid #C3AA60;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:2px 0 0 0;
    position: relative;
    z-index: 1;
}
.point_item span div {
    color: #272C39;
    font-size: 0;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.point_item.active span {
    width: 30px;
    height: 30px;
    background: #C3AA60;
}
.point_item.active span div {
    opacity: 1;
    font-size: 24px;
}
.point_item div {
    color:#fff;
    font-size: 28px;
}
.point_title {
    position: absolute;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
    opacity: 1;
    left:40px;
    width: calc(100% - 110px);
    line-height: 25px;
}
.point_item:hover .point_title {
    left: 60px;
}
.point_desc {
    position: absolute;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
    opacity: 0;
    left:-300px;
    white-space: normal;
    word-break: break-word;
    visibility: hidden; /* initially hidden */
    width: calc(100% - 110px);
    line-height: 25px;
}
.point_item.active .point_title {
    opacity: 0;
    left:300px;
}
.point_item.active .point_desc {
    left:70px;
    opacity: 1;
    visibility: visible;
}
.uc {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding:0 60px;
    font-size: 34px;
    color: #fff;
    text-transform: uppercase;
}


@media only screen and (max-width : 1030px) {
    .logo {
        height: auto;
        margin:30px 0 0 0;
    }
    .uc {
        height: auto;
        margin:0 0 30px 0;
    }
    .point_item {
        width: 100%;
        height: 50px;
        border-radius: 50px;
        margin:2px 0;
    }
    .point_item:hover {
        padding: 0 20px 7px 10px;
    }
    .point_item.active {
        padding: 0 20px 7px 10px;
    }
    .point_item.active .point_desc {
        left: 60px;
    }
    .point_item.active span {
        margin: 6px 0 0 0;
        width: 26px;
        height: 26px;
    }
}

@media only screen and (max-width : 780px) {
    .logo {
        margin:20px 0 0 0;
        padding:0 20px;
    }
    .logo img {
        height: 45px;
    }
    .touch {
        width: 300px;
        right: -250px;
    }
    .touch_button {
        width: 50px;
    }
    .touch_button span {
        font-size: 22px;
    }
    .touch_content {
        padding:25px 0;
        margin-left: -40px;
    }
    .touch_item {
        margin:0 0 15px 0;
    }
    .touch_item span {
        margin:6px 0 0 0;
    }
    .touch_item span svg {
        width: 15px;
        height: 15px;
    }
    .touch_item div {
        font-size: 21px;
        margin:0 0 0 10px;
    }
    .touch_item a.map {
        font-size: 18px;
    }
    .touch_item a.map svg {
        font-size: 12px;
        margin:6px 0 0 10px;
    }
    .uc {
        font-size: 20px;
        padding:0 20px;
        margin:0 0 20px 0;
    }
    .content {
        padding:0 50px 0 0;
    }
    .points {
        padding:0 10px 0 20px;
    }
    .point_item {
        margin:0;
        padding: 0 0 5px 0;
    }
    .point_item div {
        font-size: 21px;
    }
    .point_item span {
        margin:4px 0 0 0;
        width: 14px;
        height: 14px;
        border: 1px solid #C3AA60;
    }
    .point_title {
        left: 25px;
        width: calc(100% - 40px);
        line-height: 18px;
    }
    .point_item:hover {
        padding: 0 0 5px 0;
        border:1px solid transparent;
    }
    .point_item:hover .point_title {
        left: 25px;
    }
    .point_item.active span {
        width: 20px;
        height: 20px;
        margin:4px 0 0 0;
    }
    .point_item.active span div {
        font-size: 10px;
    }
    .point_item.active {
        padding: 0 10px 5px 10px;
    }
    .point_desc {
        line-height: 18px;
        width: calc(100% - 50px);
    }
    .point_item.active .point_desc {
        left: 40px;
    }
    .cursor-glow {
        width: 250px;
        height: 300px;
        background: rgba(255, 140, 0, 0.1); /* slightly softer center */
        box-shadow: 0 0 225px 112px rgba(255, 140, 0, 0.1); /* 2x smaller shadow */
        animation: floatAround 25s infinite linear alternate;
      }
      @keyframes floatAround {
        0% {
          top: 0%;
          left: 0%;
        }
        25% {
          top: 50%;
          left: 50%;
        }
        50% {
          top: 100%;
          left: 100%;
        }
        75% {
          top: 50%;
          left: 50%;
        }
        100% {
          top: 0%;
          left: 0%;
        }
      }
}