/* 
MARK: Root variable 
*/
:root {
  --background: hsl(0 0% 100%);
  --foreground: hsl(224 71.4% 4.1%);
  --card: hsl(0 0% 100%);
  --card-foreground: hsl(24 71.4% 4.1%);
  --popover: hsl(0 0% 100%);
  --popover-foreground: hsl(224 71.4% 4.1%);
  --primary: hsl(262.1 83.3% 57.8%);
  --primary-foreground: hsl(210 20% 98%);
  --secondary: hsl(220 14.3% 95.9%);
  --secondary-foreground: hsl(220.9 39.3% 11%);
  --muted: hsl(220 14.3% 95.9%);
  --muted-foreground: hsl(220 8.9% 46.1%);
  --accent: hsl(220 14.3% 95.9%);
  --accent-foreground: hsl(220.9 39.3% 11%);
  --destructive: hsl(0 84.2% 60.2%);
  --destructive-foreground: hsl(210 20% 98%);
  --border: hsl(220 13% 91%);
  --input: hsl(220 13% 91%);
  --ring: hsl(262.1 83.3% 57.8%);
  --radius: 1rem;
}

.dark {
  --background: hsl(224 71.4% 4.1%);
  --foreground: hsl(210 20% 98%);
  --card: hsl(224 71.4% 4.1%);
  --card-foreground: hsl(210 20% 98%);
  --popover: hsl(224 71.4% 4.1%);
  --popover-foreground: hsl(210 20% 98%);
  --primary: hsl(263.4 70% 50.4%);
  --primary-foreground: hsl(210 20% 98%);
  --secondary: hsl(215 27.9% 16.9%);
  --secondary-foreground: hsl(210 20% 98%);
  --muted: hsl(215 27.9% 16.9%);
  --muted-foreground: hsl(217.9 10.6% 64.9%);
  --accent: hsl(215 27.9% 16.9%);
  --accent-foreground: hsl(210 20% 98%);
  --destructive: hsl(0 62.8% 30.6%);
  --destructive-foreground: hsl(210 20% 98%);
  --border: hsl(215 27.9% 16.9%);
  --input: hsl(215 27.9% 16.9%);
  --ring: hsl(263.4 70% 50.4%);
}

html {
  width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-foreground) var(--primary-foreground);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--primary-foreground);
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border: 3px solid var(--primary-foreground);
  border-radius: 10px;
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: var(--primary-foreground);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  min-height: 80vh;
}

/* 
MARK: Navbar styles
*/
.navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 12rem;
  background-color: var(--background);
  color: var(--secondary-foreground);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.logo-navbar a {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--primary);
  align-items: center;
  display: flex;
  text-decoration: none;
  gap: 0.5rem;
}

.logo-ticket {
  display: inline-block;
  height: 2.75rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3rem;
}

.nav-link {
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--muted-foreground);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--secondary-foreground);
}

.nav-link.active {
  color: var(--secondary-foreground);
  font-weight: bold;
}

.nav-links-2 {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}

.nav-icon {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.dropdown {
  position: relative;
}

.dropdown-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: var(--background);
  border: 1px solid var(--muted-foreground);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  min-width: 160px;
  margin-top: 0.5rem;
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
}

.dropdown-content hr {
  width: 85%;
  color: var(--muted-foreground);
  margin-top: 0;
  margin-bottom: 0;
}

.dropdown-content a:hover {
  background-color: #d7dbdd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--secondary-foreground);
  transition: all 0.3s ease;
}

.mobile-navbar {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  flex-direction: column;
  z-index: 2000;
  padding: 1rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-navbar.active {
  transform: translateX(0);
}

.mobile-navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--muted-foreground);
  position: relative;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--secondary-foreground);
  padding: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.mobile-close-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.mobile-nav-links li {
  margin-bottom: 1.25rem;
}

.mobile-nav-links .nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1.15rem;
  transition: color 0.2s;
}

.mobile-nav-links .nav-link:hover {
  color: var(--primary, #007bff);
}

.mobile-nav-links hr {
  border: 0;
  height: 1px;
  background-color: var(--muted-foreground);
  opacity: 0.5;
  margin: 1.5rem 0;
}

.nav-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

@media (max-width: 1350px) {
  .navbar {
    padding: 0.15rem 8rem;
  }
}

@media (max-width: 1100px) {
  .navbar {
    padding: 0.15rem 4rem;
  }

  .nav-links {
    gap: 2rem;
  }

  .nav-link {
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.15rem 2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }

  .navbar-section:nth-child(2),
  .navbar-section:nth-child(3) {
    display: none;
  }

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

  .navbar {
    justify-content: space-between;
  }

  .logo-navbar a {
    font-size: 1.5rem;
  }

  .logo-ticket {
    height: 2.5rem;
  }

  .mobile-navbar {
    display: flex;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0.75rem;
  }

  .logo-navbar a {
    font-size: 1.45rem;
  }

  .logo-ticket {
    height: 2.2rem;
  }
}

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

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

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

/* Prevent scrolling when mobile menu is open */
body .menu-open {
  overflow: hidden;
}

/* Cart count badge styles */
.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ff4444;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10;
}

