    /*--------*/
    a#modalClose {
      display: block;
      font-size: 24px;
      color: white;
      text-decoration: none;
    }

    #modalWindow_layer {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.6); 
      display: none;
      z-index: 9001;
    }

    #modalWindow {
      width: 440px;
      max-height: 625px;
      padding: 10px;
      display: none;
      position: relative;
      margin: 100px auto;
      background: #fef5d2; 
      scrollbar-width: none;
      border-radius: 10px;
      z-index: 9002;
    }

    #modalTopbar {
      position: absolute;
      top: -20px;
      right: -20px;
      height: 35px;
      width: 35px;
      background-color: #1B78B6;
      border-radius: 50%;
      border: 4px solid white;
      box-shadow: 0 0 5px #000;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 9003;
    }

    @media (max-width: 768px) {
      #modalTopbar {
        top: -10px;
        right: -10px;
      }

      #modalWindow {
        width: 90%;
      }
    }

    #modalFeature {
      position: relative;
      overflow: hidden;
      line-height: 1.4;
    }

    #modalSkip {
      position: fixed;
      top: 0; left: 0;
      z-index: 3;
      width: auto;
      background: #000;
      color: #fff;
      font-weight: bold;
      padding: 10px 20px;
      display: none;
    }

   
    #modalFeature_content {
      display: flex;               
      flex-direction: column;      
      justify-content: center;    
      align-items: center;        
      text-align: center;          
      height: 100%;                
    }

    #modalFeature_content h1,
    #modalFeature_content p {
      margin: 0;                  
      padding: 0;                 
    }

    #modalFeature_content h1 {
      margin-bottom: 10px;         
    }

    #modalFeature_content p {
      margin-top: 0;              
      line-height: 1.6;          
    }

    #modalFeature_content a:link {
      color: #2a39ff;
      text-decoration: underline;
    }

    .modal {
      width: 640px;
      background: #fff;
      padding: 15px 30px;
      box-shadow: 0 0 10px #000;
      border-radius: 8px;
    }