.main {
  min-height: 100vh;
  background: var(--primary-bg);
  color: var(--text-main);
  padding-bottom: 4rem;
}

.heroSection {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 4rem;
}

.heroGlow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.heroContent {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.title {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 1rem 0;
  letter-spacing: -1px;
}

.gradientText {
  background: linear-gradient(135deg, #a78bfa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.statsContainer {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.statBox {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  text-align: left;
  min-width: 200px;
}

.statLabel {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.statValue {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-header);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sectionHeader {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.sectionTitle {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-header);
  margin: 0;
  white-space: nowrap;
}

.sectionLine {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.card:active {
  transform: translateY(-2px) scale(0.98);
}

.cardImageContainer {
  position: relative;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cardImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.card:hover .cardImage {
  transform: scale(1.05);
}

.pointBadge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cardContent {
  padding: 1.5rem;
}

.cardCategory {
  font-size: 0.75rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cardTitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-header);
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
}

.cardFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cashPrice {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.redeemBtn {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.redeemBtn:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.redeemBtn:active {
  transform: scale(0.95);
}

.loadingContainer, .emptyState {
  text-align: center;
  padding: 5rem 0;
  color: var(--text-muted);
}

.emptyState h3 {
  color: var(--text-header);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem 0;
}

.loader {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-top-color: var(--accent-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem auto;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--secondary-bg);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
  z-index: 100;
  max-width: 400px;
}

.toastIcon {
  color: #a78bfa;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  .statsContainer {
    flex-direction: column;
    width: 100%;
  }
}