#nav-shopping-cart,
#mobile-nav-cart {
  position: relative;
}

@media (max-width: 768px) {
  .mobile-nav-links .cart-count-badge {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* End of navbar Styles */

/* 
MARK: Footer styles
*/
.footer {
  background-color: var(--foreground);
  color: var(--muted-foreground);
  padding: 5rem 12rem;
  font-family: sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.logo-footer a {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-footer {
  display: inline-block;
  height: 2.75rem;
}

.footer-section p {
  margin-top: 0.75rem;
  line-height: 1.6;
  font-size: 1.2rem;
  color: var(--muted-foreground);
}

.footer-section h3 {
  color: var(--background);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  color: var(--muted-foreground);
}

.footer-section li:hover {
  color: var(--accent);
  cursor: pointer;
}
/*Breakpoints */
@media (max-width: 768px) {
  .footer {
    padding: 5rem 8rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 375px) and (max-width: 599px) {
  .footer {
    padding: 4rem 5rem;
  }
}

@media (max-width: 374px) {
  .footer {
    padding: 2rem 1rem;
  }
}
/* End of footer Styles */

/* 
MARK: Event section 
*/
.events-section {
  padding: 40px 20px;
  margin: 0 auto;
  max-width: clamp(300px, 90vw, 1200px);
}

.event-section-title {
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 600;
  margin-bottom: 24px;
  text-decoration: underline;
  color: #333;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* 
MARK: Event cards
*/
.event-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 350px;
}

.event-card:hover {
  background-color: #f5f5f5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.event-card .event-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-card .bookmark-container {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.event-card .bookmark-container img {
  width: 16px;
  height: 16px;
}

.event-card .event-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-card .event-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 47px;
}

.event-card .event-category {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.event-card .event-info {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 4.6rem);
  border-top: 1px solid #eee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.event-card .event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  min-width: clamp(40px, 10%, 60px);
}

.event-card .month-label {
  font-size: 22px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
}

.event-card .date-number {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  line-height: 1.1;
}

.location-time {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.event-card .location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-card .location img,
.event-card .time img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.event-card .time {
  font-size: 14px;
  color: #666;
}

.event-card .price-section {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-card .price {
  font-weight: bold;
  color: #000;
  font-size: 18px;
}

.event-card .view-details {
  color: var(--primary);
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.event-card .view-details .arrow {
  margin-left: 5px;
  height: 14px;
  width: 14px;
}

@media (max-width: 1268px) {
  .events-grid {
    gap: 20px;
  }

  .events-section {
    padding: 40px 10px;
  }

  .event-card .event-info {
    gap: 1.5rem;
    padding: 15px 0;
  }

  .event-card .bookmark-container {
    width: 27px;
    height: 27px;
  }
  
  .event-card .bookmark-container img {
    width: 15px;
    height: 15px;
  }

  .event-card .month-label,
  .event-card .date-number {
    font-size: 20px;
  }

  .event-card .price {
    font-size: 16px;
  }

  .event-card .view-details {
    font-size: 14px;
  }

  .event-card .view-details .arrow {
    height: 12px;
    width: 12px;
  }
}

@media (max-width: 992px) {
  .events-section {
    padding: 30px 15px;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .event-card .event-details {
    padding: 16px;
  }

  .event-card .event-image {
    height: 170px;
  }

  .event-card .event-info {
    gap: 1rem;
    padding: 12px 0;
  }
}

@media (max-width: 600px) {
  .events-section {
    padding: 25px 2px;
  }

  .event-card .event-image {
    height: 160px;
  }

  .event-card .month-label,
  .event-card .date-number {
    font-size: 18px;
  }

  .event-card .location,
  .event-card .time {
    display: inline-block;
    font-size: 12px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .event-card .location img,
  .event-card .time img {
    width: 13px;
    height: 13px;
  }

  .event-card .price {
    font-size: 16px;
  }

  .event-card .view-details {
    font-size: 14px;
  }

  .event-card .view-details .arrow {
    height: 13px;
    width: 13px;
  }
}

@media (max-width: 480px) {
  .events-section {
    padding: 30px 0px;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .event-card {
    border-radius: 12px;
  }

  .event-card .event-image {
    height: 120px;
  }  

  .event-card .bookmark-container {
    width: 25px;
    height: 25px;
  }

  .event-card .bookmark-container img {
    width: 14px;
    height: 14px;
  }

  .event-card .event-details {
    padding: 12px 5px;
  }

  .event-card .event-title {
    font-size: 15px;
    margin-bottom: 4px;
    max-height: 40px;
  }

  .event-card .event-category {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .event-card .event-info {
    padding: 10px 0;
    gap: 8px;
  }

  .event-card .event-date {
    min-width: 40px;
  }

  .event-card .month-label,
  .event-card .date-number {
    font-size: 15px;
  }

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

  .event-card .location img,
  .event-card .time img {
    width: 12px;
    height: 12px;
  }

  .event-card .price-section {
    padding-top: 10px;
  }

  .event-card .price {
    font-size: 14px;
  }

  .event-card .view-details {
    font-size: 12px;
  }

  .event-card .view-details .arrow {
    height: 9px;
    width: 9px;
    margin-left: 2px;
  }
}

@media (max-width: 380px) {
  .events-section {
    padding: 24px 0px;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .event-card {
    border-radius: 10px;
  }

  .event-card .event-image {
    height: 100px;
  }

  .event-card .bookmark-container {
    top: 6px;
    right: 6px;
    width: 23px;
    height: 23px;
  }

  .event-card .bookmark-container img {
    width: 12px;
    height: 12px;
  }

  .event-card .event-details {
    padding: 10px 8px;
  }

  .event-card .event-title {
    font-size: 13px;
    margin-bottom: 2px;
    max-height: 36px;
  }

  .event-card .event-category {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .event-card .event-info {
    gap: 6px;
    padding: 8px 0;
  }

  .event-card .month-label,
  .event-card .date-number {
    font-size: 14px;
  }

  .event-card .location,
  .event-card .time {
    font-size: 10px;
  }

  .event-card .location img,
  .event-card .time img {
    width: 12px;
    height: 12px;
  }

  .event-card .price {
    font-size: 11px;
  }

  .event-card .view-details {
    font-size: 10px;
  }

  .event-card .view-details .arrow {
    height: 9px;
    width: 9px;
  }
}

/* 
MARK: Skeleton loader
*/
.skeleton {
  background: #f0f0f0;
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: shine 1.5s infinite linear;
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

.skeleton-image {
  width: 100%;
  height: 200px;
  position: relative;
}

.skeleton-details {
  padding: 20px;
}

.skeleton-title {
  height: 24px;
  width: 70%;
  margin-bottom: 8px;
  border-radius: 4px;
}

.skeleton-category {
  height: 16px;
  width: 40%;
  margin-bottom: 16px;
  border-radius: 4px;
}

.skeleton-info {
  display: flex;
  align-items: flex-start;
  gap: 4.6rem;
  border-top: 1px solid #eee;
  padding-top: 20px;
  padding-bottom: 20px;
}

.skeleton-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 60px;
}

.skeleton-month {
  height: 22px;
  width: 40px;
  border-radius: 4px;
}

.skeleton-day {
  height: 22px;
  width: 30px;
  border-radius: 4px;
}

.skeleton-location-time {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.skeleton-location {
  height: 16px;
  width: 80%;
  border-radius: 4px;
}

.skeleton-time {
  height: 16px;
  width: 60%;
  border-radius: 4px;
}

.skeleton-price-section {
  margin-top: 5px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skeleton-price {
  height: 20px;
  width: 40%;
  border-radius: 4px;
}

.skeleton-view {
  height: 20px;
  width: 35%;
  border-radius: 4px;
}

@media (max-width: 480px) {
  .skeleton-image {
    height: 140px;
  }

  .skeleton-details {
    padding: 14px;
  }

  .skeleton-title {
    height: 20px;
  }

  .skeleton-category {
    height: 14px;
    margin-bottom: 12px;
  }

  .skeleton-info {
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 0.4rem;
  }

  .skeleton-month,
  .skeleton-day {
    height: 18px;
  }

  .skeleton-location,
  .skeleton-time {
    height: 14px;
  }
}

@media (max-width: 375px) {
  .skeleton-image {
    height: 120px;
  }

  .skeleton-details {
    padding: 12px;
  }

  .skeleton-title {
    height: 18px;
  }

  .skeleton-category {
    height: 12px;
    margin-bottom: 10px;
  }

  .skeleton-month,
  .skeleton-day {
    height: 16px;
  }
}

/* 
MARK: Fetch state styles
*/
.empty-state,
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12rem 2rem;
  text-align: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.empty-state {
  border: 2px dashed #e1e8ed;
}

.error-state {
  border: 2px dashed #fadbd8;
}

.empty-state-icon,
.error-state-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.empty-state h3,
.error-state h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  z-index: 2;
  position: relative;
}

.empty-state h3 {
  color: #2d3748;
}

.error-state h3 {
  color: #d63031;
}

.empty-state p,
.error-state p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 400px;
  z-index: 2;
  position: relative;
}

.empty-state p {
  color: #718096;
}

.error-state p {
  color: #636e72;
}

.empty-state-action,
.error-state-action {
  color: white;
  border: none;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.empty-state-action {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
}

.error-state-action {
  background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
  box-shadow: 0 8px 15px rgba(232, 67, 147, 0.3);
}

.empty-state-action:hover {
  transform: translateY(-2px);
  color: #2d3748;
  background: white;
  box-shadow: 0 12px 20px rgba(102, 126, 234, 0.4);
}

.error-state-action:hover {
  transform: translateY(-2px);
  color: #d63031;
  background: white;
  box-shadow: 0 12px 20px rgba(232, 67, 147, 0.4);
}

@media (max-width: 768px) {
  .empty-state-icon,
  .error-state-icon {
      width: 72px;
      height: 72px;
  }
  
  .empty-state h3,
  .error-state h3 {
      font-size: 1.5rem;
  }
  
  .empty-state,
  .error-state {
      min-height: 300px;
      padding: 3rem 1.5rem;
  }
}