@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #7f5af0;
  --primary-light: #9d79ff;
  --primary-dark: #6941c6;
  --secondary: #72757e;
  --success: #2cb67d;
  --error: #ef4444;
  --warning: #ff8906;
  --background: #16161a;
  --card-bg: #242629;
  --card-bg-alt: #2e2f35;
  --text-primary: #fffffe;
  --text-secondary: #94a1b2;
  --border: #383a42;
  --accent-1: #2cb67d;
  --accent-2: #7f5af0;
  --accent-3: #ff8906;
  --accent-4: #e53170;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  --gradient-1: linear-gradient(135deg, #7f5af0, #6b46e5);
  --gradient-2: linear-gradient(135deg, #2cb67d, #22a06b);
  --gradient-3: linear-gradient(135deg, #ff8906, #e57b07);
  --glass: rgba(36, 38, 41, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  position: relative;
}

.sidebar {
  background-color: var(--card-bg);
  border-right: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.sidebar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(127, 90, 240, 0.05) 0%,
    transparent 50%
  );
  z-index: -1;
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.logo-icon {
  position: relative;
  width: 38px;
  height: 38px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(127, 90, 240, 0.5);
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-1);
  border-radius: 14px;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.6;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-section {
  margin-bottom: 1.5rem;
}

.nav-section-title {
  color: var(--text-secondary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}

.nav-item:hover {
  color: var(--text-primary);
  background: var(--card-bg-alt);
}

.nav-item.active {
  color: var(--text-primary);
  background: var(--primary);
  font-weight: 500;
}

.nav-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-100%);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  width: 28px;
}

.main-content {
  padding: 2rem;
  overflow-y: auto;
  background-color: var(--background);
  position: relative;
}

.background-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.05;
  z-index: 0;
}

.bg-glow-1 {
  top: -250px;
  right: -100px;
  background: var(--primary);
}

.bg-glow-2 {
  bottom: -200px;
  left: 30%;
  background: var(--success);
}

