main#MainContent {
    background: linear-gradient(135deg, #060606 0%, #1a1a1a 100%);
    padding-bottom: 20px;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.coupon-card {
  aspect-ratio: 13 / 6;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgb(255 221 28 / 24%), 0 1px 3px rgba(0, 0, 0, 0.05);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.coupon-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.1);
}

/* Background Gradients for separate classes */
.coupon-card.bf-free-shipping {
  background: linear-gradient(135deg, #181818 0%, #454545 100%);
}
.coupon-card.bf-12-off {
  background: linear-gradient(135deg, #454545 0%, #000000 100%);
}
.coupon-card.bf-14-off {
  background: linear-gradient(135deg, #454545 0%, #000000 100%);
}
.coupon-card.bf-20-off {
  background: linear-gradient(135deg, #454545 0%, #716725 100%);
}

/* Chip Effect */
.coupon-card::before {
  content: '';
  position: absolute;
  background: linear-gradient(135deg, #d4af37, #ffd700);
  width: 50px;
  height: 40px;
  left: 30px;
  top: 75px;
  border-radius: 8px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}
.coupon-card::after {
  content: '';
  position: absolute;
  background: url('https://www.svgrepo.com/show/339037/chip-debit.svg');
  width: 50px;
  height: 40px;
  left: 30px;
  top: 75px;
  border-radius: 8px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
}

/* Image Container */
.card-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 120px;
  background-position: left;
  background-repeat: no-repeat;
  border-radius: 500px 0 0 0;
  border: 0;
  box-shadow: none;
  opacity: 1;
  background: #fff !important;
  opacity: 0.1;
}

/* Card Content */
.card-header {
  min-height: 40px;
}

.card-header h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
  margin: 0;
  color: #ffffff;
}

.card-body {
  text-align: left;
  z-index: 1;
}

.offer-text {
  font-size: 36px;
  font-weight: 700;
  margin: -20px 0 11px 65px;
  line-height: 1.1;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
  color: #fff;
}

.description {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
  max-width: 80%;
}

.card-footer {
  margin-top: 10px;
}

.coupon-code {
  background: rgb(255 167 0 / 36%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 8px 8px 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(5px);
}

.coupon-code span {
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  user-select: all;
}

.copy-btn {
  background: white;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 8px 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.copy-btn:hover {
  background: #f0f0f0;
}

.copy-btn.copied {
  background: #28a745;
  color: white;
}

/* Banner Styles */
.bf-banner {
  width: 100%;
  min-height: 190px;
  background: linear-gradient(135deg, #ffb70066 -13%, #000000 100%);
  color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 0 36px 0;
  position: relative;
  text-align: center;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  box-shadow: 0 2px 24px rgba(140, 104, 16, 0.35);
  border-radius: 0 0 28px 28px;
}
.banner-content {
  max-width: 100%;
  margin: auto;
}
.banner-icon {
  margin-bottom: 16px;
}
.bf-banner h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #ffd700;
  text-shadow: 0 1px 8px rgba(80,60,0,0.20);
}
.bf-banner p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffd700;
  opacity: 0.88;
  margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(80,60,0,0.15);
}

/* Responsive */
@media (max-width: 700px) {
  .coupon-grid {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }
  .bf-banner h1 { font-size: 1.65rem; }
  .bf-banner p { font-size: 1rem; }
  .banner-icon svg { width: 38px; height: 38px; }
}
.desktop-banner-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

.mobile-banner-image {
  display: none;
  max-width: 100%;
  height: auto;
  margin: 0 auto 16px;
}

@media (max-width: 700px) {
  .desktop-banner-image {
    display: none;
  }
  .mobile-banner-image {
    display: block;
  }
  .coupon-card {
    aspect-ratio: 13 / 9;
}
  .bf-banner {
    padding: 10px;
}
}
