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

body {
  font-family: "Baloo Thambi 2", cursive;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #1a1a1a;
  z-index: 1000;
  padding: 0 20px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
}

.nav-logo .logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-logo .logo-text:hover {
  color: #ccc;
}

.nav-search {
  position: relative;
  flex: 1;
  max-width: 300px;
  margin: 0 40px;
}

.nav-search i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 14px;
}

.nav-search input {
  width: 100%;
  padding: 10px 15px 10px 45px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.nav-search input:focus {
  outline: none;
  border-color: #ffffff;
}

.nav-search input::placeholder {
  color: #666;
}

.nav-icons {
  display: flex;
  gap: 8px;
}

.nav-icon {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.nav-icon i {
  transition: all 0.3s ease;
}

.nav-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-icon.active {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
}

/* Enhanced Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
  padding: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  transform: scale(1.1);
}

.hamburger-menu .bar {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger-menu.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.open .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-menu.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced Mobile Sidebar */
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid #1a1a1a;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar-overlay.open .mobile-sidebar {
  transform: translateX(0);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #1a1a1a;
  height: 60px;
}

.sidebar-logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.close-sidebar-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-sidebar-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.sidebar-content {
  padding: 0;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.sidebar-user:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.sidebar-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #1a1a1a;
  transition: border-color 0.3s ease;
}

.sidebar-user:hover .sidebar-avatar {
  border-color: #333;
}

.sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-user-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #ffffff;
}

.sidebar-user-info p {
  font-size: 14px;
  color: #666;
}

