body { 
  font-family: Arial, sans-serif; 
  background: #f6f6f6; 
  margin: 0; 
}

header { 
  background: #219783; 
  color: white; 
  text-align: center; 
  padding: 25px; 
}

h1 { 
  margin: 0; 
}

.posters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.poster {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: black;
  font-size: 1.2rem;
  position: relative; /* Needed for badge positioning */
}

.poster:hover {
  transform: scale(1.05);
}

/* 🔥 CORNER BADGE (e.g., HOT) */
.corner-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53935;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.corner-badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #19bc3c;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* NAVBAR */
.navbar {
  position: relative;
  background: #c62828;
  padding: 15px;
  color: white;
  font-size: 24px;
}

/* Hamburger icon */
.hamburger {
  cursor: pointer;
  user-select: none;
  font-size: 30px;
}

/* Dropdown menu */
.menu {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: none;
  overflow: hidden;
}

.menu li a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #381f84;
  font-size: 18px;
}

.menu li a:hover {
  background: #ffe5e5;
}

body {
  font-family: Arial, sans-serif;
  background: #f1f1f1;
  margin: 0;
}

/* Post container */
.post-container {
  max-width: 550px;
  margin: 30px auto;
}

/* Profile header */
.profile-header {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.featured {
  color: gray;
  font-size: 14px;
  margin-top: 6px;
}

.tagged {
  color: #007bff;
}

.profile-wrapper {
  text-decoration: none;
  color: inherit;
  display: block;
}

.profile-wrapper .profile-header {
  cursor: pointer;
}

.fake-btn {
  pointer-events: none;
}