:root {
  --primary-color: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: #e0e7ff;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --bg-primary: #0f0f11;
  --bg-secondary: #1a1a1e;
  --bg-tertiary: #252529;
  --bg-elevated: #2d2d33;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #333338;
  --border-light: #3f3f46;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ---------- Base Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* ---------- Main Container ---------- */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ---------- Comment Section Container ---------- */
.comment-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 25px 20px;
  margin: 20px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

/* ---------- Section Heading ---------- */
.comment-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.5px;
}

.comment-section h2::before {
  content: "";
  width: 4px;
  height: 28px;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--primary-hover)
  );
  border-radius: 2px;
}

/* ---------- Comment Form ---------- */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.name-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

#comment-name {
  width: 100%;
  padding: 14px 48px 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition-base);
}

#comment-name::placeholder {
  color: var(--text-muted);
}

#comment-name:focus {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}

#comment-name:disabled {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  cursor: not-allowed;
}

.edit-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  padding: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.edit-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.05);
}

#comment-text {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  outline: none;
  resize: vertical;
  transition: all var(--transition-base);
  line-height: 1.7;
}

#comment-text::placeholder {
  color: var(--text-muted);
}

#comment-text:focus {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}

#comment-text:disabled {
  background: var(--bg-tertiary);
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.6;
}

/* ---------- Submit Comment Button ---------- */
#submit-comment {
  align-self: flex-end;
  padding: 10px 22px;
  font-size: 20px;
  font-weight: 500;
  font-family: inherit;
  color: white;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover)
  );
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

#submit-comment:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

#submit-comment:active:not(:disabled) {
  transform: translateY(0);
}

#submit-comment:disabled {
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

/* ---------- Comment List ---------- */
.comment-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 10px;
  border-top: 2px solid var(--border-light);
}

.blank-comment-info {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 16px;
  font-style: italic;
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border-light);
}

.comment {
  background: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 16px 10px;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comment:hover {
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
}

.comment > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-hover)
  );
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.comment > div:first-child > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.comment .name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.comment .time {
  font-size: 13px;
  color: var(--text-muted);
}

.comment .text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.comment-actions-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1.5px solid var(--border-color);
}

.comment-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.like-btn,
.dislike-btn,
.reply-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.like-btn:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--success-color);
  color: var(--success-color);
}

.like-btn.active {
  background: var(--success-color);
  border-color: var(--success-color);
  color: white;
}

.dislike-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: var(--danger-color);
  color: var(--danger-color);
}

.dislike-btn.active {
  background: var(--danger-color);
  border-color: var(--danger-color);
  color: white;
}

.reply-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.custom-emoji-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.selected-emoji {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.selected-emoji:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.emoji-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  padding: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  min-width: 280px;
}

.custom-emoji-selector.active .emoji-options {
  display: grid;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.emoji-option {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.emoji-option:hover {
  background: var(--bg-tertiary);
  transform: scale(1.15);
}

.emoji-reactions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.emoji-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 13px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.emoji-count:hover {
  background: var(--bg-secondary);
  border-color: var(--primary-color);
}

/* ---------- Reply Form ---------- */
.reply-form {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  animation: slideDown 0.3s ease;
}

.reply-form[style*="flex"] {
  display: flex !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 300px;
  }
}

.reply-form .reply-name {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-fast);
}

.reply-form .reply-name:focus {
  border-color: var(--primary-color);
}

.reply-form .reply-name::placeholder {
  color: var(--text-muted);
}

.reply-form .reply-text {
  width: 100%;
  min-height: 80px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  resize: vertical;
  transition: all var(--transition-fast);
  line-height: 1.6;
}

.reply-form .reply-text:focus {
  border-color: var(--primary-color);
}

.reply-form .reply-text::placeholder {
  color: var(--text-muted);
}

