#comments-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  margin: auto;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#comments-popup.show {
  transform: translateY(0);
  opacity: 1;
}
#comments-popup .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
}
#comments-popup .overlay.show {
  opacity: 1;
}
#comments-popup .comments-box {
  width: 85vw;
  max-width: var(--maxWidth, 700px);
  max-height: var(--maxHeight, 600px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#comments-popup .comments-box .heading {
  margin-bottom: 0;
  font-size: 20px;
  padding-left: 16px;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid var(--text-muted);
}
#comments-popup .comments-box .heading .title span {
  margin-right: 16px;
}
#comments-popup .comments-box .heading p.close-icon {
  margin: 12px;
  margin-left: auto;
  margin-right: 16px;
  background-color: var(--bg-dark2);
  padding: 8px;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border: 0.2px solid var(--text-muted);
  color: white;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}
#comments-popup .comments-box {
  height: 500px;
}
#comments-popup .comments-box #comments-loader {
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: transparent;
  color: var(--text-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}
#comments-popup .comments-box #comments-loader .comments-loader-text {
  font-size: 2rem;
  font-family: "Lato";
  display: flex;
  gap: 8px;
}
#comments-popup .comments-box #comments-loader .comments-loader-text .letter {
  display: inline-block;
  animation: jump 1s infinite ease-in-out;
}
#comments-popup .comments-box #comments-loader .comments-loader-text .letter span {
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}
#comments-popup .comments-box #comments-loader .comments-loader-text .letter .letter-blue {
  color: blue;
}
#comments-popup .comments-box #comments-loader .comments-loader-text .letter .letter-green {
  color: green;
  -webkit-text-stroke: 0.005px white;
}
#comments-popup .comments-box #comments-loader .comments-loader-text .letter .letter-red {
  color: red;
  -webkit-text-stroke: 0.005px white;
}
#comments-popup .comments-box #comments-loader .comments-loader-text .letter .letter-yellow {
  color: yellow;
  -webkit-text-stroke: 0.005px white;
}
#comments-popup .comments-box #comments-loader.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
#comments-popup .comments-box .comments-list {
  padding: 1.5rem;
  padding-left: 1rem;
  flex: 1;
  overflow-y: auto;
  margin-bottom: 1rem;
}
#comments-popup .comments-box .comments-list .comment {
  display: none;
  align-items: center;
  font-weight: 400;
  margin-bottom: 16px;
}
#comments-popup .comments-box .comments-list .comment img.user-profile {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
  cursor: pointer;
}
#comments-popup .comments-box .comments-list .comment .comment-info .name {
  margin: 0;
  margin-bottom: 2px;
  cursor: pointer;
}
#comments-popup .comments-box .comments-list .comment .comment-info .time {
  color: grey;
}
#comments-popup .comments-box .comments-list .comment .comment-info .text {
  font-size: 14px;
  color: rgb(200, 200, 200);
}
#comments-popup .comments-box .comments-list .comment .action-buttons {
  margin-left: auto;
  color: var(--text-muted);
}
#comments-popup .comments-box .comments-list .comment .action-buttons span {
  cursor: pointer;
}
#comments-popup .comments-box .comments-list .comment .action-buttons .fa-trash {
  color: red;
  margin-left: 16px;
}
#comments-popup .comments-box .comments-list p {
  margin-bottom: 0.75rem;
  line-height: 1.4;
  word-wrap: break-word;
}
#comments-popup .comments-box .comments-list p strong {
  color: var(--input-bg);
}
#comments-popup .comments-box .input-area {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border-top: 1px solid var(--text-muted);
  padding: 12px;
}
#comments-popup .comments-box .input-area input {
  flex: 1;
  resize: none;
  padding: 0.5rem;
  border-radius: 4px;
  border: 0.5px solid var(--text-muted);
  font-size: 0.95rem;
  font-family: inherit;
  background-color: var(--input-bg);
  color: white;
}
#comments-popup .comments-box .input-area input:focus {
  outline: none;
  border-color: var(--primary-dark);
}
#comments-popup .comments-box .input-area button {
  background: var(--primary-dark);
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
#comments-popup .comments-box .input-area button:hover {
  background: var(--primary);
}

@media (max-width: 600px) {
  .comments-box {
    width: 100vw !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border-radius: 0 !important;
    padding-bottom: 32px !important;
  }
}
.posts {
  width: 100%;
  max-width: 600px;
  background-color: var(--bg-dark);
  border-radius: 8px;
  margin: auto;
  padding: 0 24px 12px 23px;
  box-sizing: border-box;
}
.posts #posts-loader {
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: transparent;
  color: var(--text-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}
