/* ===== 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);
    }
}

