/* Dashboard Styles */
:root {
  --primary: #415a77;
  --bg-dark: #0d1b2a;
  --bg-card: #1b263b;
  --card-gradient: linear-gradient(135deg, #1b263b 0%, #415a77 100%);
  --gold: #ffd700;
  --silver: #c0c0c0;
  --bronze: #cd7f32;
  --shadow: 0 2px 16px #0004;
  --white: #fff;
  --border-radius: 1rem;
}

/* Dashboard Body */
body {
  margin: 0;
  background: linear-gradient(
    135deg,
    #0d1b2a 0%,
    #1b263b 25%,
    #415a77 50%,
    #1b263b 75%,
    #0d1b2a 100%
  );
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  min-height: 100vh;
}

/* Dashboard Header */
.dashboard-header {
  background: var(--card-gradient);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.dashboard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.dashboard-logo img {
  height: 45px;
  width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 4px;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Desktop Navigation */
.dashboard-menu.desktop-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-link.active {
  background: rgba(255, 215, 0, 0.2);
  color: var(--gold);
}

/* User Info Compact */
.dashboard-user-info {
  position: relative;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--gold);
}

.user-avatar:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  transform: scale(1.05);
}

.user-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--card-gradient);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 0.8rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.user-menu-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-details {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.user-name {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.user-email {
  display: block;
  font-size: 0.8rem;
  color: #bbb;
}

.dropdown-logout-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.8rem 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0 0 0.8rem 0.8rem;
}

.dropdown-logout-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-menu.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--card-gradient);
  padding: 2rem 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-menu.show .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

.mobile-user-section {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.mobile-user-info {
  margin-bottom: 1rem;
}

.mobile-user-name {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.mobile-user-email {
  display: block;
  font-size: 0.85rem;
  color: #bbb;
}

.mobile-logout-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  justify-content: center;
}

.mobile-logout-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* Dashboard Main Content */
.dashboard-main {
  padding: 2rem 0;
}

.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Welcome Section */
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--card-gradient);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.welcome-content {
  flex: 1;
}

.welcome-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-subtitle {
  font-size: 1.2rem;
  color: #e0e8ff;
  margin: 0;
}

.welcome-stats {
  display: flex;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 0.8rem;
  padding: 1.5rem;
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #bbb;
}

/* Section Titles */
.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-align: center;
}

/* Quick Actions */
.quick-actions {
  margin-bottom: 2rem;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.action-card {
  background: var(--card-gradient);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: auto;
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
}

.action-icon {
  font-size: 1.5rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.action-content {
  flex: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.action-title {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--gold);
  margin: 0;
}

.action-description {
  color: #9ca3af;
  margin: 0;
  line-height: 1.4;
  font-size: 0.75rem;
  display: none;
}

.action-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 215, 0, 0.4);
  padding: 0.4rem 0.75rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.action-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}

/* Recent Activity */
.recent-activity {
  margin-bottom: 3rem;
}

.activity-list {
  background: var(--card-gradient);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-content {
  flex: 1;
}

.activity-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.activity-time {
  font-size: 0.85rem;
  color: #bbb;
}

/* Newsfeed Timeline */
.newsfeed-timeline {
  margin-bottom: 3rem;
}

.timeline-container {
  max-width: 100%;
  margin: 0;
}

.timeline-loading {
  text-align: center;
  padding: 3rem;
  color: #bbb;
}

.loading-posts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loading-post {
  font-size: 3rem;
  opacity: 0.7;
  animation: pulse 2s infinite;
}

.loading-text {
  font-size: 1.1rem;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.timeline-post {
  background: var(--card-gradient);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
}

.timeline-post::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--gold) 0%,
    #ffed4e 50%,
    var(--gold) 100%
  );
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1b263b;
  font-weight: bold;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  color: var(--gold);
  font-size: 1rem;
}

.post-time {
  color: #bbb;
  font-size: 0.85rem;
}

.post-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.3;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.post-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.post-content {
  color: #fff;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}

.post-image {
  margin: 1.5rem 0;
  text-align: center;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 0.8rem;
  transition: transform 0.3s ease;
}

.post-image:hover img {
  transform: scale(1.02);
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.post-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: #bbb;
}

.post-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.post-stat:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}

.post-actions {
  display: flex;
  gap: 1rem;
}

.post-action {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-action:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.timeline-actions {
  text-align: center;
  margin-top: 2rem;
}

.no-posts-message {
  text-align: center;
  padding: 4rem 2rem;
  color: #bbb;
  background: var(--card-gradient);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.no-posts-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}

/* Featured Casinos */
.featured-casinos {
  margin-bottom: 3rem;
}

.casinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Dashboard Footer */
.dashboard-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

/* Post Reactions and Comments Styles */
.post-reactions {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.reaction-btn,
.comment-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
}

.reaction-btn:hover,
.comment-toggle-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold);
  transform: scale(1.05);
}