.posts #posts-loader.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.posts #posts-loader .posts-loader-text {
  font-size: 2rem;
  font-family: "Lato";
  display: flex;
  gap: 8px;
}
.posts #posts-loader .posts-loader-text .letter {
  display: inline-block;
  animation: jump 1s infinite ease-in-out;
}
.posts #posts-loader .posts-loader-text .letter span {
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}
.posts #posts-loader .posts-loader-text .letter span.letter-blue {
  color: blue;
}
.posts #posts-loader .posts-loader-text .letter span.letter-green {
  color: green;
  -webkit-text-stroke: 0.005px white;
}
.posts #posts-loader .posts-loader-text .letter span.letter-red {
  color: red;
  -webkit-text-stroke: 0.005px white;
}
.posts #posts-loader .posts-loader-text .letter span.letter-yellow {
  color: yellow;
  -webkit-text-stroke: 0.005px white;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.posts .heading {
  font-size: 20px;
  font-weight: bold;
}
.posts .post {
  margin-top: 16px;
  border-top: 1px solid var(--text-muted);
  padding-top: 16px;
}
.posts .post:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.posts .post .user-info {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.posts .post .user-info .username {
  font-size: 14px;
  color: var(--text-muted);
}
.posts .post .user-info img.user-profile {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}
.posts .post .post-data {
  padding-top: 12px;
  line-height: 24px;
}
.posts .post .post-data p {
  margin: 0;
}
.posts .post .post-data .post-img {
  width: 100%;
  object-fit: contain;
  max-height: 500px;
  margin-top: 12px;
  border-radius: 4px;
}
.posts .post .post-buttons {
  margin-top: 8px;
  padding: 8px 0;
  display: flex;
}
.posts .post .post-buttons .btns-right {
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.posts .post .post-buttons .btns-right .fa-trash {
  cursor: pointer;
  margin-left: 12px;
}
.posts .post .post-buttons .btns-right button {
  margin-right: 0 !important;
}
.posts .post .post-buttons button {
  background-color: transparent;
  color: white;
  border: none;
  outline: none;
  font-size: 16px;
  cursor: pointer;
  margin-right: 16px;
  padding: 0;
}
.posts .post .post-buttons button.like-btn {
  margin-right: 12px;
}
.posts .post .post-buttons button:hover {
  color: var(--text-muted);
}
.posts .post .post-buttons button span.fal,
.posts .post .post-buttons button span.fas {
  margin-right: 6px;
}
.posts .post .post-buttons button span.fas {
  color: var(--primary);
}
.posts .post .extend-like-msg {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: grey;
}
.posts .post .extend-like-msg img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 6px;
  object-fit: cover;
}
.posts .post .extend-like-msg span {
  color: rgb(189, 189, 189);
  font-weight: 500;
  cursor: pointer;
}

#post-popup.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1100;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
#post-popup.popup-wrapper.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#post-popup.popup-wrapper .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
#post-popup.popup-wrapper .post-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 800px;
  background: var(--bg-dark);
  border-radius: 12px;
  padding: 1rem 1rem 1rem 1rem;
  padding-top: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}
#post-popup.popup-wrapper .post-box .editor {
  min-height: 120px;
  border: 1px solid #555;
  padding: 10px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 0 0 8px 8px;
  white-space: pre-wrap;
}
@media (max-width: 600px) {
  #post-popup.popup-wrapper .post-box .editor {
    max-height: 200px;
  }
}
#post-popup.popup-wrapper .post-box .editor:empty::before {
  content: attr(placeholder);
  color: var(--text-muted);
}
#post-popup.popup-wrapper .post-box .editor .mention {
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}
#post-popup.popup-wrapper .post-box .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid 555;
}
#post-popup.popup-wrapper .post-box .heading .close-icon {
  cursor: pointer;
  font-size: 1.1rem;
  background: var(--bg-dark2);
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  padding: 0.5rem;
  color: white;
  min-width: 36px;
}
#post-popup.popup-wrapper .post-box textarea {
  resize: vertical;
  height: 100px;
  padding: 0.6rem;
  background: var(--input-bg);
  border: 1px solid var(--text-muted);
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
#post-popup.popup-wrapper .post-box .upload-label {
  cursor: pointer;
  background: var(--primary-dark);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  display: inline-block;
  font-size: 0.9rem;
  transition: background 0.2s ease;
  margin: 1rem 0;
  width: 130px;
}
#post-popup.popup-wrapper .post-box .upload-label:hover {
  background: var(--primary);
}
#post-popup.popup-wrapper .post-box input[type=file] {
  display: none;
}
#post-popup.popup-wrapper .post-box .preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#post-popup.popup-wrapper .post-box .preview img,
#post-popup.popup-wrapper .post-box .preview video {
  max-width: 100px;
  max-height: 100px;
  border-radius: 8px;
  object-fit: cover;
}
#post-popup.popup-wrapper .post-box .action-buttons {
  text-align: right;
}
#post-popup.popup-wrapper .post-box .action-buttons button {
  align-self: flex-end;
  color: white;
  border: none;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
}
#post-popup.popup-wrapper .post-box .action-buttons button.create-post-btn {
  background: var(--primary-dark);
  margin-left: 8px;
}
#post-popup.popup-wrapper .post-box .action-buttons button.create-post-btn:hover {
  background: var(--primary);
}
#post-popup.popup-wrapper .post-box .action-buttons button.cancel-btn {
  background: var(--bg-dark2);
}
#post-popup.popup-wrapper .post-box .action-buttons button.cancel-btn:hover {
  background: var(--primary);
}

