@font-face {
  font-family: 'Orbitron';
  src: url('../fonts/Orbitron-Regular.woff2') format('woff2'),
       url('../fonts/Orbitron-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Orbitron';
  src: url('../fonts/Orbitron-Bold.woff2') format('woff2'),
       url('../fonts/Orbitron-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

body, h1, h2, h3, p {
  font-family: 'Orbitron', sans-serif;
}
.wata-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 0 transparent;
}

.wata-btn:hover {
  background-color: #1DB954;
  color: #000;
  box-shadow: 0 0 10px #1DB954, 0 0 20px #1DB954;
  transform: scale(1.05);
}
#app-demo {
    margin-top: 1.5rem;
}

#app-demo h2 {
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 2rem;
}

#app-demo section {
    margin-bottom: 3rem;
}

#app-demo .custom-styles {
    text-align: center;
}

#app-demo .custom-styles a {
    color: #ec407a;
    text-decoration: none!important;
    position: relative;
}

#app-demo .custom-styles a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ec407a;
    height: 2px;
    width: 0;
    transition: width .3s ease-out;
}

#app-demo .custom-styles a:hover::after {
    width: 100%;
}

#map-demos .map-demo-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

#map-demos .map-demo-tabs a {
    color: #ec407a;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 1000rem;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    transition: background-color .3s, color .3s;
    text-decoration: none!important;
    white-space: nowrap;
}

#map-demos .map-demo-tabs a:hover {
    background-color: rgba(236,64,123, .1);
}

#map-demos .map-demo-tabs a.active {
    color: white;
    background-color: #ec407a;
}

#map-demos .map-demo-content {
    display: none;
}

#map-demos .map-demo-content.active {
    display: block;
}

#map-demos .map-demo-content h3 {
    display: none;
}

#demo-pages {
    font-size: 1.5rem;
}

#demo-pages ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

#demo-pages ul li {
    padding-left: 1rem;
}

#demo-pages ul li::after {
    content: '/';
    display: inline-block;
    padding-left: 1rem;
}

#demo-pages ul li:first-child {
    padding-left: 0;
}

#demo-pages ul li:last-child::after {
    display: none;
}

#demo-pages a {
    font-weight: 600;
}

#demo-pages div {
    margin-bottom: 1.5rem;
}

#demo-pages code {
    color: white;
    background: #333;
    border-radius: 4px;
    padding: .75rem;
    display: inline-block;
}

