:root {
  /* Colors */
  --primary-red: #D32F2F;
  --dark-red: #B71C1C;
  --light-red: #FFCDD2;
  --text-dark: #212121;
  --text-gray: #757575;
  --text-light: #BDBDBD;
  --bg-light: #FAFAFA;
  --bg-white: #FFFFFF;
  --border-color: #E0E0E0;

  /* Typography */
  --font-primary: 'Noto Sans Bengali', sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-red);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.header {
  background-color: var(--bg-white);
  border-bottom: 3px solid var(--primary-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-top {
  background-color: var(--primary-red);
  color: white;
  padding: var(--spacing-xs) 0;
  font-size: var(--font-size-small);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-date {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.header-main {
  padding: var(--spacing-md) 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo span {
  color: var(--text-dark);
}

.header-search {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.search-box {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  width: 250px;
}

.search-box input:focus {
  outline: none;
}

.search-box button {
  background-color: var(--primary-red);
  color: white;
  border: none;
  padding: var(--spacing-xs) var(--spacing-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.search-box button:hover {
  background-color: var(--dark-red);
}

/* Live TV Button */
/* Premium Live TV Button */
.live-tv-btn {
  background: linear-gradient(135deg, #FF0000 0%, #B71C1C 100%);
  color: white !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-tv-btn i {
  font-size: 16px;
  position: relative;
  z-index: 2;
}

.live-tv-btn span {
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Pulse Effect */
.live-tv-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  /* Adjust to icon position */
  width: 10px;
  height: 10px;
  background: #FFF;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-dot 1.5s infinite;
  z-index: 1;
  display: none;
  /* Hide standard pulse, use something better */
}

/* Dot Pulse Overlay */
.live-tv-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.live-tv-btn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
  background: linear-gradient(135deg, #CC0000 0%, #8E1616 100%);
  color: white !important;
}

.live-tv-btn:hover::after {
  transform: translateX(100%);
  transition: 0.5s;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Better Icon Pulse */
.live-tv-btn i {
  animation: tv-shake 3s ease-in-out infinite;
}

@keyframes tv-shake {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(1.2) rotate(-5deg);
  }

  30%,
  40% {
    transform: scale(1.2) rotate(5deg);
  }

  50% {
    transform: scale(1);
  }
}


@media (max-width: 480px) {
  .live-tv-btn span {
    display: none;
  }

  .live-tv-btn {
    padding: var(--spacing-xs) var(--spacing-sm);
  }
}

/* Navigation */
.nav {
  background-color: var(--text-dark);
  padding: 0;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-lg);
  color: white;
  font-weight: 500;
  transition: background-color var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
  background-color: var(--primary-red);
  color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}

/* Breaking News Ticker */
.breaking-news {
  background-color: var(--dark-red);
  color: white;
  padding: var(--spacing-sm) 0;
  overflow: hidden;
}

.breaking-news .container {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.breaking-label {
  background-color: white;
  color: var(--dark-red);
  padding: 4px 12px;
  font-weight: 700;
  border-radius: 3px;
  white-space: nowrap;
}

.breaking-content {
  flex: 1;
  overflow: hidden;
}

.breaking-ticker {
  display: flex;
  animation: ticker 10s linear infinite;
  gap: var(--spacing-xl);
  white-space: nowrap;
}

.breaking-ticker span {
  display: inline-block;
  white-space: nowrap;
}

.breaking-ticker:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Main Layout */
.main-content {
  padding: var(--spacing-xl) 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--spacing-xl);
}

/* News Card */
.news-card {
  background-color: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-image {
  position: relative;
  padding-top: 75%;
  /* 4:3 aspect ratio */
  overflow: hidden;
}

.news-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-category {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  background-color: var(--primary-red);
  color: white;
  padding: 4px 12px;
  font-size: var(--font-size-small);
  font-weight: 600;
  border-radius: 3px;
}

.news-card-content {
  padding: var(--spacing-md);
}

.news-card-title {
  font-size: var(--font-size-large);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.news-card-excerpt {
  font-size: var(--font-size-base);
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: var(--spacing-sm);
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-small);
  color: var(--text-light);
}

/* Featured News */
.featured-news {
  margin-bottom: var(--spacing-xl);
}

.featured-card {
  background-color: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.featured-card-image {
  position: relative;
  padding-top: 75%;
  /* 4:3 aspect ratio */
  overflow: hidden;
}

.featured-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-content {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card-category {
  display: inline-block;
  background-color: var(--primary-red);
  color: white;
  padding: 6px 16px;
  font-size: var(--font-size-small);
  font-weight: 600;
  border-radius: 3px;
  margin-bottom: var(--spacing-md);
  width: fit-content;
}

.featured-card-title {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

.featured-card-excerpt {
  font-size: var(--font-size-large);
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.featured-card-meta {
  font-size: var(--font-size-base);
  color: var(--text-light);
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--spacing-md));
}

.sidebar-section {
  background-color: var(--bg-white);
  border-radius: 4px;
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: var(--font-size-large);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 3px solid var(--primary-red);
  color: var(--text-dark);
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  display: block;
  font-size: var(--font-size-base);
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.sidebar-list a:hover {
  color: var(--primary-red);
}

.sidebar-news-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-news-item:last-child {
  border-bottom: none;
}

.sidebar-news-image {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.sidebar-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-news-content {
  flex: 1;
}

.sidebar-news-title {
  font-size: var(--font-size-small);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.sidebar-news-meta {
  font-size: 12px;
  color: var(--text-light);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-xxl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  font-size: var(--font-size-large);
  margin-bottom: var(--spacing-md);
  color: white;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: var(--font-size-small);
}

/* Responsive Design */
@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .header-main .container {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .nav {
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
  }

  .header-search {
    width: 100%;
    justify-content: space-between;
  }

  .search-box {
    flex: 1;
  }

  .search-box input {
    width: 100%;
    min-width: 0;
  }

  .featured-card-title {
    font-size: var(--font-size-xl);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-top .container {
    flex-direction: row;
    justify-content: space-between;
    gap: var(--spacing-xs);
    font-size: 12px;
    /* Reduce size to fit on one line */
  }

  .logo {
    font-size: var(--font-size-xl);
  }



  .featured-card-content {
    padding: var(--spacing-lg);
  }

  /* Faster ticker on mobile */
  .breaking-ticker {
    animation-duration: 5s;
  }

  .featured-card-title {
    font-size: var(--font-size-large);
  }
}

/* Skeleton Loader */
.skeleton {
  background: #e0e0e0;
  background-image: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton-image {
  width: 100%;
  padding-top: 75%;
  /* 4:3 Aspect Ratio */
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
  width: 100%;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.skeleton-content {
  padding: 16px;
}

.loading {
  text-align: center;
  padding: var(--spacing-xxl);
}

.spinner {
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-red);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.pagination button {
  padding: var(--spacing-xs) var(--spacing-md);
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 4px;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
}

.pagination button:hover:not(:disabled) {
  background-color: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


/* Toast Notifications */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: white;
  min-width: 300px;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 4px solid #333;
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  font-size: 20px;
}

.toast-message {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}

/* Toast Variants */
.toast.success {
  border-left-color: #4CAF50;
}

.toast.success .toast-icon {
  color: #4CAF50;
}

.toast.error {
  border-left-color: var(--primary-red);
}

.toast.error .toast-icon {
  color: var(--primary-red);
}

.toast.info {
  border-left-color: #2196F3;
}

.toast.info .toast-icon {
  color: #2196F3;
}

/* Mobile Toast */
@media (max-width: 480px) {
  #toast-container {
    left: 20px;
    right: 20px;
    top: 20px;
    width: auto;
  }

  .toast {
    min-width: 0;
    width: 100%;
  }
}

/* Footer Social Icons */
.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #333;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icon.youtube:hover {
  background: #FF0000;
  border-color: #FF0000;
}

.social-icon.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.social-icon.instagram:hover {
  background: #E4405F;
  border-color: #E4405F;
}

.social-icon.twitter:hover {
  background: #000000;
  border-color: #ffffff;
}

.social-icon.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

/* Article Page Mobile Navigation Override */
@media (max-width: 768px) {
  .article-page-body .header-search .menu-toggle {
    display: none !important;
  }

  .article-page-body .nav {
    display: block !important;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    max-width: 100%;
    width: 100%;
    margin-top: 5px;
  }

  .article-page-body .nav .container {
    padding: 0 var(--spacing-sm);
    width: 100%;
    max-width: 100%;
  }

  .article-page-body .nav-list {
    display: flex !important;
    gap: 10px;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding-bottom: 5px;
    justify-content: flex-start;
    align-items: center;
    -webkit-overflow-scrolling: touch;
  }

  .article-page-body .nav-list li {
    flex: 0 0 auto;
  }

  .article-page-body .nav-list a {
    display: inline-block;
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
    border: 1px solid #ddd;
    text-decoration: none;
    white-space: nowrap;
  }

  .article-page-body .nav-list a.active {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
  }
}

/* Ad Placements */
.ad-container {
  text-align: center;
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.ad-container a {
  display: inline-block;
  max-width: 100%;
}

.ad-header-top {
  margin: 10px 0;
}

.ad-home-middle {
  margin: 30px 0;
}

.ad-sidebar {
  margin-bottom: 25px;
}

.ad-article-top {
  min-height: 60px;
  width: 100%;
  max-width: 800px;
  /* Increased from 415px to allow centering in larger space */
  margin: 30px auto;
  display: flex;
  justify-content: center;
}

.ad-article-bottom {
  min-height: 50px;
  width: 100%;
  max-width: 800px;
  /* Increased from 420px */
  margin: 30px auto;
  display: flex;
  justify-content: center;
}

/* Popup Ad Styles */
.ad-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

.ad-popup-content {
  position: relative;
  width: auto;
  max-width: 90%;
  max-height: 90vh;
  background: transparent;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ad-popup-content img {
  max-width: 800px;
  max-height: 85vh;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.ad-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
  z-index: 1002;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-popup-close:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  transform: rotate(90deg);
}

.ad-popup-timer {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 1002;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.nav-list .skeleton-item {
  width: 100px;
  height: 20px;
  margin: 12px 10px;
  display: block;
  opacity: 0.3;
  border-radius: 4px;
}