.pbp-btn {
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
  background-color: #e00000;
  display: block;
  border: 1px solid #fff;
  margin: 14px auto 0;
  padding: 8px 12px;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.pbp-btn:hover {
  opacity: 0.8;
  color: white;
}

#pbp-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}
.pbp-content {
    background: #fff;
    width: 500px;
    max-width: 95%;
    margin: 10% auto;
    padding: 14px;
    text-align: center;
    position: relative;
    border-radius: 10px;
    border: 1px solid #6e6e6e;
}
.contn-pbp {
    color: #222;
}
.pbp-content img {
    max-width: 100%;
    margin-bottom: 18px;
}
.pbp-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #ff3b3b;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.2s;
}
.pbp-close:hover {
    background: #d90000;
    transform: scale(1.1);
}
#pbp-popup {
    cursor: pointer;
}
.pbp-content {
    cursor: default;
}
/* ===============================
   PBP MUSIC TOGGLE (CLEAN)
================================ */

.pbp-music-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
}

/* hide checkbox */
.pbp-toggle input {
    display: none;
}

/* switch body */
.pbp-toggle {
    position: relative;
    width: 44px;
    height: 22px;
}

/* slider */
.pbp-toggle-slider {
    position: absolute;
    inset: 0;
    background-color: #ccc;
    border-radius: 22px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* knob */
.pbp-toggle-slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

/* ON state */
.pbp-toggle input:checked + .pbp-toggle-slider {
    background-color: #2ecc71;
}

.pbp-toggle input:checked + .pbp-toggle-slider::before {
    transform: translateX(22px);
}