@media (max-width: 600px) {
  .post-box {
    width: 100vw !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }
}
.create-post-box.small-only {
  background-color: var(--bg-dark2);
  padding: 12px 20px;
  margin: 0 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.create-post-box.small-only p.heading {
  margin: 8px 0 12px;
  font-size: 18px;
}
.create-post-box.small-only .pseudo-post-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.create-post-box.small-only input {
  width: 100%;
  padding: 10px 8px;
  margin: 0.5rem 0;
  border: 1px solid rgb(55, 55, 55);
  border-radius: 6px;
  background: var(--bg-dark);
  color: var(--text-light);
  outline: none;
  cursor: pointer;
}
.create-post-box.small-only input:focus {
  border: 1px solid var(--primary);
}
.create-post-box.small-only span.fal {
  font-size: 20px;
}

.post-likes-list {
  overflow-y: auto;
}
.post-likes-list li {
  list-style: none;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post-likes-list li a {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.post-likes-list li a img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  align-items: center;
  justify-content: center;
}

.mention-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}
.mention-link:hover {
  text-decoration: underline;
}

.reaction-buttons {
  display: flex;
  align-items: center;
  margin-right: 8px;
  padding-bottom: 2px;
}

.reaction-emoji {
  background-color: #f0f2f5;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reaction-emoji:hover {
  transform: scale(1.15);
}

.reaction-emoji.reacted {
  background-color: rgba(128, 128, 128, 0.15) !important;
  border: 1px solid var(--primary) !important;
  padding: 2px 3px 5px 3px !important;
  width: 30px;
  height: 30px;
  margin-top: 4px;
}

.mention-box {
  position: absolute;
  background: var(--bg-dark2);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  width: 250px;
  top: 20vh;
  left: auto;
}
.mention-box li {
  padding: 4px 0 6px 8px;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
}
.mention-box li:hover {
  background-color: var(--primary-dark);
}
.mention-box li img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 4px;
  object-fit: cover;
}
.mention-box.hidden {
  display: none;
}

#notifications-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  margin: auto;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#notifications-popup.show {
  transform: translateY(0);
  opacity: 1;
}
#notifications-popup .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}
#notifications-popup .overlay.show {
  opacity: 1;
}
#notifications-popup .notifications-box {
  width: 85vw;
  max-width: 1000px;
  height: 70vh;
  max-height: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#notifications-popup .notifications-box #notifications-loader {
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background-color: transparent;
  color: var(--text-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease;
}
#notifications-popup .notifications-box #notifications-loader .notifications-loader-text {
  font-size: 2rem;
  font-family: "Lato";
  display: flex;
  gap: 8px;
}
#notifications-popup .notifications-box #notifications-loader .notifications-loader-text .letter {
  display: inline-block;
  animation: jump 1s infinite ease-in-out;
}
#notifications-popup .notifications-box #notifications-loader .notifications-loader-text .letter span {
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}
#notifications-popup .notifications-box #notifications-loader .notifications-loader-text .letter .letter-blue {
  color: blue;
}
#notifications-popup .notifications-box #notifications-loader .notifications-loader-text .letter .letter-green {
  color: green;
  -webkit-text-stroke: 0.005px white;
}
#notifications-popup .notifications-box #notifications-loader .notifications-loader-text .letter .letter-red {
  color: red;
  -webkit-text-stroke: 0.005px white;
}
#notifications-popup .notifications-box #notifications-loader .notifications-loader-text .letter .letter-yellow {
  color: yellow;
  -webkit-text-stroke: 0.005px white;
}
#notifications-popup .notifications-box #notifications-loader.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
#notifications-popup .notifications-box .heading {
  font-size: 20px;
  font-weight: bold;
  padding: 16px;
  border-bottom: 1px solid var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#notifications-popup .notifications-box .heading .title {
  color: white;
}
#notifications-popup .notifications-box .heading .close-icon {
  background-color: var(--bg-dark2);
  padding: 8px;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border: 0.2px solid var(--text-muted);
  color: white;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}
