
  /* Container */
  .appwe-install-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: calc(100% - 40px);
    z-index: 42000;
    display: none;
    animation: appwe-slide-up 0.4s ease-out;
  }

  /* Card */
  .appwe-install-card {
    background: var(--card-bg);
    border: 1px solid var(--simple-color);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }

  /* Content */
  .appwe-install-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  .appwe-install-icon {
    font-size: 28px;
    color: var(--branding);
    flex-shrink: 0;
  }

  .appwe-install-text {
    text-align: left;
    flex-grow: 1;
  }

  .appwe-install-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--light-text);
    line-height: 1.3;
  }

  .appwe-install-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    color: var(--light-text);
    line-height: 1.4;
  }

  /* Actions */
  .appwe-install-actions {
    display: flex;
    gap: 12px;
  }

  .appwe-install-btn {
    flex-grow: 1;
    padding: 12px 16px;
    background: var(--g-branding);
    color: black;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .appwe-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(150, 201, 61, 0.4);
  }

  .appwe-install-close {
    padding: 12px 16px;
    background: rgba(224, 255, 255, 0.05);
    border: 1px solid var(--simple-color);
    border-radius: 8px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .appwe-install-close:hover {
    background: rgba(224, 255, 255, 0.1);
    border-color: var(--branding);
  }

  /* Animation */
  @keyframes appwe-slide-up {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 480px) {
    .appwe-install-container {
      width: calc(100% - 20px);
      bottom: 10px;
    }
    
    .appwe-install-actions {
      flex-direction: column;
    }
    
    .appwe-install-subtitle {
      font-size: 13px;
    }
  }


/* notification */
/* Notification Bell */
.notification-bell {
  position: fixed;
 bottom: 30%;
  left: 10px;
  background: #ff4d4d;
  color: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999999;
  animation: shake 0.5s infinite;
  animation-duration: 5s;
}

.notification-bell i {
  font-size: 24px;
}

.notification-dot {
  position: absolute;
  top: -5px;
  right: -5px;
  background: white;
  color: #ff4d4d;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
}

/* Overlay Style */
.mvp-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.85);
  z-index: 30000;
  justify-content: center;
  align-items: center;
  padding: 7px;
}

.mvp-content {
  background: var(--background);
  color: var(--light-text);
  padding: 10px;
  border-radius: 10px;
  max-width: 500px;
  width: 99%;
  font-size:13px;
  border-left: 5px solid var(--branding);
  box-shadow: 0 0 20px rgba(0, 255, 224, 0.2);
  position: relative;
}

.mvp-content i {
  font-size: 14px;
  color: var(--branding);
  margin-right: 10px;
}

.mvp-content .done {
  color: green;
  font-size: 17px;
}

.mvp-content .highlight {
  color: var(--branding);
  font-weight: bold;
}

.mvp-content .feedback-link {
  color: var(--branding);
  text-decoration: underline;
}

#mvp-close {
  margin-top: 15px;
  background: var(--branding);
  color: black;
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Shake Animation */
@keyframes shake {
  0% { transform: rotate(0deg); }
  20% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}


/* mvp type shit!! */
.main-footer {
  background: transparent;
  color: var(--light-text);
  margin:100px auto 10px;
  padding: 1rem 10px;
  font-size: 13px;
  max-width:500px;
  width:94%;
  /*border-top:2px solid var(--light-text); */
  text-align: center;
  position: relative;
}

.footer-grid {
  display: flex;
  text-align:center;
  justify-content: space-evenly;
  gap: 7px;
  margin-bottom: 10px;
}

.footer-grid a {
  color: var(--light-text);
  text-decoration: none;
}

.footer-togglei {
  cursor: pointer;
  color: var(--light-text);
  border-bottom:3px dashed var(--light-text);
  padding:6px;
  font-size:13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-toggle {
  cursor: pointer;
  color: var(--light-text);
  padding:6px;
  font-size:13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-extra {
  display: none;
  color:var(--light-text);
  margin-top: 10px;
}

.footer-extra a {
  color: var(--light-text);
  text-decoration: none;
}


.footer-extra.show {
  display: block;
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color:var(--light-text);
  opacity: 0.9;
}

/* Overlay Panel */
.footer-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin:0 auto;
  max-height: 80%;
  background: var(--background);
  border-top: 2px dashed var(--simple-color);
  color: var(--light-text);
  overflow-y: auto;
  z-index: 111000;
  max-width:700px;
  display: none;
  padding: 1rem;
}

.footer-overlay.show {
  display: block;
}

.footer-overlay .close-btn {
  background: none;
  border: none;
  color: var(--branding);
  font-size: 1.7rem;
  float: right;
  cursor: pointer;
}

.footer-overlay img {
   border-radius:50%;
   height:120px;
   height:120px;
   border:4px solid var(--branding);
}

.footer-overlay h3 {
  margin-top: 0;
  color: var(--branding);
}

.footer-overlay p {
  font-size: 0.7rem;
  line-height: 1.3;
}