.reaction-btn.user-reacted {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--gold);
}

.reaction-btn.reaction-active {
  animation: pulse 0.3s ease;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.reaction-icon {
  font-size: 1.2rem;
}

.reaction-count,
.comment-count {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Comment Section */
.post-comment-section {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
}

.comment-form {
  margin-bottom: 1rem;
}

.comment-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: #fff;
  resize: vertical;
  min-height: 60px;
  font-family: inherit;
}

.comment-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.comment-form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  align-items: center;
}

.image-upload-label {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.image-upload-label:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--gold);
}

.submit-comment-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
  color: #1b263b;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-comment-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.comment-image-preview {
  margin-top: 1rem;
}

.preview-container {
  position: relative;
  display: inline-block;
}

.preview-container img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 0.5rem;
  border: 2px solid var(--gold);
}

.remove-preview {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff4444;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Comments List */
.comments-list {
  max-height: 400px;
  overflow-y: auto;
}

.comment-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: 600;
  color: var(--gold);
}

.comment-time {
  font-size: 0.85rem;
  color: #999;
}

.comment-text {
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.comment-image {
  margin-top: 0.5rem;
}

.comment-image img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.comment-image img:hover {
  transform: scale(1.02);
}

.admin-response {
  background: rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--gold);
  padding: 0.75rem;
  margin-top: 0.75rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.admin-response-badge {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.admin-response-text {
  color: #fff;
}

.loading-comments,
.no-comments,
.error-comments {
  text-align: center;
  padding: 2rem;
  color: #999;
  font-style: italic;
}

.comment-success {
  background: rgba(74, 222, 128, 0.2);
  border: 1px solid #4ade80;
  color: #4ade80;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 2rem;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0.5rem;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  background: #ff4444;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dashboard-nav {
    padding: 0.8rem 1.5rem;
  }

  .dashboard-logo img {
    height: 40px;
  }

  /* Show mobile elements */
  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-menu {
    display: block;
  }

  /* Hide desktop navigation on mobile */
  .dashboard-menu.desktop-nav {
    display: none;
  }

  /* User avatar smaller on mobile */
  .user-avatar {
    width: 36px;
    height: 36px;
  }

  .user-avatar svg {
    width: 20px;
    height: 20px;
  }

  .user-menu-dropdown {
    min-width: 180px;
    right: -10px;
  }

  .dashboard-container {
    padding: 0 1rem;
  }

  .welcome-section {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 1.5rem;
  }

  .welcome-title {
    font-size: 2rem;
  }

  .welcome-stats {
    justify-content: center;
  }

  .stat-card {
    min-width: 100px;
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .actions-grid {
    grid-template-columns: 1fr;
  }

  .action-card {
    padding: 1.5rem;
    min-height: auto;
  }

  .action-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .action-title {
    font-size: 1.2rem;
  }

  .action-description {
    font-size: 0.9rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .dashboard-nav {
    padding: 0.8rem 1rem;
  }

  .dashboard-logo img {
    height: 35px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hamburger-line {
    width: 18px;
  }

  .user-avatar {
    width: 32px;
    height: 32px;
  }

  .user-avatar svg {
    width: 18px;
    height: 18px;
  }

  .mobile-nav-content {
    width: 260px;
    padding: 1.5rem 0;
  }

  .mobile-nav-link {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .mobile-user-section {
    padding: 1rem 1.5rem;
  }

  .welcome-section {
    padding: 1rem;
  }

  .welcome-title {
    font-size: 1.5rem;
  }

  .welcome-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stat-card {
    min-width: 80px;
    padding: 0.8rem;
  }

  .stat-icon {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .action-card {
    padding: 1.2rem;
  }

  .activity-item {
    padding: 0.8rem 0;
  }

  .activity-icon {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }
}

/* ============================================
   PLATFORM CONNECTIONS SECTION
   ============================================ */

.platform-connections {
  margin-bottom: 1.5rem;
}

.platform-connections .section-subtitle {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.platform-card {
  background: var(--card-gradient);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
}

.platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.4);
}

.platform-card.connected {
  border-color: #10b981;
  background: linear-gradient(135deg, #1b263b 0%, #064e3b 100%);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.platform-icon.twitch-icon {
  background: linear-gradient(135deg, #9146ff 0%, #6441a5 100%);
}

.platform-icon.kick-icon {
  background: linear-gradient(135deg, #53fc18 0%, #3d9e10 100%);
  color: #000;
}

.platform-info {
  flex: 1;
}

.platform-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.15rem 0;
}

.platform-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.status-indicator.not-connected {
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid #ef4444;
  color: #ef4444;
}

.status-indicator.connected {
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid #10b981;
  color: #10b981;
}

.status-icon-x {
  font-size: 14px;
  line-height: 1;
}

.status-icon-check {
  font-size: 14px;
  line-height: 1;
}

.platform-status {
  font-size: 0.85rem;
  color: #9ca3af;
}

.platform-status.connected {
  color: #10b981;
  font-weight: 600;
}

.platform-status.not-connected {
  color: #ef4444;
}

.platform-details {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.connected-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.platform-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.kick-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #53fc18 0%, #3d9e10 100%);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.connected-user span:last-child {
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}

.platform-actions {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.connect-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.connect-btn.twitch-btn {
  background: linear-gradient(135deg, #9146ff 0%, #6441a5 100%);
  color: white;
}

.connect-btn.twitch-btn:hover {
  background: linear-gradient(135deg, #a66bff 0%, #7b5bc4 100%);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(145, 70, 255, 0.4);
}

.connect-btn.kick-btn {
  background: linear-gradient(135deg, #53fc18 0%, #3d9e10 100%);
  color: #000;
}

.connect-btn.kick-btn:hover {
  background: linear-gradient(135deg, #6bff3a 0%, #4fc015 100%);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(83, 252, 24, 0.4);
}

.disconnect-btn {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: auto;
}

.disconnect-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

/* Kick Manual Input */
.kick-manual-input {
  display: flex;
  gap: 0.5rem;
}

.kick-input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.kick-input:focus {
  outline: none;
  border-color: #53fc18;
  box-shadow: 0 0 10px rgba(83, 252, 24, 0.2);
}

.kick-input::placeholder {
  color: #6b7280;
}

/* Connection Success Animation */
@keyframes connectionSuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  }
  100% {
    transform: scale(1);
  }
}

.platform-card.just-connected {
  animation: connectionSuccess 0.6s ease;
}

/* Viewer Profile Section */
.viewer-profile-section {
  margin-top: 1.5rem;
}

.viewer-profile-card {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.1) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
}

.profile-title {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}

.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.profile-stat {
  flex: 1;
  min-width: 80px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
}

.profile-stat .stat-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.profile-stat .stat-label {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.profile-badges {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.badges-label {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-right: 0.5rem;
}

.profile-badges .badge {
  background: linear-gradient(135deg, #9146ff 0%, #6441a5 100%);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    padding: 1.25rem;
  }

  .platform-icon {
    width: 48px;
    height: 48px;
  }

  .platform-icon svg {
    width: 24px;
    height: 24px;
  }

  .kick-manual-input {
    flex-direction: column;
  }

  .kick-manual-input .connect-btn {
    width: 100%;
  }

  .profile-stats {
    gap: 0.5rem;
  }

  .profile-stat {
    min-width: 70px;
    padding: 0.6rem;
  }

  .profile-stat .stat-value {
    font-size: 1.1rem;
  }
}

/* ===== DASHBOARD SHOP SECTION ===== */
.dashboard-shop-section {
  margin-bottom: 2rem;
}

.dashboard-shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dashboard-shop-header .section-title {
  margin-bottom: 0;
}

.view-all-link {
  color: var(--accent-color, #00b2ff);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: #fff;
}

.dashboard-balance-card {
  background: linear-gradient(
    135deg,
    rgba(0, 178, 255, 0.15),
    rgba(0, 119, 182, 0.1)
  );
  border: 1px solid rgba(0, 178, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.balance-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.balance-label {
  color: #94a3b8;
  font-size: 0.9rem;
}

.balance-amount {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.balance-currency {
  color: #94a3b8;
  font-size: 0.85rem;
}

.dashboard-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dashboard-shop-item {
  background: linear-gradient(
    145deg,
    rgba(27, 38, 59, 0.95),
    rgba(13, 27, 42, 0.98)
  );
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.dashboard-shop-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color, #00b2ff);
  box-shadow: 0 10px 30px rgba(0, 178, 255, 0.2);
}

.dashboard-shop-item-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.2);
}

.dashboard-shop-item-content {
  padding: 1rem;
}

.dashboard-shop-item-name {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.dashboard-shop-item-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-shop-item-price-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color, #00b2ff);
}

.dashboard-shop-item-price-currency {
  color: #94a3b8;
  font-size: 0.8rem;
}

.dashboard-shop-buy-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, var(--accent-color, #00b2ff), #0077b6);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dashboard-shop-buy-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 178, 255, 0.3);
}

.dashboard-shop-buy-btn:disabled {
  background: #4a5568;
  cursor: not-allowed;
}

/* ===== DASHBOARD SHOP MORE BUTTON ===== */
.dashboard-shop-more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.dashboard-shop-more-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(
    145deg,
    rgba(27, 38, 59, 0.95),
    rgba(13, 27, 42, 0.95)
  );
  border: 1px solid rgba(0, 178, 255, 0.3);
  border-radius: 12px;
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dashboard-shop-more-btn:hover {
  background: linear-gradient(
    145deg,
    rgba(0, 178, 255, 0.15),
    rgba(27, 38, 59, 0.95)
  );
  border-color: var(--accent-color, #00b2ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 178, 255, 0.2);
}

.dashboard-shop-more-btn .more-btn-icon {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.dashboard-shop-more-btn.expanded .more-btn-icon {
  transform: rotate(180deg);
}

.dashboard-shop-grid-hidden {
  margin-top: 1.5rem;
  animation: fadeSlideIn 0.4s ease-out;
}

.dashboard-shop-grid-hidden.expanded {
  display: grid !important;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SHOP LEADERBOARD SECTION ===== */
.shop-leaderboard-section {
  margin-bottom: 2rem;
}

.leaderboard-card {
  background: linear-gradient(
    145deg,
    rgba(27, 38, 59, 0.95) 0%,
    rgba(13, 27, 42, 0.98) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.leaderboard-header {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
  padding: 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.leaderboard-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.trophy-icon {
  font-size: 2rem;
  animation: trophyBounce 2s ease-in-out infinite;
}

@keyframes trophyBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.leaderboard-title h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leaderboard-subtitle {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.leaderboard-content {
  padding: 1.5rem;
}

/* Podium Styles */
.podium-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  margin-bottom: 2rem;
  padding: 2rem 0 0;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.podium-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  flex: 1;
  max-width: 130px;
}

.podium-item:hover {
  transform: translateY(-5px);
}

.podium-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.podium-item.first .podium-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffd700 0%, #f0b800 100%);
  border: 3px solid #ffd700;
  font-size: 1.8rem;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.podium-item.second .podium-avatar {
  background: linear-gradient(135deg, #e0e0e0 0%, #a8a8a8 100%);
  border: 3px solid #c0c0c0;
}

.podium-item.third .podium-avatar {
  background: linear-gradient(135deg, #e6a86e 0%, #b87333 100%);
  border: 3px solid #cd7f32;
}

.avatar-letter {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.podium-rank {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.podium-item.first .podium-rank {
  font-size: 1.4rem;
}

.podium-name {
  font-weight: 600;
  color: white;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.podium-points {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0;
}

.podium-bar {
  width: 100%;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.podium-item.first .podium-bar {
  height: 90px;
  background: linear-gradient(
    180deg,
    rgba(255, 215, 0, 0.5) 0%,
    rgba(255, 215, 0, 0.2) 100%
  );
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-bottom: none;
}

.podium-item.second .podium-bar {
  height: 65px;
  background: linear-gradient(
    180deg,
    rgba(192, 192, 192, 0.4) 0%,
    rgba(192, 192, 192, 0.15) 100%
  );
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-bottom: none;
}

.podium-item.third .podium-bar {
  height: 50px;
  background: linear-gradient(
    180deg,
    rgba(205, 127, 50, 0.4) 0%,
    rgba(205, 127, 50, 0.15) 100%
  );
  border: 1px solid rgba(205, 127, 50, 0.3);
  border-bottom: none;
}

.podium-bar-rank {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
}

/* Leaderboard List */
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.leaderboard-row:hover {
  background: rgba(255, 215, 0, 0.08);
  transform: translateX(5px);
}

.rank-badge {
  width: 40px;
  text-align: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #415a77 0%, #1b263b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 1rem;
}

.user-info {
  flex: 1;
}

.user-name {
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
}

.user-points {
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}

.leaderboard-footer {
  padding: 1rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.update-info {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.update-info::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .leaderboard-header {
    padding: 1rem;
  }

  .leaderboard-title h2 {
    font-size: 1.2rem;
  }

  .podium-container {
    max-width: 320px;
    padding: 1.5rem 0 0;
  }

  .podium-item {
    max-width: 100px;
  }

  .podium-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .podium-item.first .podium-avatar {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .podium-name {
    font-size: 0.7rem;
    max-width: 80px;
  }

  .podium-points {
    font-size: 0.65rem;
  }

  .podium-item.first .podium-bar {
    height: 70px;
  }

  .podium-item.second .podium-bar {
    height: 50px;
  }

  .podium-item.third .podium-bar {
    height: 35px;
  }

  .podium-bar-rank {
    font-size: 1.2rem;
  }
}

/* ===== POST ACTIONS MENU ===== */
.post-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.post-actions-menu {
  position: relative;
}

.post-menu-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1;
}

.post-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.post-menu-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(145deg, #1b263b, #0d1b2a);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  min-width: 180px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  overflow: hidden;
}

.post-menu-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.post-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.post-menu-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.post-menu-item span:first-child {
  font-size: 1.1rem;
}

/* Notification Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