#notifications-popup .notifications-box .notifications-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
#notifications-popup .notifications-box .notifications-list .notification {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--input-bg);
}
#notifications-popup .notifications-box .notifications-list .notification .icon {
  margin-right: 1rem;
  color: var(--primary);
  font-size: 1.2rem;
}
#notifications-popup .notifications-box .notifications-list .notification .content {
  flex: 1;
}
#notifications-popup .notifications-box .notifications-list .notification .content .text {
  line-height: 24px;
  font-size: 0.95rem;
  color: rgb(220, 220, 220);
}
#notifications-popup .notifications-box .notifications-list .notification .time {
  font-size: 14px;
  color: grey;
  margin-top: 4px;
}
#notifications-popup .notifications-box .notifications-list .empty {
  color: var(--text-muted);
  text-align: center;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  #notifications-popup .notifications-box {
    width: 100vw !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }
}

@media (min-width: 639px) {
  #notifications-popup {
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  #notifications-popup.show {
    transform: translateY(0);
    opacity: 1;
  }
  #notifications-popup .overlay {
    background-color: transparent;
  }
  #notifications-popup .notifications-box {
    width: 400px !important;
    height: 500px !important;
    top: 116px !important;
    right: 84px !important;
    transform: translate(-10%, -10%) !important;
    left: auto !important;
  }
}
#notifications-list .no-notifications {
  text-align: center;
  color: grey;
  margin-top: 44px;
}
#notifications-list .no-notifications span {
  font-size: 48px;
}
#notifications-list .no-notifications p {
  font-size: 18px;
}
#notifications-list .notification {
  border-radius: 4px;
  padding: 12px 10px;
  cursor: pointer;
}
#notifications-list .notification img.notification-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}
#notifications-list .notification .content .text {
  font-size: 15px;
}
#notifications-list .notification .action-buttons {
  visibility: hidden;
}
#notifications-list .notification .action-buttons span {
  margin-left: 8px;
  cursor: pointer;
}
#notifications-list .notification:hover .action-buttons {
  visibility: visible;
}
#notifications-list .notification:hover {
  background-color: var(--bg-dark2);
}
#notifications-list .notification.unread {
  background-color: var(--bg-dark2);
}

.pwa-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-dark2);
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin: 1rem auto;
  width: 90vw;
  max-width: 552px;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .pwa-banner {
    width: calc(100% - 3rem);
  }
}
.pwa-banner .text {
  display: flex;
  flex-direction: column;
}
.pwa-banner .text .title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
.pwa-banner .text .title span {
  margin-right: 8px;
}
.pwa-banner .text .subtitle {
  font-size: 0.95rem;
  color: #888;
  margin-top: 0.5rem;
}
.pwa-banner .install-btn {
  background-color: var(--primary-dark);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.pwa-banner .install-btn:hover {
  background-color: var(--primary);
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: var(--font-family), sans-serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
  color: white;
  background-color: var(--bg-dark);
}

.events-container {
  padding: 0 6%;
  min-width: 300px;
}
.events-container .events {
  padding: 12px 24px;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-top: 48px;
  background-color: var(--bg-dark2);
  border-radius: 8px;
}
.events-container .events .heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.events-container .events .event {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.events-container .events .event p.title {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 12px;
}
.events-container .events .event p.description {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 12px;
}
.events-container .events .event img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  gap: 3rem;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/images/jnv-bg-1.jpg") center center/cover no-repeat;
}
.hero .hero-text {
  flex: 1;
}
.hero .hero-text h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
}
.hero .hero-text h2 span {
  -webkit-text-stroke: 0.005px white;
}
.hero .hero-text p {
  margin: 1rem 0;
  font-size: 1.2rem;
  width: 50%;
  min-width: 284px;
  line-height: 26px;
}
.hero .hero-text .cta-btn {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 0.7rem 1.35rem 0.7rem 1.1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  cursor: pointer;
}
.hero .hero-text .cta-btn:hover {
  background: var(--primary);
}
.hero .featured-photo {
  padding: 0;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: max(40vw, 500px);
  border: 1px solid var(--text-muted);
  border-radius: 12px;
  transition: 0.3s transform ease;
}
.hero .featured-photo:hover {
  transform: scale(1.01);
}
.hero .featured-photo img.featured-photo-img {
  height: min(40vh - 6rem, 300px);
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  display: block;
}
@media (min-width: 900px) {
  .hero .featured-photo img.featured-photo-img {
    height: 60vh;
  }
}
.hero .featured-photo .overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 15px;
  padding-top: 36px;
  height: 72px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  font-size: 20px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    gap: auto;
  }
  .hero .hero-text {
    margin-top: 8px;
  }
  .hero .hero-text #greeting {
    margin-top: 24px;
    font-size: 32px;
  }
  .hero .featured-photo {
    max-width: 500px;
    min-width: 250px;
    width: 90%;
    margin-top: 124px;
    transform: scale(1.1);
  }
  .hero .featured-photo:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 899px) {
  #greeting {
    margin-top: 0;
  }
}
#post-likes-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  margin: auto;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#post-likes-popup.show {
  transform: translateY(0);
  opacity: 1;
}
#post-likes-popup .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
}
#post-likes-popup .overlay.show {
  opacity: 1;
}
#post-likes-popup .post-likes-box {
  width: 85vw;
  max-width: 500px;
  max-height: var(--maxHeight, 600px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-dark);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#post-likes-popup .post-likes-box .heading {
  margin-bottom: 0;
  font-size: 20px;
  padding-left: 16px;
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid var(--text-muted);
}
#post-likes-popup .post-likes-box .heading .title span {
  margin-right: 16px;
}
#post-likes-popup .post-likes-box .heading p.close-icon {
  margin: 12px;
  margin-left: auto;
  margin-right: 16px;
  background-color: var(--bg-dark2);
  padding: 8px;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border: 0.2px solid var(--text-muted);
  color: white;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}
