  
/* Basic CSS */
  a, a:link, a:active, a:visited, a:hover {
    text-decoration: none;
  }
  a:focus {
    outline: none;
    text-decoration: none;
  }
  a:hover {
    color: inherit;
  }
  .delay-1s {
    animation-delay: 1s;
  }
  .delay-2s {
    animation-delay: 2s;
  }
  @media (min-width: 768px) {
    .hidden-lg {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .hidden-xs {
      display: none;
    }
  }


/* Page CSS */

@font-face {
  font-family: 'sba';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding-top: 5vh;
  font-size: 2rem;
}
.glass-box {
  background: rgba(255, 255, 255, 0.05); /* 반투명 */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 800px;
  color: #eee;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  margin : 0 auto;
}

.glass-box h2 {
  font-size: 38px;
  font-family: sba;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-top: 0px;
}
.glass-box h3 {
  font-size: 58px;
}
.glass-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-top: 15px;
}
.glass-box.tele p {
  font-size: 20px;
}
.content > .top img {
  width: 100%;
  max-width: 630px;
}
.content > .mid,
.content > .bottom,
.content > .bottom-01 {
  padding: 35px 0px;
}
.content > .mid {
 background: rgba(0, 0, 0, 0.5);
}
.content > .bottom {
 background: rgba(0, 0, 0, 0.8);
}
.content > .bottom-01 {
 background: rgba(0, 0, 0, 0.5);
}
.mid-box-02 {

}
.mid-box-02 p {
  color: gold;
}
.glass-box .domain-name {
  width: 100%;
  max-width: 500px;
  font-size: 32px;
  font-weight: 500;
  font-family: sba;
  padding: 15px 0px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  margin-top: 10px;
  color: #ddd;
}
.glass-box .domain-name:hover {
  transition: 0.1s;
  filter: sepia(0.5);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 5px grey;
}
.glass-box b {
  color: gold;
}
.glass-box.tele img {
  width: 100%;
  max-width: 350px;
}
.glass-box.tele img:hover {
  filter: sepia(0.5);
}