.reply-form .submit-reply {
  align-self: flex-end;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: white;
  background: var(--primary-color);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reply-form .submit-reply:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* ---------- Replies Container ---------- */
.replies {
  display: none;
  margin-top: 20px;
  padding-left: 10px;
  border-left: 2px solid var(--border-color);
}

.replies[style*="block"] {
  display: block !important;
}

.reply-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reply .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.reply-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reply .name::before {
  content: none;
}

.reply {
  padding: 5px 10px;
  margin-bottom: 12px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.reply:hover {
  border-color: var(--border-color);
}

.reply:last-child {
  margin-bottom: 0;
}

.reply .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.reply .text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.reply .mention {
  color: var(--primary-color);
  font-weight: 500;
}

.reply .time {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.reply > button {
  padding: 6px 12px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reply > button:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

/* ---------- Show Replies Button ---------- */
.show-replies-btn {
  display: block;
  margin-top: 16px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-secondary);
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.show-replies-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

/* ---------- More Replies Button ---------- */
.more-replies-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-muted);
  background: transparent;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.more-replies-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  border-style: solid;
}

/* ---------- Show More Comments Button ---------- */
.show-more-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.show-more-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

.reply .reply-form {
  margin-left: 0;
  margin-top: 12px;
}

/* ---------- Scrollbar Styling ---------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ---------- Selection Styling ---------- */
::selection {
  background: rgba(99, 102, 241, 0.3);
  color: var(--text-primary);
}

*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

button:disabled,
input:disabled,
textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.emoji-option {
  font-size: 1.2rem;
  padding: 5px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  background: rgba(255, 255, 255, 0.15);
}

.emoji-option::after {
  content: attr(data-value);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-0%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    top 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1000;
}

.emoji-option:hover::after {
  opacity: 1;
  top: -30px;
}

.emoji-option[data-value="💖"]:hover {
  animation: heartbeat 0.5s ease;
  background: radial-gradient(circle, #ff69b4, transparent);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(255, 105, 180, 0.7);
}

.emoji-option[data-value="👍🏼"]:hover {
  animation: bounce 0.4s ease;
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  transform: translateY(-4px);
  border: 1px solid #fff;
}

.emoji-option[data-value="👎🏼"]:hover {
  animation: shake 0.4s ease;
  background: linear-gradient(45deg, #f44336, #e91e63);
  transform: translateX(3px);
  box-shadow: 0 0 10px rgba(244, 67, 54, 0.6);
}

.emoji-option[data-value="🔥"]:hover {
  animation: glow 0.6s ease infinite;
  background: radial-gradient(circle, #ff4500, transparent);
  transform: scale(1.15);
  filter: brightness(1.2);
}

.emoji-option[data-value="💯"]:hover {
  animation: spin 0.5s ease;
  background: linear-gradient(45deg, #2196f3, #03a9f4);
  transform: rotate(360deg);
  box-shadow: 0 0 15px rgba(33, 150, 243, 0.7);
}

.emoji-option[data-value="😂"]:hover {
  animation: laugh 0.4s ease;
  background: radial-gradient(circle, #ffeb3b, transparent);
  transform: rotate(-8deg);
  border: 2px solid #fff;
}

.emoji-option[data-value="😭"]:hover {
  animation: cry 0.4s ease;
  background: linear-gradient(45deg, #0288d1, #0277bd);
  transform: translateY(3px);
  box-shadow: 0 0 12px rgba(2, 136, 209, 0.6);
}

.emoji-option[data-value="🗿"]:hover {
  animation: stone 0.5s ease;
  background: radial-gradient(circle, #607d8b, transparent);
  transform: scale(1.1);
  filter: grayscale(0.3);
}

.emoji-option[data-value="💀"]:hover {
  animation: rattle 0.4s ease;
  background: linear-gradient(45deg, #424242, #212121);
  transform: translateX(-3px);
  box-shadow: 0 0 15px rgba(66, 66, 66, 0.8);
}

.emoji-option[data-value="🕹️"]:hover {
  animation: joystick 0.5s ease;
  background: radial-gradient(circle, #9c27b0, transparent);
  transform: rotate(10deg);
  border: 1px solid #fff;
}

.emoji-option[data-value="🎮"]:hover {
  animation: gamepad 0.4s ease;
  background: linear-gradient(45deg, #e91e63, #c2185b);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(233, 30, 99, 0.7);
}

.emoji-option[data-value="😏"]:hover {
  animation: wink 0.4s ease;
  background: radial-gradient(circle, #4caf50, transparent);
  transform: rotate(7deg);
  filter: brightness(1.1);
}

.emoji-option[data-value="😍"]:hover {
  animation: love 0.5s ease;
  background: linear-gradient(45deg, #ff1744, #f50057);
  transform: scale(1.25);
  box-shadow: 0 0 15px rgba(255, 23, 68, 0.6);
}

.emoji-option[data-value="😮"]:hover {
  animation: shock 0.4s ease;
  background: radial-gradient(circle, #00bcd4, transparent);
  transform: translateY(-4px);
  border: 2px solid #fff;
}

.emoji-option[data-value="😡"]:hover {
  animation: angry 0.4s ease;
  background: linear-gradient(45deg, #d32f2f, #b71c1c);
  transform: translateX(4px);
  box-shadow: 0 0 12px rgba(211, 47, 47, 0.7);
}

.emoji-option[data-value="🏆"]:hover {
  animation: trophy 0.5s ease;
  background: radial-gradient(circle, #0084ff, #d428ff);
  transform: scale(1.2);
  filter: brightness(1.3);
}

.emoji-option[data-value="🎯"]:hover {
  animation: bullseye 0.4s ease;
  background: linear-gradient(45deg, #f44336, #d81b60);
  transform: rotate(-10deg);
  box-shadow: 0 0 15px rgba(244, 67, 54, 0.6);
}

.emoji-option[data-value="🎉"]:hover {
  animation: party 0.5s ease;
  background: radial-gradient(circle, #ff9800, transparent);
  transform: rotate(12deg);
  border: 1px solid #fff;
}

.emoji-option[data-value="🤡"]:hover {
  animation: star 0.4s ease;
  background: linear-gradient(45deg, #b73bff, #fbc02d);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255, 235, 59, 0.7);
}

.emoji-option[data-value="😎"]:hover {
  animation: cool 0.4s ease;
  background: radial-gradient(circle, #2196f3, transparent);
  transform: translateY(-3px);
  filter: brightness(1.2);
}

.emoji-option[data-value="🤓"]:hover {
  animation: nerd 0.4s ease;
  background: linear-gradient(45deg, #4caf50, #388e3c);
  transform: rotate(5deg);
  border: 2px solid #fff;
}

.emoji-option[data-value="😴"]:hover {
  animation: sleep 0.4s ease;
  background: radial-gradient(circle, #b0bec5, transparent);
  transform: translateX(-3px);
  box-shadow: 0 0 10px rgba(176, 190, 197, 0.6);
}

.emoji-option[data-value="🤗"]:hover {
  animation: hug 0.5s ease;
  background: linear-gradient(45deg, #ff5722, #f4511e);
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.7);
}

.emoji-option[data-value="🚀"]:hover {
  animation: rocket 0.5s ease;
  background: radial-gradient(circle, #4a90e2, transparent);
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.7);
}

.emoji-option[data-value="🌟"]:hover {
  animation: sparkle 0.6s ease infinite;
  background: linear-gradient(45deg, #ffd9004b, #ffa60056);
  transform: scale(1.2);
  filter: brightness(1.3);
}

.emoji-option[data-value="🦄"]:hover {
  animation: prance 0.5s ease;
  background: radial-gradient(circle, #ff69b4, #dda0dd);
  transform: rotate(10deg);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
}

.emoji-option[data-value="⚔️"]:hover {
  animation: slash 0.4s ease;
  background: linear-gradient(45deg, #607d8b, #455a64);
  transform: translateX(4px);
  border: 1px solid #fff;
}

.emoji-option[data-value="🐺"]:hover {
  animation: howl 0.5s ease;
  background: radial-gradient(circle, #37474f, transparent);
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(55, 71, 79, 0.8);
}

.emoji-option[data-value="🦍"]:hover {
  animation: pound 0.4s ease;
  background: linear-gradient(45deg, #3e2723, #4e342e);
  transform: translateY(-4px);
  filter: brightness(1.1);
}

.emoji-option[data-value="🐉"]:hover {
  animation: dragon 0.5s ease;
  background: radial-gradient(circle, #d81b60, transparent);
  transform: rotate(-8deg);
  box-shadow: 0 0 18px rgba(216, 27, 96, 0.7);
}

.emoji-option[data-value="🦁"]:hover {
  animation: roar 0.4s ease;
  background: linear-gradient(45deg, #ffca28, #ffb300);
  transform: scale(1.15);
  border: 2px solid #fff;
}

.emoji-option[data-value="🦂"]:hover {
  animation: sting 0.4s ease;
  background: radial-gradient(circle, #8d6e63, transparent);
  transform: translateX(-3px);
  box-shadow: 0 0 12px rgba(141, 110, 99, 0.6);
}

.emoji-option[data-value="🐅"]:hover {
  animation: pounce 0.5s ease;
  background: linear-gradient(45deg, #ff5722, #e64a19);
  transform: translateY(-4px);
  filter: brightness(1.2);
}

/* Unique tooltip styling for each emoji */
.emoji-option[data-value="💖"]::after {
  content: "Love It!";
  background: #ff69b4;
  font-weight: bold;
  z-index: 100;
  overflow: visible;
}
.emoji-option[data-value="👍🏼"]::after {
  content: "Like It!";
  background: #4caf50;
  border: 1px solid #fff;
}
.emoji-option[data-value="👎🏼"]::after {
  content: " Dislike It";
  background: #f44336;
  font-style: italic;
}
.emoji-option[data-value="🔥"]::after {
  content: "On Fire!";
  background: #ff4500;
  box-shadow: 0 0 10px #ff4500;
}
.emoji-option[data-value="💯"]::after {
  content: " Right !";
  background: #2196f3;
  transform: translateX(-50%) skew(-5deg);
}
.emoji-option[data-value="😂"]::after {
  content: "Hilarious!";
  background: #ffeb3b;
  color: #333;
}
.emoji-option[data-value="😭"]::after {
  content: "So Sad!";
  background: #0288d1;
  border-radius: 6px;
}
.emoji-option[data-value="🗿"]::after {
  content: "Sigma babe!";
  background: #607d8b;
  filter: grayscale(0.5);
}
.emoji-option[data-value="💀"]::after {
  content: "Dangrous Boss!";
  background: #424242;
  box-shadow: 0 0 8px #fff;
}
.emoji-option[data-value="🕹️"]::after {
  content: "Game On!";
  background: #9c27b0;
  font-weight: bold;
}
.emoji-option[data-value="🎮"]::after {
  content: "Pro Watcher!";
  background: #e91e63;
  transform: translateX(-50%) skew(5deg);
}
.emoji-option[data-value="😏"]::after {
  content: "Sneaky!";
  background: #4caf50;
  border: 1px solid #fff;
}
.emoji-option[data-value="😍"]::after {
  content: "Heart Eyes!";
  background: #ff1744;
  box-shadow: 0 0 10px #ff1744;
}
.emoji-option[data-value="😮"]::after {
  content: "ShockaLad!";
  background: #00bcd4;
  font-style: italic;
}
.emoji-option[data-value="😡"]::after {
  content: "Furious!";
  background: #d32f2f;
  font-weight: bold;
}
.emoji-option[data-value="🏆"]::after {
  content: "Winner!";
  background: #4d5292;
  color: #fafafa;
}
.emoji-option[data-value="🎯"]::after {
  content: "Bullseye!";
  background: #f44336;
  border-radius: 6px;
}
.emoji-option[data-value="🎉"]::after {
  content: "Party Time!";
  background: #ff9800;
  transform: translateX(-50%) skew(-10deg);
}
.emoji-option[data-value="🤡"]::after {
  content: "Joker!";
  background: #44033f;
  box-shadow: 0 0 8px #2d3bfb;
}
.emoji-option[data-value="😎"]::after {
  content: "Too Cool!";
  background: #2196f3;
  font-style: italic;
}
.emoji-option[data-value="🤓"]::after {
  content: "Brainiac!";
  background: #4caf50;
  border: 1px solid #fff;
}
.emoji-option[data-value="😴"]::after {
  content: "Snooze!";
  background: #b0bec5;
  filter: grayscale(0.3);
}
.emoji-option[data-value="🤗"]::after {
  content: "Big Hug!";
  background: #ff5722;
  font-weight: bold;
}
.emoji-option[data-value="🚀"]::after {
  content: "Blast Off!";
  background: #4a90e2;
  border-radius: 6px;
}
.emoji-option[data-value="🌟"]::after {
  content: "Shine Bright!";
  background: #6d5f0f;
  color: #faf8f8;
}
.emoji-option[data-value="🦄"]::after {
  content: "Magic Vibes!";
  background: #ff69b4;
  box-shadow: 0 0 10px #ff69b4;
}
.emoji-option[data-value="⚔️"]::after {
  content: "Sword Clash!";
  background: #607d8b;
  transform: translateX(-50%) skew(5deg);
}
.emoji-option[data-value="🐺"]::after {
  content: "Lone Wolf!";
  background: #37474f;
  font-weight: bold;
}
.emoji-option[data-value="🦍"]::after {
  content: "Gorilla Power!";
  background: #3e2723;
  box-shadow: 0 0 8px #4e342e;
}
.emoji-option[data-value="🐉"]::after {
  content: "Dragon Fury!";
  background: #d81b60;
  border: 1px solid #fff;
}
.emoji-option[data-value="🦁"]::after {
  content: "King Roar!";
  background: #ffca28;
  color: #333;
}
.emoji-option[data-value="🦂"]::after {
  content: "Scorpion Strike!";
  background: #8d6e63;
  font-style: italic;
}
.emoji-option[data-value="🐅"]::after {
  content: "Tiger Prowl!";
  background: #ff5722;
  box-shadow: 0 0 10px #e64a19;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  75% {
    transform: translateX(4px);
  }
}
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 8px #ff4500;
  }
  50% {
    box-shadow: 0 0 16px #ff4500;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes laugh {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-10deg);
  }
}
@keyframes cry {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
@keyframes stone {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes rattle {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}
@keyframes joystick {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(15deg);
  }
}
@keyframes gamepad {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes wink {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(8deg);
  }
}
@keyframes love {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
@keyframes shock {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes angry {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
@keyframes trophy {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes bullseye {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-12deg);
  }
}
@keyframes party {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(15deg);
  }
}
@keyframes star {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
@keyframes cool {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
@keyframes nerd {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes sleep {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-3px);
  }
}
@keyframes hug {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes rocket {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes sparkle {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.5);
  }
}
@keyframes prance {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(15deg);
  }
}
@keyframes slash {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@keyframes howl {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes pound {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes dragon {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-10deg);
  }
}
@keyframes roar {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes sting {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}
@keyframes pounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.emoji-option:active {
  animation: pulse-click 0.3s ease;
}

@keyframes pulse-click {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 350px) {
  main {
    padding: 20px 12px;
  }

  .comment-section {
    padding: 18px 14px;
    border-radius: var(--radius-md);
  }

  .comment-section h2 {
    font-size: 20px;
    gap: 10px;
    margin-bottom: 14px;
  }

  .comment-section h2::before {
    height: 20px;
  }

  .comment-form {
    gap: 12px;
    margin-bottom: 28px;
  }

  #comment-name {
    padding: 12px 40px 12px 14px;
    font-size: 14px;
  }

  .edit-icon {
    right: 12px;
    font-size: 15px;
    padding: 6px;
  }

  #comment-text {
    min-height: 90px;
    padding: 12px 14px;
    font-size: 14px;
  }

  #submit-comment {
    padding: 12px 24px;
    font-size: 14px;
  }

  .comment-list {
    gap: 12px;
  }

  .blank-comment-info {
    padding: 40px 16px;
    font-size: 14px;
  }

  .comment {
    padding: 14px 10px;
  }

  .comment > div:first-child {
    gap: 12px;
    margin-bottom: 12px;
  }

  .avatar {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .comment .name {
    font-size: 14px;
  }

  .comment .time {
    font-size: 12px;
  }

  .comment .text {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .comment-actions-wrapper {
    gap: 12px;
    padding-top: 14px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 7px 12px;
    font-size: 13px;
  }

  .selected-emoji {
    padding: 7px 12px;
    font-size: 12px;
  }

  .emoji-options {
    grid-template-columns: repeat(6, 1fr);
    min-width: 220px;
  }

  .emoji-option {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .emoji-count {
    padding: 3px 9px;
    font-size: 12px;
  }

  .reply-form {
    gap: 10px;
    padding: 14px;
  }

  .reply-form .reply-text {
    min-height: 70px;
    font-size: 13px;
  }

  .reply-form .submit-reply {
    padding: 9px 20px;
    font-size: 13px;
  }

  .replies {
    margin-top: 14px;
    padding-left: 10px;
  }

  .reply {
    padding: 12px 10px;
    margin-bottom: 10px;
  }

  .reply .avatar {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .reply .name {
    font-size: 13px;
  }

  .reply .text {
    font-size: 13px;
  }

  .reply .time {
    font-size: 11px;
  }

  .reply > button {
    padding: 5px 11px;
    font-size: 12px;
  }

  .show-replies-btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .more-replies-btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  .show-more-btn {
    margin-top: 20px;
    padding: 14px;
    font-size: 14px;
  }
}

/* ---------- Extra Small Devices (below 300px) ---------- */
@media (max-width: 299px) {
  main {
    padding: 16px 10px;
  }

  .comment-section {
    padding: 16px 12px;
    border-radius: var(--radius-md);
  }

  .comment-section h2 {
    font-size: 18px;
    gap: 8px;
    margin-bottom: 12px;
  }

  .comment-section h2::before {
    height: 18px;
  }

  .comment-form {
    gap: 10px;
    margin-bottom: 24px;
  }

  #comment-name {
    padding: 10px 36px 10px 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
  }

  .edit-icon {
    right: 10px;
    font-size: 14px;
    padding: 5px;
  }

  #comment-text {
    min-height: 80px;
    padding: 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
  }

  #submit-comment {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    align-self: stretch;
  }

  .comment-list {
    gap: 10px;
  }

  .blank-comment-info {
    padding: 32px 12px;
    font-size: 13px;
  }

  .comment {
    padding: 12px 8px;
    border-radius: var(--radius-md);
  }

  .comment > div:first-child {
    gap: 10px;
    margin-bottom: 10px;
  }

  .avatar {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .comment .name {
    font-size: 13px;
  }

  .comment .time {
    font-size: 11px;
  }

  .comment .text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .comment-actions-wrapper {
    gap: 10px;
    padding-top: 12px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 6px 10px;
    font-size: 12px;
    gap: 4px;
  }

  .selected-emoji {
    padding: 6px 10px;
    font-size: 11px;
  }

  .emoji-options {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 8px;
    min-width: 180px;
  }

  .emoji-option {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .emoji-count {
    padding: 3px 8px;
    font-size: 11px;
  }

  .reply-form {
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
  }

  .reply-form .reply-text {
    min-height: 60px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .reply-form .submit-reply {
    padding: 8px 16px;
    font-size: 12px;
    width: 100%;
  }

  .replies {
    margin-top: 12px;
    padding-left: 8px;
  }

  .reply {
    padding: 10px 8px;
    margin-bottom: 8px;
  }

  .reply .avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .reply .name {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .reply .text {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .reply .time {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .reply > button {
    padding: 5px 10px;
    font-size: 11px;
  }

  .show-replies-btn {
    margin-top: 12px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .more-replies-btn {
    margin-top: 8px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .show-more-btn {
    margin-top: 16px;
    padding: 12px;
    font-size: 13px;
  }
}

/* ---------- Small Tablets (570px+) ---------- */
@media (min-width: 570px) {
  main {
    padding: 48px 28px;
  }

  .comment-section {
    padding: 32px 28px;
  }

  .comment-section h2 {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .comment-section h2::before {
    height: 30px;
  }

  .comment-form {
    gap: 18px;
    margin-bottom: 44px;
  }

  #comment-name {
    padding: 16px 52px 16px 18px;
    font-size: 16px;
  }

  .edit-icon {
    right: 16px;
    font-size: 16px;
    padding: 9px;
  }

  #comment-text {
    min-height: 130px;
    padding: 18px;
    font-size: 16px;
  }

  #submit-comment {
    padding: 16px 36px;
    font-size: 16px;
  }

  .comment-list {
    gap: 18px;
  }

  .blank-comment-info {
    padding: 70px 28px;
    font-size: 17px;
  }

  .comment {
    padding: 22px 18px;
  }

  .comment > div:first-child {
    gap: 16px;
    margin-bottom: 18px;
  }

  .avatar {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .comment .name {
    font-size: 17px;
  }

  .comment .time {
    font-size: 14px;
  }

  .comment .text {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .comment-actions-wrapper {
    gap: 18px;
    padding-top: 18px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 9px 16px;
    font-size: 15px;
  }

  .selected-emoji {
    padding: 9px 16px;
    font-size: 14px;
  }

  .emoji-options {
    gap: 8px;
    padding: 14px;
    min-width: 320px;
  }

  .emoji-option {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .emoji-count {
    padding: 5px 12px;
    font-size: 14px;
  }

  .reply-form {
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
  }

  .reply-form .reply-text {
    min-height: 90px;
    padding: 14px 16px;
    font-size: 15px;
  }

  .reply-form .submit-reply {
    padding: 12px 28px;
    font-size: 15px;
  }

  .replies {
    margin-top: 22px;
    padding-left: 14px;
  }

  .reply {
    padding: 18px 14px;
    margin-bottom: 14px;
  }

  .reply .avatar {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .reply .name {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .reply .text {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .reply .time {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .reply > button {
    padding: 7px 14px;
    font-size: 14px;
  }

  .show-replies-btn {
    margin-top: 18px;
    padding: 12px 24px;
    font-size: 15px;
  }

  .more-replies-btn {
    margin-top: 14px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .show-more-btn {
    margin-top: 28px;
    padding: 18px;
    font-size: 16px;
  }
}

/* ---------- Tablets (760px+) ---------- */
@media (min-width: 760px) {
  main {
    padding: 56px 36px;
  }

  .comment-section {
    padding: 36px 32px;
  }

  .comment-section h2 {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .comment-section h2::before {
    height: 32px;
  }

  .comment-form {
    gap: 20px;
    margin-bottom: 48px;
  }

  #comment-name {
    padding: 18px 56px 18px 20px;
    font-size: 17px;
  }

  .edit-icon {
    right: 18px;
    font-size: 17px;
    padding: 10px;
  }

  #comment-text {
    min-height: 140px;
    padding: 20px;
    font-size: 17px;
  }

  #submit-comment {
    padding: 18px 40px;
    font-size: 17px;
  }

  .comment-list {
    gap: 20px;
  }

  .blank-comment-info {
    padding: 80px 32px;
    font-size: 18px;
  }

  .comment {
    padding: 24px 20px;
  }

  .comment > div:first-child {
    gap: 18px;
    margin-bottom: 20px;
  }

  .avatar {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .comment .name {
    font-size: 18px;
  }

  .comment .time {
    font-size: 14px;
  }

  .comment .text {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .comment-actions-wrapper {
    gap: 20px;
    padding-top: 20px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 10px 18px;
    font-size: 15px;
  }

  .selected-emoji {
    padding: 10px 18px;
    font-size: 14px;
  }

  .emoji-options {
    gap: 8px;
    padding: 16px;
    min-width: 360px;
  }

  .emoji-option {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .emoji-count {
    padding: 5px 12px;
    font-size: 14px;
  }

  .reply-form {
    gap: 14px;
    margin-top: 20px;
    padding: 20px;
  }

  .reply-form .reply-text {
    min-height: 100px;
    padding: 14px 18px;
    font-size: 15px;
  }

  .reply-form .submit-reply {
    padding: 12px 32px;
    font-size: 15px;
  }

  .replies {
    margin-top: 24px;
    padding-left: 16px;
  }

  .reply {
    padding: 20px 16px;
    margin-bottom: 14px;
  }

  .reply .avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .reply .name {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .reply .text {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .reply .time {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .reply > button {
    padding: 8px 14px;
    font-size: 14px;
  }

  .show-replies-btn {
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 15px;
  }

  .more-replies-btn {
    margin-top: 14px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .show-more-btn {
    margin-top: 32px;
    padding: 18px;
    font-size: 16px;
  }
}

/* ---------- Small Laptops (990px+) ---------- */
@media (min-width: 990px) {
  main {
    max-width: 850px;
    padding: 64px 40px;
  }

  .comment-section {
    padding: 40px 36px;
  }

  .comment-section h2 {
    font-size: 34px;
    margin-bottom: 32px;
  }

  .comment-section h2::before {
    height: 34px;
  }

  .comment-form {
    gap: 22px;
    margin-bottom: 52px;
  }

  #comment-name {
    padding: 18px 58px 18px 20px;
    font-size: 17px;
  }

  .edit-icon {
    right: 18px;
    font-size: 17px;
  }

  #comment-text {
    min-height: 150px;
    font-size: 17px;
  }

  #submit-comment {
    padding: 18px 44px;
    font-size: 17px;
  }

  .comment-list {
    gap: 22px;
  }

  .blank-comment-info {
    padding: 90px 36px;
    font-size: 18px;
  }

  .comment {
    padding: 26px 22px;
  }

  .comment > div:first-child {
    gap: 18px;
    margin-bottom: 22px;
  }

  .avatar {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .comment .name {
    font-size: 18px;
  }

  .comment .time {
    font-size: 14px;
  }

  .comment .text {
    font-size: 17px;
    margin-bottom: 26px;
  }

  .comment-actions-wrapper {
    gap: 20px;
    padding-top: 22px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 10px 18px;
    font-size: 15px;
  }

  .selected-emoji {
    padding: 10px 18px;
    font-size: 14px;
  }

  .emoji-options {
    min-width: 380px;
  }

  .emoji-option {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .reply-form {
    gap: 14px;
    margin-top: 22px;
    padding: 22px;
  }

  .reply-form .reply-text {
    min-height: 100px;
    font-size: 15px;
  }

  .reply-form .submit-reply {
    padding: 12px 32px;
    font-size: 15px;
  }

  .replies {
    margin-top: 26px;
    padding-left: 18px;
  }

  .reply {
    padding: 22px 18px;
    margin-bottom: 16px;
  }

  .reply .avatar {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .reply .name {
    font-size: 16px;
  }

  .reply .text {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .reply .time {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .reply > button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .show-replies-btn {
    margin-top: 22px;
    padding: 12px 28px;
    font-size: 15px;
  }

  .more-replies-btn {
    margin-top: 16px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .show-more-btn {
    margin-top: 36px;
    padding: 18px;
    font-size: 16px;
  }
}

/* ---------- Laptops (1200px+) ---------- */
@media (min-width: 1200px) {
  main {
    max-width: 900px;
    padding: 72px 48px;
  }

  .comment-section {
    padding: 44px 40px;
  }

  .comment-section h2 {
    font-size: 36px;
    margin-bottom: 36px;
  }

  .comment-section h2::before {
    height: 36px;
  }

  .comment-form {
    gap: 24px;
    margin-bottom: 56px;
  }

  #comment-name {
    padding: 20px 60px 20px 22px;
    font-size: 18px;
  }

  .edit-icon {
    right: 20px;
    font-size: 18px;
    padding: 10px;
  }

  #comment-text {
    min-height: 160px;
    padding: 22px;
    font-size: 18px;
  }

  #submit-comment {
    padding: 20px 48px;
    font-size: 18px;
  }

  .comment-list {
    gap: 24px;
  }

  .blank-comment-info {
    padding: 100px 40px;
    font-size: 19px;
  }

  .comment {
    padding: 28px 24px;
  }

  .comment > div:first-child {
    gap: 20px;
    margin-bottom: 24px;
  }

  .avatar {
    width: 60px;
    height: 60px;
    font-size: 19px;
  }

  .comment .name {
    font-size: 19px;
  }

  .comment .time {
    font-size: 15px;
  }

  .comment .text {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .comment-actions-wrapper {
    gap: 22px;
    padding-top: 24px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 11px 20px;
    font-size: 16px;
  }

  .selected-emoji {
    padding: 11px 20px;
    font-size: 15px;
  }

  .emoji-options {
    gap: 10px;
    padding: 18px;
    min-width: 420px;
  }

  .emoji-option {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .emoji-count {
    padding: 6px 14px;
    font-size: 15px;
  }

  .reply-form {
    gap: 16px;
    margin-top: 24px;
    padding: 24px;
  }

  .reply-form .reply-text {
    min-height: 110px;
    padding: 16px 20px;
    font-size: 16px;
  }

  .reply-form .submit-reply {
    padding: 14px 36px;
    font-size: 16px;
  }

  .replies {
    margin-top: 28px;
    padding-left: 20px;
  }

  .reply {
    padding: 24px 20px;
    margin-bottom: 18px;
  }

  .reply .avatar {
    width: 52px;
    height: 52px;
    font-size: 19px;
  }

  .reply .name {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .reply .text {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .reply .time {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .reply > button {
    padding: 9px 16px;
    font-size: 15px;
  }

  .show-replies-btn {
    margin-top: 24px;
    padding: 14px 32px;
    font-size: 16px;
  }

  .more-replies-btn {
    margin-top: 18px;
    padding: 11px 22px;
    font-size: 15px;
  }

  .show-more-btn {
    margin-top: 40px;
    padding: 20px;
    font-size: 17px;
  }
}

/* ---------- Large Laptops (1400px+) ---------- */
@media (min-width: 1400px) {
  main {
    max-width: 1000px;
    padding: 80px 56px;
  }

  .comment-section {
    padding: 48px 44px;
  }

  .comment-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .comment-section h2::before {
    height: 38px;
  }

  .comment-form {
    gap: 26px;
    margin-bottom: 60px;
  }

  #comment-name {
    padding: 22px 64px 22px 24px;
    font-size: 19px;
  }

  .edit-icon {
    right: 22px;
    font-size: 19px;
    padding: 11px;
  }

  #comment-text {
    min-height: 170px;
    padding: 24px;
    font-size: 19px;
  }

  #submit-comment {
    padding: 22px 52px;
    font-size: 19px;
  }

  .comment-list {
    gap: 26px;
  }

  .blank-comment-info {
    padding: 110px 44px;
    font-size: 20px;
  }

  .comment {
    padding: 30px 26px;
  }

  .comment > div:first-child {
    gap: 22px;
    margin-bottom: 26px;
  }

  .avatar {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .comment .name {
    font-size: 20px;
  }

  .comment .time {
    font-size: 15px;
  }

  .comment .text {
    font-size: 19px;
    margin-bottom: 30px;
  }

  .comment-actions-wrapper {
    gap: 24px;
    padding-top: 26px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 12px 22px;
    font-size: 17px;
  }

  .selected-emoji {
    padding: 12px 22px;
    font-size: 16px;
  }

  .emoji-options {
    gap: 10px;
    padding: 20px;
    min-width: 460px;
  }

  .emoji-option {
    width: 46px;
    height: 46px;
    font-size: 23px;
  }

  .emoji-count {
    padding: 6px 14px;
    font-size: 15px;
  }

  .reply-form {
    gap: 16px;
    margin-top: 26px;
    padding: 26px;
  }

  .reply-form .reply-text {
    min-height: 120px;
    padding: 18px 22px;
    font-size: 17px;
  }

  .reply-form .submit-reply {
    padding: 14px 40px;
    font-size: 17px;
  }

  .replies {
    margin-top: 30px;
    padding-left: 22px;
  }

  .reply {
    padding: 26px 22px;
    margin-bottom: 20px;
  }

  .reply .avatar {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .reply .name {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .reply .text {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .reply .time {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .reply > button {
    padding: 10px 18px;
    font-size: 16px;
  }

  .show-replies-btn {
    margin-top: 26px;
    padding: 14px 36px;
    font-size: 17px;
  }

  .more-replies-btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 15px;
  }

  .show-more-btn {
    margin-top: 44px;
    padding: 22px;
    font-size: 18px;
  }
}

/* ---------- Desktops (1600px+) ---------- */
@media (min-width: 1600px) {
  main {
    max-width: 1100px;
    padding: 88px 64px;
  }

  .comment-section {
    padding: 52px 48px;
  }

  .comment-section h2 {
    font-size: 40px;
    margin-bottom: 44px;
  }

  .comment-section h2::before {
    height: 40px;
  }

  .comment-form {
    gap: 28px;
    margin-bottom: 64px;
  }

  #comment-name {
    padding: 24px 68px 24px 26px;
    font-size: 20px;
  }

  .edit-icon {
    right: 24px;
    font-size: 20px;
    padding: 12px;
  }

  #comment-text {
    min-height: 180px;
    padding: 26px;
    font-size: 20px;
  }

  #submit-comment {
    padding: 24px 56px;
    font-size: 20px;
  }

  .comment-list {
    gap: 28px;
  }

  .blank-comment-info {
    padding: 120px 48px;
    font-size: 21px;
  }

  .comment {
    padding: 32px 28px;
  }

  .comment > div:first-child {
    gap: 24px;
    margin-bottom: 28px;
  }

  .avatar {
    width: 68px;
    height: 68px;
    font-size: 21px;
  }

  .comment .name {
    font-size: 21px;
  }

  .comment .time {
    font-size: 16px;
  }

  .comment .text {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .comment-actions-wrapper {
    gap: 26px;
    padding-top: 28px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 13px 24px;
    font-size: 18px;
  }

  .selected-emoji {
    padding: 13px 24px;
    font-size: 17px;
  }

  .emoji-options {
    gap: 12px;
    padding: 22px;
    min-width: 500px;
  }

  .emoji-option {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .emoji-count {
    padding: 7px 16px;
    font-size: 16px;
  }

  .reply-form {
    gap: 18px;
    margin-top: 28px;
    padding: 28px;
  }

  .reply-form .reply-text {
    min-height: 130px;
    padding: 18px 24px;
    font-size: 18px;
  }

  .reply-form .submit-reply {
    padding: 16px 44px;
    font-size: 18px;
  }

  .replies {
    margin-top: 32px;
    padding-left: 24px;
  }

  .reply {
    padding: 28px 24px;
    margin-bottom: 22px;
  }

  .reply .avatar {
    width: 60px;
    height: 60px;
    font-size: 21px;
  }

  .reply .name {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .reply .text {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .reply .time {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .reply > button {
    padding: 11px 20px;
    font-size: 17px;
  }

  .show-replies-btn {
    margin-top: 28px;
    padding: 16px 40px;
    font-size: 18px;
  }

  .more-replies-btn {
    margin-top: 22px;
    padding: 13px 26px;
    font-size: 16px;
  }

  .show-more-btn {
    margin-top: 48px;
    padding: 24px;
    font-size: 19px;
  }
}

/* ---------- Large Desktops (1900px+) ---------- */
@media (min-width: 1900px) {
  main {
    max-width: 1200px;
    padding: 96px 72px;
  }

  .comment-section {
    padding: 56px 52px;
  }

  .comment-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
  }

  .comment-section h2::before {
    height: 42px;
  }

  .comment-form {
    gap: 30px;
    margin-bottom: 68px;
  }

  #comment-name {
    padding: 26px 72px 26px 28px;
    font-size: 21px;
  }

  .edit-icon {
    right: 26px;
    font-size: 21px;
    padding: 12px;
  }

  #comment-text {
    min-height: 190px;
    padding: 28px;
    font-size: 21px;
  }

  #submit-comment {
    padding: 26px 60px;
    font-size: 21px;
  }

  .comment-list {
    gap: 30px;
  }

  .blank-comment-info {
    padding: 130px 52px;
    font-size: 22px;
  }

  .comment {
    padding: 34px 30px;
  }

  .comment > div:first-child {
    gap: 26px;
    margin-bottom: 30px;
  }

  .avatar {
    width: 72px;
    height: 72px;
    font-size: 22px;
  }

  .comment .name {
    font-size: 22px;
  }

  .comment .time {
    font-size: 16px;
  }

  .comment .text {
    font-size: 21px;
    margin-bottom: 34px;
  }

  .comment-actions-wrapper {
    gap: 28px;
    padding-top: 30px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 14px 26px;
    font-size: 19px;
  }

  .selected-emoji {
    padding: 14px 26px;
    font-size: 18px;
  }

  .emoji-options {
    gap: 12px;
    padding: 24px;
    min-width: 540px;
  }

  .emoji-option {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  .emoji-count {
    padding: 7px 16px;
    font-size: 16px;
  }

  .reply-form {
    gap: 18px;
    margin-top: 30px;
    padding: 30px;
  }

  .reply-form .reply-text {
    min-height: 140px;
    padding: 20px 26px;
    font-size: 19px;
  }

  .reply-form .submit-reply {
    padding: 16px 48px;
    font-size: 19px;
  }

  .replies {
    margin-top: 34px;
    padding-left: 26px;
  }

  .reply {
    padding: 30px 26px;
    margin-bottom: 24px;
  }

  .reply .avatar {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .reply .name {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .reply .text {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .reply .time {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .reply > button {
    padding: 12px 22px;
    font-size: 18px;
  }

  .show-replies-btn {
    margin-top: 30px;
    padding: 16px 44px;
    font-size: 19px;
  }

  .more-replies-btn {
    margin-top: 24px;
    padding: 14px 28px;
    font-size: 17px;
  }

  .show-more-btn {
    margin-top: 52px;
    padding: 26px;
    font-size: 20px;
  }
}

/* ---------- Ultra-Wide (2500px+) ---------- */
@media (min-width: 2500px) {
  main {
    max-width: 1400px;
    padding: 112px 88px;
  }

  .comment-section {
    padding: 64px 60px;
  }

  .comment-section h2 {
    font-size: 48px;
    margin-bottom: 56px;
  }

  .comment-section h2::before {
    height: 48px;
  }

  .comment-form {
    gap: 34px;
    margin-bottom: 76px;
  }

  #comment-name {
    padding: 30px 80px 30px 32px;
    font-size: 24px;
  }

  .edit-icon {
    right: 28px;
    font-size: 24px;
    padding: 14px;
  }

  #comment-text {
    min-height: 220px;
    padding: 32px;
    font-size: 24px;
  }

  #submit-comment {
    padding: 30px 68px;
    font-size: 24px;
  }

  .comment-list {
    gap: 34px;
  }

  .blank-comment-info {
    padding: 150px 60px;
    font-size: 24px;
  }

  .comment {
    padding: 40px 34px;
  }

  .comment > div:first-child {
    gap: 30px;
    margin-bottom: 34px;
  }

  .avatar {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }

  .comment .name {
    font-size: 24px;
  }

  .comment .time {
    font-size: 18px;
  }

  .comment .text {
    font-size: 24px;
    margin-bottom: 38px;
  }

  .comment-actions-wrapper {
    gap: 32px;
    padding-top: 34px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 16px 30px;
    font-size: 21px;
  }

  .selected-emoji {
    padding: 16px 30px;
    font-size: 20px;
  }

  .emoji-options {
    gap: 14px;
    padding: 28px;
    min-width: 620px;
  }

  .emoji-option {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .emoji-count {
    padding: 8px 18px;
    font-size: 18px;
  }

  .reply-form {
    gap: 20px;
    margin-top: 34px;
    padding: 34px;
  }

  .reply-form .reply-text {
    min-height: 160px;
    padding: 22px 30px;
    font-size: 21px;
  }

  .reply-form .submit-reply {
    padding: 18px 56px;
    font-size: 21px;
  }

  .replies {
    margin-top: 38px;
    padding-left: 30px;
  }

  .reply {
    padding: 34px 30px;
    margin-bottom: 28px;
  }

  .reply .avatar {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .reply .name {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .reply .text {
    font-size: 21px;
    margin-bottom: 22px;
  }

  .reply .time {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .reply > button {
    padding: 14px 26px;
    font-size: 20px;
  }

  .show-replies-btn {
    margin-top: 34px;
    padding: 18px 52px;
    font-size: 21px;
  }

  .more-replies-btn {
    margin-top: 28px;
    padding: 16px 32px;
    font-size: 19px;
  }

  .show-more-btn {
    margin-top: 60px;
    padding: 30px;
    font-size: 22px;
  }
}

/* ---------- 4K Displays (3800px+) ---------- */
@media (min-width: 3800px) {
  main {
    max-width: 1800px;
    padding: 140px 120px;
  }

  .comment-section {
    padding: 80px 76px;
  }

  .comment-section h2 {
    font-size: 58px;
    margin-bottom: 72px;
  }

  .comment-section h2::before {
    height: 58px;
    width: 6px;
  }

  .comment-form {
    gap: 42px;
    margin-bottom: 96px;
  }

  #comment-name {
    padding: 38px 100px 38px 40px;
    font-size: 29px;
    border-radius: var(--radius-lg);
  }

  .edit-icon {
    right: 36px;
    font-size: 29px;
    padding: 18px;
    border-radius: var(--radius-md);
  }

  #comment-text {
    min-height: 280px;
    padding: 40px;
    font-size: 29px;
    border-radius: var(--radius-lg);
  }

  #submit-comment {
    padding: 38px 84px;
    font-size: 29px;
    border-radius: var(--radius-lg);
  }

  .comment-list {
    gap: 42px;
  }

  .blank-comment-info {
    padding: 190px 76px;
    font-size: 29px;
    border-radius: var(--radius-xl);
  }

  .comment {
    padding: 50px 42px;
    border-radius: var(--radius-xl);
  }

  .comment > div:first-child {
    gap: 38px;
    margin-bottom: 42px;
  }

  .avatar {
    width: 100px;
    height: 100px;
    font-size: 29px;
  }

  .comment .name {
    font-size: 29px;
  }

  .comment .time {
    font-size: 22px;
  }

  .comment .text {
    font-size: 29px;
    margin-bottom: 48px;
  }

  .comment-actions-wrapper {
    gap: 40px;
    padding-top: 42px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 20px 38px;
    font-size: 26px;
    border-radius: var(--radius-md);
  }

  .selected-emoji {
    padding: 20px 38px;
    font-size: 24px;
    border-radius: var(--radius-md);
  }

  .emoji-options {
    gap: 18px;
    padding: 36px;
    min-width: 780px;
    border-radius: var(--radius-lg);
  }

  .emoji-option {
    width: 70px;
    height: 70px;
    font-size: 34px;
    border-radius: var(--radius-md);
  }

  .emoji-count {
    padding: 10px 22px;
    font-size: 22px;
    border-radius: 28px;
  }

  .reply-form {
    gap: 26px;
    margin-top: 42px;
    padding: 42px;
    border-radius: var(--radius-lg);
  }

  .reply-form .reply-text {
    min-height: 200px;
    padding: 28px 38px;
    font-size: 26px;
    border-radius: var(--radius-md);
  }

  .reply-form .submit-reply {
    padding: 22px 70px;
    font-size: 26px;
    border-radius: var(--radius-md);
  }

  .replies {
    margin-top: 48px;
    padding-left: 38px;
    border-left-width: 3px;
  }

  .reply {
    padding: 42px 38px;
    margin-bottom: 36px;
    border-radius: var(--radius-lg);
  }

  .reply .avatar {
    width: 90px;
    height: 90px;
    font-size: 29px;
  }

  .reply .name {
    font-size: 27px;
    margin-bottom: 18px;
  }

  .reply .text {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .reply .time {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .reply > button {
    padding: 18px 32px;
    font-size: 24px;
    border-radius: var(--radius-md);
  }

  .show-replies-btn {
    margin-top: 42px;
    padding: 22px 64px;
    font-size: 26px;
    border-radius: var(--radius-md);
  }

  .more-replies-btn {
    margin-top: 36px;
    padding: 20px 40px;
    font-size: 24px;
  }

  .show-more-btn {
    margin-top: 76px;
    padding: 38px;
    font-size: 27px;
    border-radius: var(--radius-lg);
  }
}

/* ---------- 8K Displays (5100px+) ---------- */
@media (min-width: 5100px) {
  main {
    max-width: 2400px;
    padding: 180px 160px;
  }

  .comment-section {
    padding: 100px 100px;
  }

  .comment-section h2 {
    font-size: 76px;
    margin-bottom: 96px;
  }

  .comment-section h2::before {
    height: 76px;
    width: 8px;
  }

  .comment-form {
    gap: 56px;
    margin-bottom: 128px;
  }

  #comment-name {
    padding: 50px 132px 50px 52px;
    font-size: 38px;
    border-radius: var(--radius-xl);
  }

  .edit-icon {
    right: 48px;
    font-size: 38px;
    padding: 24px;
    border-radius: var(--radius-lg);
  }

  #comment-text {
    min-height: 360px;
    padding: 52px;
    font-size: 38px;
    border-radius: var(--radius-xl);
  }

  #submit-comment {
    padding: 50px 112px;
    font-size: 38px;
    border-radius: var(--radius-xl);
  }

  .comment-list {
    gap: 56px;
  }

  .blank-comment-info {
    padding: 250px 100px;
    font-size: 38px;
    border-radius: 28px;
  }

  .comment {
    padding: 66px 56px;
    border-radius: 28px;
  }

  .comment > div:first-child {
    gap: 50px;
    margin-bottom: 56px;
  }

  .avatar {
    width: 132px;
    height: 132px;
    font-size: 38px;
  }

  .comment .name {
    font-size: 38px;
  }

  .comment .time {
    font-size: 28px;
  }

  .comment .text {
    font-size: 38px;
    margin-bottom: 64px;
  }

  .comment-actions-wrapper {
    gap: 52px;
    padding-top: 56px;
  }

  .like-btn,
  .dislike-btn,
  .reply-btn {
    padding: 26px 50px;
    font-size: 34px;
    border-radius: var(--radius-lg);
  }

  .selected-emoji {
    padding: 26px 50px;
    font-size: 32px;
    border-radius: var(--radius-lg);
  }

  .emoji-options {
    gap: 24px;
    padding: 48px;
    min-width: 1040px;
    border-radius: var(--radius-xl);
  }

  .emoji-option {
    width: 92px;
    height: 92px;
    font-size: 44px;
    border-radius: var(--radius-lg);
  }

  .emoji-count {
    padding: 14px 30px;
    font-size: 28px;
    border-radius: 36px;
  }

  .reply-form {
    gap: 34px;
    margin-top: 56px;
    padding: 56px;
    border-radius: var(--radius-xl);
  }

  .reply-form .reply-text {
    min-height: 260px;
    padding: 36px 50px;
    font-size: 34px;
    border-radius: var(--radius-lg);
  }

  .reply-form .submit-reply {
    padding: 28px 92px;
    font-size: 34px;
    border-radius: var(--radius-lg);
  }

  .replies {
    margin-top: 64px;
    padding-left: 50px;
    border-left-width: 4px;
  }

  .reply {
    padding: 56px 50px;
    margin-bottom: 48px;
    border-radius: var(--radius-xl);
  }

  .reply .avatar {
    width: 118px;
    height: 118px;
    font-size: 38px;
  }

  .reply .name {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .reply .text {
    font-size: 34px;
    margin-bottom: 36px;
  }

  .reply .time {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .reply > button {
    padding: 24px 44px;
    font-size: 32px;
    border-radius: var(--radius-lg);
  }

  .show-replies-btn {
    margin-top: 56px;
    padding: 28px 84px;
    font-size: 34px;
    border-radius: var(--radius-lg);
  }

  .more-replies-btn {
    margin-top: 48px;
    padding: 26px 54px;
    font-size: 32px;
    border-radius: var(--radius-lg);
  }

  .show-more-btn {
    margin-top: 100px;
    padding: 50px;
    font-size: 36px;
    border-radius: var(--radius-xl);
  }

  ::-webkit-scrollbar {
    width: 16px;
    height: 16px;
  }

  ::-webkit-scrollbar-track {
    border-radius: 8px;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 8px;
  }
}

/*  Join US social icon css start */
.container {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  margin: 0px 10px;
}

.icon {
  width: 160px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition:
    transform 0.3s ease,
    border-radius 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  text-decoration: none;
}

.icon .hover-text {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  padding: 3px 10px;
  border-radius: 5px;
  opacity: 0;
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 2;
}

.icon:hover .hover-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Instagram Icon */
.instagram {
  background: linear-gradient(90deg, #ff9a8b, #ff6a88, #4c68d7);
}

.instagram i {
  color: white;
  font-size: 35px;
  z-index: 2;
  transition: 0.3s;
}

.instagram:hover i {
  animation: pulse-icon 0.5s ease;
}

.instagram:hover {
  transform: rotate(8deg);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(255, 106, 136, 0.7);
  background:
    linear-gradient(45deg, rgba(29, 161, 242, 0.5), transparent),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-12 15 100 100"><path d="M50 50 L50 20 A30 30 0 0 1 80 50 A30 30 0 0 1 50 80 A30 30 0 0 1 20 50 A30 30 0 0 1 50 20" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="5"><animateTransform attributeName="transform" type="rotate" from="0 50 50" to="360 50 50" dur="2s" repeatCount="indefinite" /><animate attributeName="stroke-width" values="6;10;6" dur="1.5s" repeatCount="indefinite" /></path></svg>');
  background-size:
    contain,
    83% 140%;
}

@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

/* X (Twitter) Icon */
.x {
  background: #111827;
}

.x i {
  color: white;
  font-size: 35px;
  z-index: 2;
  transition: 0.3s;
}

.x:hover i {
  animation: flip-icon 0.6s ease;
}

.x:hover {
  transform: scale(1.15);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(29, 161, 242, 0.7);
  background:
    linear-gradient(45deg, rgba(29, 161, 242, 0.5), transparent),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="10 20 80 80"><g><circle cx="30" cy="30" r="3" fill="rgba(255,255,255,0.5)"><animate attributeName="r" values="3;5;3" dur="1.5s" repeatCount="indefinite" /><animate attributeName="opacity" values="0.5;0.8;0.5" dur="1.5s" repeatCount="indefinite" /></circle><circle cx="70" cy="30" r="3" fill="rgba(255,255,255,0.5)"><animate attributeName="r" values="3;5;3" dur="1.7s" repeatCount="indefinite" /><animate attributeName="opacity" values="0.5;0.8;0.5" dur="1.7s" repeatCount="indefinite" /></circle><circle cx="50" cy="70" r="3" fill="rgba(255,255,255,0.5)"><animate attributeName="r" values="3;5;3" dur="1.6s" repeatCount="indefinite" /><animate attributeName="opacity" values="0.5;0.8;0.5" dur="1.6s" repeatCount="indefinite" /></circle><animateTransform attributeName="transform" type="rotate" from="0 50 50" to="360 50 50" dur="4s" repeatCount="indefinite" /></g><circle cx="50" cy="50" r="5" fill="rgba(29,161,242,0.4)"><animate attributeName="cx" values="50;60;50;40;50" dur="2s" repeatCount="indefinite" /><animate attributeName="cy" values="50;40;50;60;50" dur="2s" repeatCount="indefinite" /><animate attributeName="opacity" values="0.4;0.7;0.4" dur="2s" repeatCount="indefinite" /></circle><circle cx="50" cy="50" r="5" fill="rgba(29,161,242,0.4)"><animate attributeName="cx" values="50;40;50;60;50" dur="2.2s" repeatCount="indefinite" /><animate attributeName="cy" values="50;60;50;40;50" dur="2.2s" repeatCount="indefinite" /><animate attributeName="opacity" values="0.4;0.7;0.4" dur="2.2s" repeatCount="indefinite" /></circle></svg>');
  background-size:
    cover,
    60% 140%;
}

@keyframes flip-icon {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Discord Icon */
.discord {
  background: #4b56d2;
}

.discord i {
  color: white;
  font-size: 35px;
  z-index: 2;
  transition: 0.3s;
}

.discord:hover i {
  animation: wobble 0.5s ease;
}

.discord:hover {
  transform: rotate(-8deg);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.7);
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox=" -15 10 100 100"><rect x="20" y="20" width="60" height="60" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="10"><animateTransform attributeName="transform" type="rotate" from="0 50 50" to="360 50 50" dur="1.2s" repeatCount="indefinite" /></rect></svg>'),
    #4b56d2;
  background-size:
    25vw 16vw,
    100% 10%;
}

@keyframes wobble {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* Join Us Heading */
.overlay45 {
  width: 100%;
  margin: 40px 0;
}

.more-movies {
  width: 100%;
  margin: 40px 0 10px 0px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.2;
  }
}

.join-us {
  font-family: "Inknut Antiqua", serif;
}

.join-us,
.more-movies {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 700;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 0px 0;
  cursor: default;
}
.more-movies {
  display: inline-block;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #5b6ed6, #7ef788);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
  position: relative;
  font-family: "Jockey One", sans-serif;
}

.join-us span {
  display: inline-block;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 8px rgba(255, 107, 107, 0.4);
  position: relative;
}

.join-us span:hover {
  transform: translateY(-5px) scale(1.1);
  text-shadow:
    0 0 15px rgba(255, 107, 107, 0.9),
    0 0 25px rgba(78, 205, 196, 0.7);
  filter: brightness(1.4);
}

.join-us span:nth-child(odd) {
  animation: subtle-wave 1.5s infinite;
}

.join-us span:nth-child(even) {
  animation: subtle-wave 1.5s infinite 0.15s;
}

@keyframes subtle-wave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.join-us::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff6b6b,
    #4ecdc4,
    transparent
  );
  transition: width 0.5s ease;
  z-index: 1;
}

.join-us:hover::before {
  width: 80%;
}

.join-us span::after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #4ecdc4;
  transition: width 0.3s ease;
  opacity: 0;
}

.join-us span:hover::after {
  width: 80%;
  opacity: 1;
}
/*  Join US social icon css End */

@media screen and (min-width: 576px) {
  .container {
    gap: 13px;
    margin: 0px 15px;
  }
  .icon {
    width: 160px;
    height: 70px;
  }
  .icon .hover-text {
    bottom: 0px;
    font-size: 13px;
    padding: 3px 10px;
  }
  .instagram i,
  .x i,
  .discord i {
    font-size: 45px;
  }
  .discord:hover {
    background-size:
      23.5vw 20vw,
      100% 10%;
  }
  .join-us,
  .more-movies {
    font-size: 2.5rem;
  }
  .join-us span::after {
    bottom: 18px;
  }
  .join-us::before {
    bottom: 15px;
  }
}

@media screen and (min-width: 700px) {
  .container {
    gap: 30px;
    margin: 0px 0px;
  }
  .icon {
    width: 180px;
    height: 90px;
  }
  .icon .hover-text {
    bottom: 0px;
    font-size: 18px;
    padding: 3px 10px;
  }
  .instagram i,
  .x i,
  .discord i {
    font-size: 60px;
  }
  .discord:hover {
    background-size:
      145px 120px,
      100% 10%;
  }
    .join-us {
    margin: 1vw 10px;
  }
  .more-movies {
    font-size: 60px;
    margin: 25px 0 0px 0px;
  }
}

@media screen and (min-width: 800px) {
  .join-us,
  .more-movies {
    font-size: 3rem;
  }
  .join-us span::after {
    bottom: 22px;
  }
  .join-us::before {
    bottom: 15px;
  }
  .more-movies {
    width: 100%;
    margin: 50px 0 15px 0px;
  }

}

@media screen and (min-width: 1400px) {
  .container {
    gap: 3vw;
    margin: 0px 0px;
  }

  .icon {
    width: 15vw;
    height: 7.5vw;
    border-radius: 1vw;
  }

  .icon .hover-text {
    bottom: 0px;
    font-size: 1.5vw;
    padding: 0.3vw 1vw;
  }

  .instagram i,
  .x i,
  .discord i {
    font-size: 5vw;
  }
  .discord:hover {
    background:
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox=" 0 15 100 100"><rect x="20" y="20" width="60" height="60" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="10"><animateTransform attributeName="transform" type="rotate" from="0 50 50" to="360 50 50" dur="1.2s" repeatCount="indefinite" /></rect></svg>'),
      #4b56d2;
    background-size:
      20vw 14vw,
      contain;
  }
  .join-us {
    font-size: 3.5vw;
  }
  .join-us span::after {
    bottom: 2vw;
    height: 0.5vw;
  }
  .join-us::before {
    bottom: 1.5vw;
    height: 0.5vw;
  }
  .more-movies {
    font-size: 4.5vw;
    margin: 40px 0 0px 0px;
  }
}

/* Download Section start */
/* .download-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 50px 20px 50px 0px;
}

.download-section::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.download-btn:hover ~ .download-section::after,
.download-section:hover::after {
  width: 200px;
}

.download-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 65px;
  background: linear-gradient(
    45deg,
    rgba(0, 255, 153, 0.2),
    rgba(0, 153, 76, 0.2)
  );
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 153, 0.4);
  color: #e6ffd9;
  font-family: "Archivo Black", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 0 20px rgba(0, 255, 153, 0.3),
    inset 0 0 12px rgba(0, 153, 76, 0.15);
  transition: all 0.3s ease;
  animation: float 5s infinite ease-in-out;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.icon48 {
  position: absolute;
  width: 60px;
  height: 45px;
  left: -15.5%;
  perspective: 1000px;
  transition: transform 0.4s ease;
}

.icon48::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 55%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e6ffd9" stroke-width="2"><path d="M12 15V3m0 12l-4-4m4 4l4-4M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"/></svg>')
    no-repeat center;
  background-size: contain;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.icon48::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00ff99, transparent);
  top: 10%;
  left: 100%;
  transform: translateY(-50%);
  opacity: 0;
  transition:
    left 0.6s ease,
    opacity 0.6s ease;
}

.text48 {
  position: relative;
  left: 25px;
  z-index: 1;
  font-size: 22px;
  text-shadow: 0 0 8px rgba(0, 255, 153, 0.5);
}

.light-beams {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.light-beams::before,
.light-beams::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 0px;
  background: linear-gradient(to bottom, #00ff99, transparent);
  opacity: 0;
  transition:
    height 0.5s ease,
    opacity 0.5s ease;
}

.light-beams::before {
  top: 0;
  left: 15.5%;
}

.light-beams::after {
  bottom: 0;
  right: 15%;
}

.gravity-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 153, 0.1), transparent);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  z-index: 0;
}

.internal-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.internal-lines::before,
.internal-lines::after,
.internal-lines span::before {
  content: "";
  position: absolute;
  background: #00ff99;
  box-shadow: 0 0 8px #00ff99;
  opacity: 0;
  transition: all 0.4s ease;
}

.internal-lines::before {
  width: 70%;
  height: 1px;
  left: 50%;
}

.internal-lines::after {
  width: 70%;
  height: 1px;
  bottom: 0;
  right: 50%;
}

.internal-lines span::before {
  width: 1px;
  height: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lightning {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.lightning::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(0, 255, 153, 0.3),
    transparent
  );
  clip-path: polygon(
    10% 10%,
    20% 40%,
    30% 10%,
    40% 50%,
    50% 20%,
    60% 60%,
    70% 30%,
    80% 70%,
    90% 40%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
  animation: thunder-flash 2s infinite alternate ease-in-out;
}

@keyframes thunder-flash {
  0%,
  80% {
    opacity: 0;
  }
  82% {
    opacity: 0.5;
  }
  84% {
    opacity: 0.2;
  }
  86% {
    opacity: 0.6;
  }
  88% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    opacity: 0.4;
  }
}

.download-btn:hover {
  background: linear-gradient(
    45deg,
    rgba(0, 255, 153, 0.3),
    rgba(0, 153, 76, 0.3)
  );
  transform: translateY(-3px);
}

.download-btn:hover .icon48::before {
  transform: rotateY(360deg);
  filter: drop-shadow(0 0 8px #00ff99);
}

.download-btn:hover .icon48::after {
  left: -50%;
  opacity: 1;
}

.download-btn:hover .light-beams::before,
.download-btn:hover .light-beams::after {
  height: 50%;
  opacity: 1;
}

.download-btn:hover .gravity-pulse {
  transform: translate(-50%, -50%) scale(1);
}

.download-btn:hover .internal-lines::before,
.download-btn:hover .internal-lines::after,
.download-btn:hover .internal-lines span::before {
  opacity: 1;
}

.download-btn:hover .lightning::before {
  animation: thunder-flash 0.5s infinite alternate ease-in-out;
}

.download-btn:active .gravity-pulse {
  transform: translate(-50%, -50%) scale(0.5);
  transition: transform 0.2s ease;
}

@keyframes distortion {
  0%,
  100% {
    transform: translate(0);
  }
  50% {
    transform: translate(0.3px, -0.3px);
  }
}

.download-btn:hover .text48 {
  animation: distortion 0.15s ease 2;
}

.download-btn.loading .text48,
.download-btn.loading .icon48::before {
  opacity: 0;
}

.download-btn.loading .icon48::after {
  content: "";
  width: 24px;
  height: 24px;
  border: 3px solid transparent;
  border-top: 3px solid #e6ffd9;
  border-right: 3px solid #e6ffd9;
  border-radius: 50%;
  top: 50%;
  opacity: 1;
  animation: quantum-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes quantum-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.download-btn:disabled {
  background: rgba(40, 40, 40, 0.5);
  color: #666666;
  border-color: rgba(40, 40, 40, 0.5);
  box-shadow: none;
  cursor: not-allowed;
  animation: none;
}

.download-btn:disabled .icon48::before {
  opacity: 0.3;
} */

/* Download Section End */