#post-likes-popup .post-likes-box .post-likes-list {
  padding: 20px;
}
#post-likes-popup .post-likes-box .post-likes-list input {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: none;
  border-radius: 8px;
  background: var(--input-bg);
  color: var(--text-light);
  outline: none;
  resize: vertical;
}
#post-likes-popup .post-likes-box .post-likes-list input:focus {
  border: 1px solid var(--primary);
}
#post-likes-popup .post-likes-box .post-likes-list #post-likes-status {
  margin-top: 4px;
  font-weight: 500;
}
#post-likes-popup .post-likes-box .post-likes-list .popup-btns {
  display: flex;
  gap: 12px;
}
#post-likes-popup .post-likes-box .post-likes-list .popup-btns button {
  background-color: var(--input-bg);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background 0.3s;
}
#post-likes-popup .post-likes-box .post-likes-list .popup-btns button:hover {
  background-color: var(--text-disabled);
}
#post-likes-popup .post-likes-box .post-likes-list .popup-btns button[type=submit] {
  background-color: var(--primary-dark);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  transition: background 0.3s;
}
#post-likes-popup .post-likes-box .post-likes-list .popup-btns button[type=submit]:hover {
  background-color: var(--primary);
}

#birthday-spotlight {
  background: var(--bg-dark);
  padding: 1rem 10%;
  border-radius: 10px;
  margin-top: 2rem;
  padding-bottom: 1rem;
}
@media (max-width: 600px) {
  #birthday-spotlight {
    padding: 1rem 1.5rem;
    margin-top: 1rem;
  }
}
#birthday-spotlight h3 {
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}
#birthday-spotlight h3 span {
  margin-right: 12px;
  margin-left: 2px;
}
#birthday-spotlight p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0;
}
#birthday-spotlight p a {
  color: var(--primary-light);
  text-decoration: underline;
}
#birthday-spotlight p a:hover {
  color: var(--primary);
}
#birthday-spotlight .gallery-grid {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.75rem;
  padding: 16px 0 0 0;
  padding-bottom: 24px;
  overflow-x: auto;
}
#birthday-spotlight .gallery-grid .image-card {
  background: var(--bg-dark);
  border-radius: 10px;
  height: max-content;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 transparent;
  border: 0.5px solid var(--text-light);
  min-width: 200px;
}
#birthday-spotlight .gallery-grid .image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: rgba(var(--bg-dark), 0.75);
}
#birthday-spotlight .gallery-grid .image-card img {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
#birthday-spotlight .gallery-grid .image-card h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 0;
  margin-top: 10px;
}
#birthday-spotlight .gallery-grid .image-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0;
}

@media (max-width: 600px) {
  .post-likes-box {
    width: 100vw !important;
    max-height: 100vh !important;
    height: 100vh !important;
    border-radius: 0 !important;
  }
}

/*# sourceMappingURL=home.css.map */
