.rewards-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
}

.rewards-container {
  max-width: 1000px;
  margin: 0 auto;
}

.rewards-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 20px 0;
}

.rewards-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a69bd, #6c5ce7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(74, 105, 189, 0.3);
}

.rewards-icon i {
  color: white;
  font-size: 36px;
}

.rewards-title {
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.rewards-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 400;
}

.rewards-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.rewards-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a69bd, #6c5ce7);
}

.mastercard-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.card-visual {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 16px;
  padding: 30px;
  color: white;
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mastercard-logo {
  display: flex;
  align-items: center;
  gap: -8px;
}

.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 0.9;
}

.circle.red {
  background: #eb001b;
  z-index: 2;
}

.circle.yellow {
  background: #ff5f00;
  margin-left: -15px;
  z-index: 1;
}

.card-brand {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.card-name {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.card-info {
  max-width: 500px;
}

.section-title {
  font-size: 1.8rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
}

.cta-button {
  background: linear-gradient(135deg, #4a69bd, #6c5ce7);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(74, 105, 189, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 105, 189, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.benefits-preview {
  border-top: 1px solid #e9ecef;
  padding-top: 30px;
}

.preview-title {
  font-size: 1.4rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.benefit-item i {
  color: #4a69bd;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.benefit-item span {
  color: #495057;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .rewards-page {
    padding: 10px;
  }
  
  .rewards-content {
    padding: 20px;
  }
  
  .mastercard-section {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .card-visual {
    margin: 0 auto;
    max-width: 280px;
  }
  
  .rewards-title {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .rewards-icon {
    width: 60px;
    height: 60px;
  }
  
  .rewards-icon i {
    font-size: 28px;
  }
  
  .rewards-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
}