/* Neon Deals Grid Layout */
.radm-neon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
  margin: 40px 0;
}

/* Neon Card – strong BLUE glow */
.radm-neon-card {
  position: relative;
  background: radial-gradient(circle at top left, #071523 0%, #020611 55%, #000000 100%);
  border-radius: 20px;
  padding: 22px 20px 20px;
  color: #ffffff;
  border: 1px solid rgba(0, 160, 255, 0.8);
  box-shadow:
    0 0 20px rgba(0, 160, 255, 0.7),
    0 18px 35px rgba(0, 0, 0, 0.85);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.radm-neon-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(0, 190, 255, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 90, 255, 0.25), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.radm-neon-card--highlight {
  border-color: rgba(0, 210, 255, 1);
  box-shadow:
    0 0 26px rgba(0, 210, 255, 0.9),
    0 22px 40px rgba(0, 0, 0, 0.95);
}

/* Card hover – lift + stronger blue glow */
.radm-neon-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 28px rgba(0, 176, 255, 0.95),
    0 26px 50px rgba(0, 0, 0, 1);
}

.radm-neon-card * {
  position: relative;
  z-index: 1;
}

/* Logo */
.radm-provider-logo {
  margin-bottom: 10px;
}
.radm-provider-logo img {
  max-height: 32px;
  width: auto;
}

/* Text */
.radm-deal-title {
  font-size: 1rem;
  margin: 4px 0 8px;
  font-weight: 600;
}

.radm-deal-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.radm-price-main {
  font-size: 1.6rem;
  font-weight: 700;
  color: #49d8ff;
}
.radm-price-sub {
  font-size: 0.8rem;
  opacity: 0.9;
}

.radm-deal-speed {
  font-size: 0.9rem;
  margin-bottom: 4px;
  opacity: 0.9;
}
.radm-deal-contract {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 12px;
}

/* View Deal button */
.radm-btn-neon {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(0, 35, 70, 0.85);
  color: #7ee5ff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #35d4ff;
  box-shadow:
    0 0 10px rgba(0, 200, 255, 0.7),
    0 6px 14px rgba(0, 0, 0, 0.75);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.radm-btn-neon:hover {
  background: #35d4ff;
  color: #00121f;
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(0, 210, 255, 1),
    0 10px 18px rgba(0, 0, 0, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
  .radm-neon-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
