/* Project: M.r Tom FF - Ultra Premium Design 
  Focus: Mobile Responsive & Unique Color Palette
*/

:root {
  --bg: #050508;
  --accent: #00f2ff; /* Neon Cyan */
  --secondary: #7000ff; /* Electric Purple */
  --card-bg: rgba(15, 15, 22, 0.95);
  --text: #ffffff;
  --btn-grad: linear-gradient(135deg, #00f2ff, #7000ff);
  --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.25);
}

/* Base Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--bg);
  /* ব্যাকগ্রাউন্ডে হালকা গ্লো ইফেক্ট যা সাইটকে প্রিমিয়াম করবে */
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 242, 255, 0.1) 0%, transparent 40%);
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* কন্টেন্ট কেটে যাওয়া রোধ করতে */
  overflow-x: hidden;
}

/* মেইন কন্টেইনার */
.wrap {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  padding: 30px 15px; /* মোবাইল স্ক্রিনে উপর-নিচে গ্যাপ রাখার জন্য */
}

/* মেইন কার্ড ডিজাইন */
.card {
  width: 100%;
  padding: 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: var(--card-bg);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  position: relative;
}

/* প্রোফাইল ইমেজ গ্লো */
.profile img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.profile img:hover { transform: scale(1.1) rotate(5deg); }

h1 { font-size: 26px; margin-top: 15px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
.tiktok { opacity: 0.6; font-size: 13px; margin-bottom: 12px; letter-spacing: 1px; color: #fff; }
.about { font-size: 14px; line-height: 1.6; color: #b0b0b0; margin-bottom: 20px; padding: 0 5px; }

.section-title {
  font-size: 14px;
  margin: 20px 0 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  font-weight: 600;
}

/* ডাউনলোড বাটন - গ্লসি স্টাইল */
.dl-btn {
  width: 100%;
  padding: 16px;
  margin: 8px 0;
  border: none;
  border-radius: 14px;
  background: var(--btn-grad);
  color: #fff; /* টেক্সট সাদা করলাম যেন পরিষ্কার দেখা যায় */
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 15px rgba(112, 0, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dl-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 242, 255, 0.4);
  filter: brightness(1.2);
}

/* সোশ্যাল বাটন - ইউনিক সলিড লুক */
.socials { display: flex; flex-direction: column; gap: 10px; margin-top: 5px; }
.social {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; padding: 14px; border-radius: 14px;
  text-decoration: none; font-size: 15px; font-weight: 600; color: #fff;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.social.tg { border-left: 5px solid #0088cc; }
.social.yt { border-left: 5px solid #ff0000; }
.social.fb { border-left: 5px solid #1877f2; }

.social:hover { 
  background: rgba(255, 255, 255, 0.08); 
  transform: translateX(5px); 
}

/* -------------------------------------------
   পপ-আপ সেকশন - ১০০% ফিক্সড এলাইনমেন্ট 
---------------------------------------------- */

.popup-wrap, .task-popup-wrap {
  position: fixed; 
  inset: 0; 
  backdrop-filter: blur(15px); 
  background: rgba(0, 0, 0, 0.85);
  display: none; 
  align-items: center; 
  justify-content: center; 
  z-index: 99999;
  padding: 20px;
}

.popup-wrap.show, .task-popup-wrap.show { display: flex; }

.popup, .task-popup {
  background: #0a0a0c;
  border: 2px solid var(--secondary);
  padding: 30px 20px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(112, 0, 255, 0.3);
  position: relative;
  animation: popShow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popShow {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup .close {
  position: absolute; top: 15px; right: 20px;
  background: none; border: 0; color: #666;
  font-size: 30px; cursor: pointer;
}

.p-multi a {
  display: block; margin: 15px 0; padding: 15px;
  background: var(--btn-grad); color: #fff;
  border-radius: 12px; text-decoration: none; font-weight: 700;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.popup-video {
  display: inline-block; margin-top: 10px; color: var(--accent);
  text-decoration: none; font-size: 14px; font-weight: 500;
}

/* টাস্ক বক্স ফিক্স */
.task-box {
  margin-top: 15px;
  padding: 15px;
  background: rgba(0, 242, 255, 0.1);
  border: 1px dashed var(--accent);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 600;
}