/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 29 2025 | 10:13:40 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

@media screen and (max-width: 768px) {
    html.show-app-prompt body::before {
      content: "";
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(6px);
      z-index: 9998;
    }

    #appPrompt {
      display: flex;
    }
  }

  #appPrompt {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #121212;
    color: #fff;
    padding: 16px;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
    font-family: "Segoe UI", sans-serif;
    flex-direction: column;
    gap: 12px;
    animation: slideUp 0.4s ease;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  #appPromptHeader {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
  }

  #appPromptContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  #appPromptContent img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  #appPromptContent .info {
    flex-grow: 1;
  }

  #appPromptContent .info .title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 2px;
  }

  #appPromptContent .info .desc {
    font-size: 13px;
    color: #ccc;
  }

  #appPromptContent .actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  #appPromptContent .actions button {
    padding: 6px 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
  }

  #downloadBtn {
    background-color: #e50914;
    color: #fff;
  }

  #closeBtn {
    background-color: transparent;
    color: #aaa;
  }