/* ===== Reset ===== */
* {
    box-sizing: border-box;
}

/* ===== Body ===== */
body {
    background: #000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;                 /* border-এর বাইরে gap = 0 */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 100%;
    border: 3px solid #FFD700;
    border-radius: 10px;        /* 🔥 হালকা radius */
    padding: 18px 14px;
    text-align: center;
    background: #000;
}

/* ===== Title ===== */
h2 {
    margin: 6px 0 4px;
    font-size: 20px;
    font-weight: 600;
}

/* ===== TikTok ID ===== */
.tiktok-id {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

/* ===== Profile Image ===== */
.profile-pic {
    width: 78px;                /* 🔥 আগের থেকে একটু বড় */
    height: 78px;
    border-radius: 50%;
    border: 2px solid #FFD700;
    margin: 8px 0;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255,215,0,0.6);
}

/* ===== About Text ===== */
.about-text {
    font-size: 13px;
    line-height: 1.45;
    margin: 6px 0 10px;
}

/* ===== Section Title ===== */
.section-title {
    color: #FFD700;
    margin: 10px 0 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== Buttons (Common) ===== */
.btn-main {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 6px 0;              /* 🔥 আগের থেকে সামান্য বেশি gap */
    border-radius: 8px;         /* 🔥 8px radius */
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: 0.2s;
}

/* ===== Download Button ===== */
.btn-dl {
    background: #FFD700;
    color: #000;
}

.btn-dl:active {
    transform: scale(0.97);
}

/* ===== Social Buttons ===== */
.social-tg { background: #0088cc; color: #fff; }
.social-yt { background: #ff0000; color: #fff; }
.social-fb { background: #1877f2; color: #fff; }

/* ===== Mobile Safety ===== */
img, a {
    max-width: 100%;
}

/* ===== Font Global ===== */
body, .container, .btn-main, .file-title, .pass-box {
    font-family: 'Oswald', sans-serif;
}

/* ===== File Title (Hi2) ===== */
.file-title {
    font-size: 22px;            /* বড় */
    font-weight: 600;
    color: #FFD700;             /* Yellow */
    margin-bottom: 6px;
}

/* ===== Password Box ===== */
.pass-box {
    margin-bottom: 14px;
    font-size: 18px;
}

.pass-label {
    color: #ff3b3b;             /* 🔥 Red */
    font-weight: 500;
}

.pass-value {
    color: #ffffff;             /* White */
    font-weight: 500;
    margin-left: 4px;
}

/* ===== Watch Setup Video Button (Glow) ===== */
.btn-video {
    background: #ff0000;
    color: #fff;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 0 12px rgba(255,0,0,0.7);
    animation: videoGlow 1.5s infinite alternate;
}

@keyframes videoGlow {
    from {
        box-shadow: 0 0 8px rgba(255,0,0,0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255,0,0,1);
    }
}

<script>
  // Prevent right click
document.oncontextmenu = () => {
  alert("Don't try right click")
  return false
}

/* Still anyone can inspect elements by F12 key. View page source by
Ctrl + U key. Copy by Ctrl + C key. Paste by Ctrl + V key. Let's prevent these */

document.onkeydown = e => {
  // Prevent F12 key
  if(e.key == "F12") {
    alert("Don't try to inspect element")
    return false
  }

  // Prevent showing page source by Ctrl + U
  if(e.ctrlKey && e.key == "u") {
    alert("Don't try to view page sources")
    return false
  }

  // Prevent copying anything from the page
  if(e.ctrlKey && e.key == "c") {
    alert("Don't try to copy page element")
    return false
  }

  // Prevent paste anything from other sources
  if(e.ctrlKey && e.key == "v") {
    alert("Don't try to paste anything to page")
    return false
  }
}
</script>
<script>
// Disable right-click
document.addEventListener('contextmenu', event => event.preventDefault());

// Disable F12, Ctrl+Shift+I, Ctrl+U
document.addEventListener('keydown', event => {
    if (event.keyCode === 123 || // F12
        (event.ctrlKey && event.shiftKey && event.keyCode === 73) || // Ctrl+Shift+I
        (event.ctrlKey && event.keyCode === 85)) { // Ctrl+U
        event.preventDefault();
    }
});
</script>
<script>
(function() {
    let devtoolsOpen = false;
    const threshold = 160; // Panel width/height threshold

    setInterval(function() {
        // If devtools is docked to side
        if (window.outerWidth - window.innerWidth > threshold) {
            devtoolsOpen = true;
        }
        // If devtools is docked to bottom
        if (window.outerHeight - window.innerHeight > threshold) {
            devtoolsOpen = true;
        }

        // Redirect if detected
        if (devtoolsOpen) {
            window.location.href = "https://www.google.com";
        }
    }, 500); // Check every 0.5 second
})();
</script>

