body {
        background-color: var(--bg);
        margin: 0;
        overflow: hidden;
        font-family: 'Bebas Neue', sans-serif;
}
    canvas { display: block; }
    :root {
      --mylogo: #1ec2de;
      --accent: #3bca98;
      --myinterface: #0f45aa;
      --bg: #121212;
      --black2: #161616;
      --black3: #1C1C1C;
      --grey: #414141;
      --grey2: #666666;
      --text: #FFFFFF;
    }
    .overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      
      transform: translate(-50%, -50%);
      color: var(--text);
      border-radius: 0px; 
      height: 500px;
      width: 340px;
      box-sizing: border-box;
      z-index: 1; 
    }
    .three-container {
    position: relative;
    top: -80px;
    width: 100%;
    height: 100vh;
    z-index: 0;
}
    .stripe1 {
    position: absolute;
    top: 420px;
    left: 0;
    width: 100%; 
    height: 80px;
    background-color: var(--myinterface);
    z-index: 2;
}
.stripe2 {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--myinterface);
    z-index: 2;
}
.stripe3 {
    position: absolute;
    top: 0px;
    left: 0;
    width: 8px;
    height: 100%;
    background-color: var(--myinterface);
    z-index: 2;
}
.stripe4 {
    position: absolute;
    top: 0px;
    left: 332px;
    width: 8px;
    height: 100%;
    background-color: var(--myinterface);
    z-index: 2;
}
.stripe5 {
    position: absolute;
    top: 460px;
    left: 80px;
    width: 144px;
    height: 1px;
    background-color: var(--bg);
    z-index: 2;
}
    .logo {
    height: 40px; 
    position: absolute;
    left: 20px; 
    bottom: 20px;
    z-index: 3;
    }
    .adress {
      color: var(--bg);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      text-align: left;
      font-size: 16px;
      line-height: 16px;
      position: absolute; 
      left: 20px; 
      bottom: 12px;
      z-index: 3;
    }
    .date {
      color: var(--mylogo);
      font-family: 'Bebas Neue', sans-serif;
      font-weight: 300;
      text-align: right;
      font-size: 64px;
      line-height: 56px;
      position: absolute;
      right: 20px; 
      bottom: 84px;
      z-index: 3;
    }
    .mounth {
      color: var(--text);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      text-align: right;
      font-size: 16px;
      line-height: 16px;
      position: absolute;
      right: 20px; 
      bottom: 84px;
    }
    @keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}
    .name {
      position: absolute;
      color: var(--bg);
      bottom: 20px;
      right: 20px;
      font-family: 'Bebas Neue', sans-serif;
      font-weight: 300;
      font-size: 32px;
      line-height: 32px;
      text-align: right;
      z-index: 4;
      animation: pulse 1.5s ease-in-out infinite;
}
    .promo {
      position: absolute;
      color: var(--text);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      text-align: center;
      font-size: 16px;
      line-height: 16px;
    }
    .start {
      position: absolute;
      color: var(--text);
      margin-top: 40px;
      margin-bottom: 20px;
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      text-align: left;
      font-size: 16px;
      line-height: 16px;
      margin-left: 20px; 
    }
    .artists-container {
    position: absolute;
    top: 372px;
    left: 0;
    transform: translateY(-50%);
}
    .artist {
      color: var(--accent);
      top: 100px;
      margin-top: 8px;
      margin-left: 20px;
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      text-align: left;
      font-size: 20px;
      line-height: 16px;
}
    .finish {
      position: absolute;
      color: var(--text);
      margin-top: 20px;
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      text-align: right;
      font-size: 16px;
      line-height: 16px;
      margin-right: 20px;
    }
    .price {
      position: absolute;
      color: var(--text);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      left: 20px; 
      bottom: 20px; 
      font-size: 16px;
      line-height: 16px;
      text-align: left;
}
    .fc {
      position: absolute;
      color: var(--text);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      right: 20px; 
      bottom: 20px; 
      font-size: 16px;
      line-height: 16px;
      text-align: right;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.button-container {
    display: flex;
    justify-content: right;
    position: relative;
    top: 8px;
    right: 8px;
    z-index: 4;
}
    .btn {
      background-color: transparent;
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      line-height: 12px;
      font-weight: 300;
      padding: 4px 8px;
      border: 1px solid var(--myinterface);
      color: var(--myinterface); 
      border-radius: 0px;
      box-sizing: border-box;
      cursor: pointer;
      animation: fadeIn 0.8s ease forwards;
      z-index: 4;
    }
    .btn:hover {
      border: 1px solid var(--accent);
    }
    .btn:active {
      border: 1px solid var(--accent);
      color: var(--accent);
    }
    .modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(18, 18, 18);
    color: var(--text);
    border: 1px solid var(--black2);
    border-radius: 0px;
    height: 500px;
    width: 340px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.modal.show {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.modal-content {
    padding: 20px;
    text-align: center;
}
.close {
    color: var(--myinterface);
    float: right;
    font-size: 28px;
}
.close:hover,
.close:focus {
    color: var(--accent);
    text-decoration: none;
    cursor: pointer; 
}
.close:active {
    transform: scale(0.96);
    text-decoration: none;
    cursor: pointer; 
}