.sidebar-menu {
  padding: 16px 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.sidebar-link.active {
  background-color: rgba(255, 255, 255, 0.15);
  border-left-color: #ffffff;
}

.sidebar-link i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.sidebar-divider {
  height: 1px;
  background-color: #1a1a1a;
  margin: 16px 20px;
}

/* Main Content */
.main-content {
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

/* Enhanced Stories Section */
.stories-section {
  margin-bottom: 30px;
  padding: 0 4px;
}

.stories-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.stories-container::-webkit-scrollbar {
  display: none;
}

.story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.story:active {
  transform: scale(0.95);
}

.story-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1a1a1a;
  position: relative;
}

.add-story .story-avatar {
  border: 3px dashed #666;
  background-color: #1a1a1a;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story span {
  font-size: 12px;
  text-align: center;
  color: #ccc;
  font-weight: 500;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Enhanced Feed Section */
.feed-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post {
  background-color: #000000;
  border: 1px solid #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post:active {
  transform: scale(0.98);
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.post-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1a1a1a;
}

.user-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.event-location {
  font-size: 12px;
  color: #666;
}

.post-options {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.post-options:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.post-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 60px 20px 20px;
  color: #ffffff;
}

.event-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.event-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #ccc;
}

.buy-ticket-btn {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s ease;
  font-size: 16px;
  min-height: 48px;
}

.buy-ticket-btn:hover {
  background-color: #ccc;
  transform: translateY(-2px);
}

.buy-ticket-btn:active {
  transform: translateY(0);
}

.post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.action-buttons {
  display: flex;
  gap: 20px;
}

.action-btn,
.save-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 8px;
  border-radius: 50%;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover,
.save-btn:hover {
  color: #ccc;
  background-color: rgba(255, 255, 255, 0.1);
}

.action-btn:active,
.save-btn:active {
  transform: scale(0.9);
}

.action-btn.liked i {
  color: #ff3040;
}

.save-btn.saved i {
  color: #ffffff;
}

.post-stats {
  padding: 0 16px;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 8px;
}

.post-caption {
  padding: 0 16px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.hashtags {
  color: #ccc;
  margin-top: 8px;
  display: block;
}

.post-comments {
  padding: 0 16px 16px;
}

.view-comments {
  color: #666;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 12px;
  display: block;
}

.add-comment {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #1a1a1a;
  padding-top: 12px;
}

.add-comment input {
  flex: 1;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
}

.add-comment input:focus {
  outline: none;
  border-bottom: 1px solid #ffffff;
}

.add-comment input::placeholder {
  color: #666;
}

.add-comment button {
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  min-height: 40px;
}

.add-comment button:hover {
  color: #ccc;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Loading Indicator */
.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #666;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #333;
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced Sidebar (Desktop) */
.sidebar {
  position: fixed;
  right: 20px;
  top: 100px;
  width: 300px;
  background-color: #000000;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #1a1a1a;
}

.sidebar-section {
  margin-bottom: 32px;
}

.sidebar-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.suggested-event {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 12px;
  transition: background-color 0.2s ease;
}

.suggested-event:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.suggested-event img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

.event-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.event-details span {
  font-size: 12px;
  color: #666;
}

.follow-btn {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  cursor: pointer;
  margin-left: auto;
  transition: all 0.3s ease;
  font-weight: 500;
  min-height: 32px;
}

.follow-btn:hover {
  background-color: #333;
  border-color: #666;
}

.follow-btn.following {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.follow-btn.following:hover {
  background-color: #ccc;
  border-color: #ccc;
}

.trending-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trending-tag {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid #333;
  transition: all 0.3s ease;
  font-weight: 500;
}

.trending-tag:hover {
  background-color: #333;
  border-color: #666;
  color: #ffffff;
}

/* Enhanced Notifications */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background-color: #1a1a1a;
  color: white;
  padding: 16px 20px;
  border-radius: 16px;
  z-index: 10000;
  animation: slideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #333;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 300px;
}

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

/* Enhanced Modals */
.ticket-modal,
.edit-profile-modal,
.settings-modal,
.chat-info-modal,
.new-message-modal,
.payment-modal,
.event-details-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow-y: auto;
  padding: 20px;
}

.modal-content {
  background-color: #000000;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  border: 1px solid #1a1a1a;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #1a1a1a;
}

.modal-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.close-modal {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  color: #ffffff;
  font-family: "Baloo Thambi 2", cursive;
  transition: border-color 0.3s ease;
  font-size: 16px;
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

.btn-primary,
.btn-secondary {
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: "Baloo Thambi 2", cursive;
  transition: all 0.3s ease;
  font-size: 16px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background-color: #ccc;
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
}

.btn-secondary:hover {
  background-color: #333;
  border-color: #666;
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }

  .main-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }

  .nav-container {
    justify-content: center;
    position: relative;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-logo .logo-text {
    font-size: 24px;
  }

  .nav-search,
  .nav-icons {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    position: absolute;
    right: 0;
  }

  .mobile-sidebar {
    width: 280px;
  }

  .main-content {
    padding: 16px;
    margin-top: 60px;
  }

  .stories-container {
    padding: 12px 4px;
    gap: 12px;
  }

  .story-avatar {
    width: 60px;
    height: 60px;
  }

  .story span {
    font-size: 11px;
    max-width: 60px;
  }

  .feed-container {
    gap: 20px;
  }

  .post {
    border-radius: 16px;
  }

  .post-header {
    padding: 14px;
  }

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

  .user-info h3 {
    font-size: 15px;
  }

  .event-location {
    font-size: 11px;
  }

  .post-image {
    height: 350px;
  }

  .event-overlay {
    padding: 40px 16px 16px;
  }

  .event-info h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .event-info p {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .buy-ticket-btn {
    padding: 12px 24px;
    font-size: 15px;
    margin-top: 12px;
    min-height: 44px;
  }

  .post-actions {
    padding: 14px;
  }

  .action-buttons {
    gap: 16px;
  }

  .action-btn,
  .save-btn {
    font-size: 20px;
    min-width: 40px;
    min-height: 40px;
  }

  .post-stats,
  .post-caption,
  .post-comments {
    padding-left: 14px;
    padding-right: 14px;
  }

  .post-caption {
    font-size: 13px;
  }

  .add-comment {
    gap: 10px;
  }

  .add-comment input {
    font-size: 13px;
  }

  .add-comment button {
    font-size: 13px;
    padding: 6px 10px;
    min-height: 36px;
  }

  .notification {
    right: 16px;
    left: 16px;
    max-width: none;
    top: 70px;
  }

  .modal-content {
    margin: 20px;
    max-width: none;
    width: calc(100% - 40px);
  }

  .modal-header,
  .modal-body {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 16px;
    min-height: 44px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 15px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 12px;
  }

  .nav-logo .logo-text {
    font-size: 22px;
  }

  .mobile-sidebar {
    width: 260px;
  }

  .main-content {
    padding: 12px;
  }

  .stories-container {
    gap: 10px;
  }

  .story-avatar {
    width: 56px;
    height: 56px;
  }

  .story span {
    font-size: 10px;
    max-width: 56px;
  }

  .feed-container {
    gap: 16px;
  }

  .post-header {
    padding: 12px;
  }

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

  .user-info h3 {
    font-size: 14px;
  }

  .post-image {
    height: 300px;
  }

  .event-overlay {
    padding: 30px 12px 12px;
  }

  .event-info h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .event-info p {
    font-size: 12px;
  }

  .buy-ticket-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 10px;
    min-height: 40px;
  }

  .post-actions {
    padding: 12px;
  }

  .action-buttons {
    gap: 12px;
  }

  .action-btn,
  .save-btn {
    font-size: 18px;
    min-width: 36px;
    min-height: 36px;
  }

  .post-stats,
  .post-caption,
  .post-comments {
    padding-left: 12px;
    padding-right: 12px;
  }

  .post-caption {
    font-size: 12px;
  }

  .view-comments {
    font-size: 13px;
  }

  .add-comment input {
    font-size: 12px;
  }

  .add-comment button {
    font-size: 12px;
    padding: 4px 8px;
    min-height: 32px;
  }

  .sidebar-menu {
    padding: 12px 0;
  }

  .sidebar-link {
    font-size: 15px;
    padding: 14px 16px;
  }

  .sidebar-link i {
    font-size: 16px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .action-btn,
  .save-btn,
  .buy-ticket-btn,
  .follow-btn,
  .trending-tag,
  .story,
  .suggested-event,
  .sidebar-link,
  .hamburger-menu {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  }

  .post:active {
    transform: scale(0.99);
  }

  .story:active {
    transform: scale(0.92);
  }

  .action-btn:active,
  .save-btn:active {
    transform: scale(0.85);
  }

  .buy-ticket-btn:active {
    transform: scale(0.95);
  }

  .sidebar-link:active {
    transform: scale(0.98);
  }

  .hamburger-menu:active {
    transform: scale(0.9);
  }
}

/* Smooth scrolling for mobile */
.feed-container {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Enhanced Scrollbar Styling */
.modal-content,
.stories-container,
.mobile-sidebar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar,
.stories-container::-webkit-scrollbar,
.mobile-sidebar::-webkit-scrollbar {
  display: none;
}

*::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
