/* ভেরিয়েবল */
:root {
    --primary-color: #1877f2;   /* Facebook Blue */
    --live-red: #ff0000;        /* লাল মার্কের রং */
    --bg-color: #000000;        /* পুরো ব্যাকগ্রাউন্ড কালো */
    --content-bg-color: #1a1a1a; /* ২ নং ঘরের জন্য কালচে রং */
    --text-dark: #ffffff;       /* টেক্সটের রং */
}

/* বেসিক রিসেট */
 
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #000; /* বা যেটা তুমি চাও */
}



/* ন্যাভবার স্টাইল */
.navbar {
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-icon {
    width: 28px;
    height: 28px;
    filter: invert(25%);
}

.notification-icon {
    position: relative;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--live-red);
    color: white;
    border-radius: 50%;
    padding: 3px 6px;
    font-size: 10px;
}

/* কন্টেইনার স্টাইল */
.container {
    padding: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.live-header {
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: black;
  padding: 10px 0px;
  margin: 0;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: Arial, sans-serif;
  color: #fff;
}

.profile-card {
  width: 100%;
  padding: 10px 0;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
}

.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  flex-grow: 1;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.name {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.follow {
  background-color: #1877f2;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
}

.meta-info {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  font-size: 13px;
  color: #aaa;
}

.globe-icon {
  width: 13px;
  height: 13px;
}

.description {
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.4;
}

.hashtags {
  color: #1877f2;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 8px;
}

.video-wrapper {
  position: relative;
  width: 100%;
}

.video-thumb {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.play-button-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.live-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: red;
  color: white;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 3px;
  font-weight: bold;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 10px 5px 10px;
  font-size: 13px;
  color: #ccc;
}

.actions {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.actions button {
  flex: 1;
  margin: 4px;
  padding: 6px;
  border: none;
  background-color: #222;
  color: white;
  font-size: 14px;
  border-radius: 5px;
}
