.card-blur {
  filter: blur(4px);
  opacity: 0.7;
  pointer-events: none;
}

:root {
  --color-bg-dark: #493628;
  --color-card: #F5EBE0;
  --color-card-border: #D6CCC2;
  --color-title: #F5EBE0;
  --color-desc: #b8a89b;
  --color-main: #D5BDAF;
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-bg-dark);
  font-family: 'Quicksand', Arial, sans-serif;
  color: var(--color-title);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-icons {
  position: fixed;
  top: 48px;
  right: 36px;
  display: flex;
  gap: 1.2rem;
  z-index: 100;
}

.central-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  width: 100vw;
  margin: 0 auto;
  padding: 3.5rem 1.2rem 3.5rem 1.2rem;
  min-height: 100vh;
}

.header-title {
  font-size: 2.2rem;
  color: var(--color-title);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  justify-items: center;
}

.card {
  background: transparent;
  border-radius: 1.1rem;
  box-shadow: 0 6px 22px rgba(80,60,40,0.10);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 260px;
  min-height: 230px;
  padding: 1.1rem 1.2rem 1.2rem 1.2rem;
  margin: 0 auto;
  transition: box-shadow 0.18s, transform 0.16s;
  position: relative;
  backdrop-filter: blur(8px);
  color: #fff;
}

.card-desc,
.card-btn {
  color: #fff !important;
}

.badge {
  color: #493628 !important;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(80,60,40,0.18);
  transform: translateY(-3px) scale(1.025);
  border-color: var(--color-main);
}

.card-image-large {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.7rem;
  border: none;
  background: var(--color-main);
  box-shadow: 0 2px 10px rgba(80,60,40,0.07);
}

.card-title {
  font-size: 1.12rem;
  font-weight: bold;
  color: #F5EBE0;
  margin-bottom: 0.2rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.badge {
  display: inline-block;
  background: #eee5db;
  color: #493628;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 0.1rem 0.6rem;
  margin-bottom: 0.4rem;
  margin-top: 0.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 3px rgba(80,60,40,0.07);
}

.card-desc {
  font-size: .875rem;
  color: #7a6a5c;
  text-align: center;
  line-height: 1.35;
  margin-bottom: 0.8rem;
}

.card-btn {
  background: rgba(245, 235, 224, 0.13);
  color: #f5ebe0;
  border: 2px solid #d5bdaf;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.45rem 1.5rem;
  margin-top: auto;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(80,60,40,0.08);
  letter-spacing: 0.5px;
}

.card-btn:hover {
  background: #d5bdaf;
  color: #493628;
  border-color: #f5ebe0;
  box-shadow: 0 4px 16px rgba(80,60,40,0.18);
  transform: translateY(-2px) scale(1.04);
}

.header-title {
  font-size: 2.2rem;
  color: var(--color-title);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-align: center;
}

.header-subtitle {
  font-size: 1.1rem;
  color: var(--color-desc);
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 2.3rem;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem 4rem;
  width: 100%;
  max-width: 600px;
  margin: 3.5rem auto 0 auto;
  justify-items: center;
}

@media (max-width: 700px) {
  .central-column {
    max-width: 98vw;
    padding: 1.5rem 0.3rem 1.5rem 0.3rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    max-width: 95vw;
  }
  .card {
    max-width: 98vw;
    padding: 0.8rem 0.4rem 0.8rem 0.4rem;
    min-height: 180px;
  }
  .header-title {
    font-size: 1.3rem;
  }
}
