a,
button,
button:focus,
button:active,
button:hover {
  outline: none !important;
}

/* Video reel */
@media (max-width: 768px) {
  video {
    border-radius: 0 !important;
    padding: 0 !important;
  }

  .user-overlay {
    border-radius: 0 !important;
  }

  .container-arrows {
    display: none !important;
  }
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  padding: 20px 0;
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 28px;
  }
}

.video-reel {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  z-index: 1049;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.video-reel.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.video-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 16;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .video-container {
    height: 96vmin;
    min-height: 96vmin;
    width: calc(50vmin);
    min-width: calc(50vmin);
    z-index: 3;
    transition: 0.3s;
    position: relative;
    overflow-x: visible;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

video#videoPlayer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

video#videoPlayer:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  pointer-events: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.video-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.play-icon {
  color: white;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-icon:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

/* Navigation buttons */
.container-arrows {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 1.25rem;
}
.nav-button {
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-button.disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}

/* User info */
.user-info {
  position: absolute;
  bottom: 90px;
  left: 20px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.user-info:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.user-avatar:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info span {
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Action buttons */
.action-buttons {
  position: absolute;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  color: #fff;
}

.action-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.action-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.action-button.liked {
  background: rgba(220, 38, 127, 0.2);
  border-color: rgba(220, 38, 127, 0.4);
  color: #dc267f;
}

.action-button.liked:hover {
  background: rgba(220, 38, 127, 0.3);
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.action-count {
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  min-width: 20px;
  text-align: center;
}

/* Modern dropdown styles */
.dropdown-menu-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 8px;
  min-width: 180px;
}

[data-bs-theme=dark] .dropdown-menu-modern {
  background: rgba(30, 30, 30, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

.dropdown-item-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.dropdown-item-modern:hover {
  background: rgba(0, 0, 0, 0.05);
  color: inherit;
  text-decoration: none;
  transform: translateX(4px);
}

[data-bs-theme=dark] .dropdown-item-modern:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown-item-modern:last-child {
  margin-bottom: 0;
}

.dropdown-item-modern.text-danger:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* Video controls */
.video-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.control-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.progress-container-reels {
  flex: 1;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}

.progress-container-reels:hover {
  height: 8px;
}

.progress-bar-reels {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  width: 0;
  transition: width 0.1s ease;
}

.time-display {
  color: white;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  gap: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hidden {
  display: none;
}

/* Prevent scrolling when video reel is open */
body.no-scroll {
  overflow: hidden;
}

/* Loader styles */
#videoLoader, #videoLoaderPage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
  z-index: 20;
  display: none;
}

#videoLoader.active,
#videoLoaderPage.active {
  display: block;
}
.reels-page {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  min-height: 100vh;
  overflow: hidden;
}

.loader-reels {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  z-index: 1050;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modern-loader .loader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}

.spinner-ring:nth-child(1) {
  border-top-color: #667eea;
  animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
  border-top-color: #764ba2;
  animation-delay: 0.3s;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
}

.spinner-ring:nth-child(3) {
  border-top-color: #f093fb;
  animation-delay: 0.6s;
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
}

.loader-text {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  opacity: 0.9;
}

.loading-dots::after {
  content: '';
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.user-overlay {
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  min-height: 250px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  backdrop-filter: blur(2px);
}

.user-link,
.user-avatar-link {
  cursor: pointer;
}

.user-link:hover {
  text-decoration: underline;
}

.text-reel {
  position: absolute;
  bottom: 45px;
  left: 20px;
  right: 80px;
  font-size: 15px;
  line-height: 20px;
  word-wrap: break-word !important;
  word-break: break-word !important;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .comment-container {
  background-color: #303030;
}

.comment-container {
  position: absolute;
  width: 420px;
  right: 0;
  top: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  overflow-y: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
  .comment-container.show {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%) !important;
    z-index: 999;
  }
}

@media (max-width: 1499px) {
  .comment-container {
    width: 100%;
    height: 70%;
    bottom: 0;
    top: auto;
  }
}

.comment-container.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(102%);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

[data-bs-theme=dark] .comment-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.comment-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-icon {
  color: #667eea;
}

.comment-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: inherit;
}

.comment-close-btn {
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.comment-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

[data-bs-theme=dark] .comment-close-btn {
  background: rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .comment-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.comment-content {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  padding: 20px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.comment-content::-webkit-scrollbar {
  width: 6px;
}

.comment-content::-webkit-scrollbar-track {
  background: transparent;
}

.comment-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.comment-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

[data-bs-theme=dark] .comment-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}

[data-bs-theme=dark] .comment-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.wrap-container-replies-reel {
  margin-left: calc(40px + 15px);
}

.preloader-reel {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  padding: 20px 24px;
  overflow: hidden;
}

.skeleton-loader {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skeleton-comment {
  display: flex;
  gap: 12px;
  animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-bs-theme=dark] .skeleton-avatar {
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
  background-size: 200% 100%;
}

.skeleton-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

[data-bs-theme=dark] .skeleton-line {
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
  background-size: 200% 100%;
}

.skeleton-name {
  width: 30%;
  height: 14px;
}

.skeleton-text-1 {
  width: 85%;
}

.skeleton-text-2 {
  width: 60%;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.type-reel {
  color: #fff;
  font-size: 12px;
  margin-top: 4px;
}

/* Video thumbnail */
.video-thumbnail {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumbnail:hover .thumbnail-overlay,
.thumbnail-overlay.show {
  opacity: 1 !important;
}

.thumbnail-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.thumbnail-play {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 16px;
  color: white;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.thumbnail-play:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.duration-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.thumbnail-user {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  max-width: 65%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.img-blurred {
  filter: blur(25px);
}

/* Modern Reels Page Styles */
.reels-page {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  min-height: 100vh;
  overflow: hidden;
}

/* Enhanced Video Container */
@media (min-width: 768px) {
  .video-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
  }
}

/* Modern Action Buttons Layout */
.action-buttons {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 16px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Comment Container */
[data-bs-theme=dark] .comment-container {
  background: rgba(30, 30, 30, 0.95);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Modern Typography */
.comment-title {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced User Info */
.user-info {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Modern Progress Bar */
.progress-container-reels {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced Thumbnails */
.video-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.video-thumbnail:hover::before {
  transform: translateX(100%);
}

/* Modern Scrollbar for Comments */
.comment-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
  .action-buttons {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 12px 6px;
  }
  
  .user-info {
    padding: 8px 12px;
    border-radius: 20px;
  }
  
  .video-controls {
    padding: 8px 12px;
    border-radius: 12px;
  }
}

/* Loading States */
.video-thumbnail.loading {
  animation: pulse 2s infinite;
}

/* Enhanced Hover Effects */
.thumbnail-overlay {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Modern Focus States */
.action-button:focus,
.control-button:focus,
.nav-button:focus {
  outline: 2px solid rgba(102, 126, 234, 0.5);
  outline-offset: 2px;
}

/* Enhanced Glass Morphism */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Animations */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.comment-container.show {
  animation: slideInUp 0.3s ease-out;
}

/* Enhanced Typography */
.action-count {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  letter-spacing: -0.02em;
}

/* Modern Gradients */
.gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-secondary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modern Dark Theme Enhancements */
[data-bs-theme=dark] .glass-effect {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .action-button {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme=dark] .control-button {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}