.bg-glow-3 {
  top: 40%;
  left: -200px;
  background: var(--warning);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.welcome-text h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    to right,
    var(--text-primary),
    var(--text-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 5s ease infinite;
  background-size: 200% 100%;
}

@keyframes textShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.welcome-text p {
  color: var(--text-secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-bar {
  position: relative;
}

.search-input {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  color: var(--text-primary);
  width: 220px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  width: 260px;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.notification-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.notification-btn:hover {
  background-color: var(--card-bg-alt);
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--error);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.profile:hover {
  background-color: var(--card-bg-alt);
}

.profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gradient-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.profile-avatar::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
}

.profile-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.profile-menu {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-5 {
  grid-column: span 5;
}

.grid-span-7 {
  grid-column: span 7;
}

.grid-span-8 {
  grid-column: span 8;
}

.grid-span-12 {
  grid-column: span 12;
}

.card {
  background-color: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.balance-card {
  padding: 0;
  position: relative;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 1.75rem;
}

.card-header-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.card-header-actions {
  display: flex;
  gap: 0.5rem;
}

.icon-button {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: var(--card-bg-alt);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-button:hover {
  background-color: var(--primary);
  color: white;
}

.balance-card-body {
  padding: 0 1.75rem 1.75rem;
}

.balance-card-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    to right,
    var(--text-primary),
    var(--text-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.balance-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: var(--gradient-1);
}

.credit-cards {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.credit-cards::-webkit-scrollbar {
  height: 6px;
}

.credit-cards::-webkit-scrollbar-track {
  background: transparent;
}

.credit-cards::-webkit-scrollbar-thumb {
  background-color: var(--border);
  border-radius: 10px;
}

.credit-card {
  min-width: 280px;
  height: 170px;
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card-platinum {
  background: var(--gradient-1);
}

.card-gold {
  background: var(--gradient-3);
}

.credit-card:hover {
  transform: scale(1.02);
}

.credit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
}

.card-chip {
  width: 45px;
  height: 35px;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.card-chip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.card-chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.card-type {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  opacity: 0.8;
}

.card-number {
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.card-name-expiry {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  opacity: 0.8;
}

.card-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.action-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background-color: var(--card-bg-alt);
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.action-btn-icon {
  font-size: 1.1rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.view-all {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}

.view-all:hover {
  opacity: 0.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stats-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.stats-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 0 0 16px 16px;
}

.income-card::after {
  background: var(--accent-1);
}

.expenses-card::after {
  background: var(--accent-4);
}

.savings-card::after {
  background: var(--accent-3);
}

.stats-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.income-icon {
  background-color: rgba(44, 182, 125, 0.15);
  color: var(--accent-1);
}

.expenses-icon {
  background-color: rgba(229, 49, 112, 0.15);
  color: var(--accent-4);
}

.savings-icon {
  background-color: rgba(255, 137, 6, 0.15);
  color: var(--accent-3);
}

.stats-value {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stats-change {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  margin-top: auto;
}

.positive-change {
  color: var(--accent-1);
}

.negative-change {
  color: var(--accent-4);
}

.transactions-list {
  padding: 1.5rem;
}

.transaction-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.transaction-item:last-child {
  border-bottom: none;
}

.transaction-item:hover {
  background-color: var(--card-bg-alt);
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

.transaction-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.transaction-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
}

.t-shopping {
  background-color: rgba(229, 49, 112, 0.15);
  color: var(--accent-4);
}

.t-subscription {
  background-color: rgba(255, 137, 6, 0.15);
  color: var(--accent-3);
}

.t-salary {
  background-color: rgba(44, 182, 125, 0.15);
  color: var(--accent-1);
}

.t-transfer {
  background-color: rgba(127, 90, 240, 0.15);
  color: var(--accent-2);
}

.transaction-details {
  flex-grow: 1;
}

.transaction-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.transaction-category {
  font-size: 0.6875rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  background-color: var(--card-bg-alt);
  color: var(--text-secondary);
}

.transaction-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.transaction-amount {
  font-weight: 700;
  font-size: 1.125rem;
}

.amount-negative {
  color: var(--accent-4);
}

.amount-positive {
  color: var(--accent-1);
}

.spending-chart {
  padding: 1.5rem;
}

.chart-filters {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.chart-filter {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  background-color: var(--card-bg-alt);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.chart-filter.active {
  background-color: var(--primary);
  color: white;
}

.chart-container {
  height: 250px;
  position: relative;
  margin-bottom: 1rem;
}

.chart-bars {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 30px;
}

.chart-bar {
  width: 8px;
  background: var(--primary);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chart-bar:hover {
  background: var(--primary-light);
  transform: scaleY(1.05);
}

.chart-bar::before {
  content: attr(data-value);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--card-bg-alt);
  color: var(--text-primary);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.chart-bar:hover::before {
  opacity: 1;
  top: -30px;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 40px;
}

.chart-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
}

.chart-reference-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.reference-line {
  width: 100%;
  height: 1px;
  background-color: var(--border);
  position: relative;
}

.reference-line::before {
  content: attr(data-value);
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.upcoming-bills {
  padding: 1.5rem;
}

.bills-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bill-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background-color: var(--card-bg-alt);
  transition: all 0.3s ease;
  cursor: pointer;
}

.bill-item:hover {
  transform: translateX(5px);
}

.bill-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
  color: white;
}

.bill-details {
  flex-grow: 1;
}

.bill-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.bill-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.bill-amount {
  font-weight: 700;
}

.bill-auto {
  font-size: 0.6875rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  background-color: rgba(44, 182, 125, 0.15);
  color: var(--accent-1);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.5rem;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: var(--card-bg-alt);
  padding: 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.quick-action:hover {
  transform: translateY(-5px);
  background-color: rgba(127, 90, 240, 0.1);
}

.action-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  position: relative;
}

.action-icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.3;
  z-index: -1;
  filter: blur(4px);
}

.action-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.action-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.footer-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.primary-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background-color: var(--primary);
  color: white;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: var(--primary);
  color: white;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 0 20px rgba(127, 90, 240, 0.5);
}

@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(8, 1fr);
  }

  .grid-span-4,
  .grid-span-5,
  .grid-span-7,
  .grid-span-8 {
    grid-column: span 8;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dashboard {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: slideIn 0.3s ease;
  }

  @keyframes slideIn {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .search-input {
    width: 100%;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

/* Glass effect elements */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
