/* style.css - IMO Recharge Dark Luxury Gold & Amber Gem Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Dark Gold & Black Luxury Theme Variables */
  --bg-dark: #0a0802;
  --bg-gradient: radial-gradient(circle at 50% 0%, #2e220a 0%, #171105 50%, #0a0802 100%);
  --surface-color: rgba(43, 33, 11, 0.78);
  --surface-hover: rgba(56, 44, 16, 0.88);
  --surface-border: rgba(234, 179, 8, 0.28);
  --surface-border-glow: rgba(234, 179, 8, 0.5);
  
  --text-primary: #fdfbed;
  --text-secondary: #fde047;
  --text-muted: #a1a1aa;
  
  --primary-color: #eab308; /* Royal Neon Gold */
  --primary-light: #fef08a;
  --primary-dark: #ca8a04;
  
  --ruby-red: #fbbf24; /* Glowing Amber Diamond Color */
  --ruby-red-light: #fcd34d;
  --ruby-red-dark: #d97706;
  --ruby-gradient: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
  
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 10px 30px rgba(234, 179, 8, 0.2);
  --shadow-ruby: 0 8px 30px rgba(251, 191, 36, 0.35);
  --shadow-modal: 0 25px 60px rgba(0, 0, 0, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  padding-bottom: 80px;
}

/* Background Glowing Orbs */
.bg-shape {
  position: fixed;
  filter: blur(100px);
  opacity: 0.45;
  animation: float 12s infinite alternate ease-in-out;
  z-index: -1;
  border-radius: 50%;
}
.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ca8a04 0%, #713f12 100%);
  top: -150px;
  left: -150px;
}
.shape-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #b45309 0%, #451a03 100%);
  bottom: -200px;
  right: -150px;
  animation-delay: -6s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.15); }
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Base App Layout */
.app-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  padding-bottom: 2rem;
}

/* Header */
.imo-header {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--surface-border);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-radius: 0 0 20px 20px;
  margin-bottom: 1.25rem;
}

.imo-header h1 {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #fef08a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
}

.header-refresh {
  position: absolute;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: rgba(168, 85, 247, 0.15);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.header-refresh:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: rotate(180deg);
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.5);
}

/* Section */
.section {
  padding: 0 1rem;
}

/* Cards & Inputs */
.imo-card {
  background: var(--surface-color);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-border);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.imo-card:hover {
  border-color: var(--surface-border-glow);
  box-shadow: var(--shadow-md);
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.imo-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid var(--surface-border);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
  background: rgba(13, 6, 28, 0.6);
  color: #ffffff;
  transition: all 0.25s ease;
}

.imo-input::placeholder {
  color: var(--text-muted);
}

.imo-input:focus {
  border-color: var(--primary-color);
  background: rgba(33, 24, 8, 0.9);
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.25);
}

.input-help-btn {
  position: absolute;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid var(--surface-border);
  color: var(--primary-light);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.input-help-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
}

.helper-text {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  margin-left: 0.5rem;
}

/* Credit Selection Grid */
.credit-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  padding-bottom: 0.75rem;
}

.credit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .credit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .credit-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 1024px) {
  .credit-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
  }
}

.credit-item {
  background: rgba(18, 12, 2, 0.65);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 0.75rem 0.25rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 0;
  word-wrap: break-word;
}

.credit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(33, 24, 8, 0.8);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.25);
}

/* Selected Package Highlight - Golden Amber Glow */
.credit-item.selected {
  border: 2px solid var(--ruby-red);
  background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.2) 0%, rgba(18, 10, 2, 0.9) 100%);
  box-shadow: var(--shadow-ruby);
}

/* Golden Gem Icon Styling */
.ruby-gem-icon {
  color: var(--ruby-red);
  font-size: 0.9rem;
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.8));
  display: inline-block;
  margin-right: 4px;
  animation: rubyPulse 3s infinite alternate ease-in-out;
}

@keyframes rubyPulse {
  0% { filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6)); }
  100% { filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.95)); }
}

.credit-item .diamond-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.credit-item .price-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.credit-item.selected .price-val {
  color: #ffffff;
}

.bonus-tag {
  font-size: 0.65rem;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 2px 8px;
  border-radius: 12px;
  margin-top: 6px;
  font-weight: 700;
  display: inline-block;
}

.selected-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ruby-gradient);
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.5);
  white-space: nowrap;
  max-width: 95%;
  text-align: center;
  line-height: 1.2;
  z-index: 10;
}

.check-icon {
  display: none;
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 0.75rem;
  color: var(--ruby-red);
}
.credit-item.selected .check-icon {
  display: block;
}

/* Action Bar & Stepper */
.action-bar {
  background: var(--surface-color);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 1.25rem;
  margin: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qty-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.qty-stepper {
  display: flex;
  align-items: center;
  background: rgba(24, 18, 5, 0.7);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 3px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: rgba(234, 179, 8, 0.2);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.qty-btn:hover {
  background: var(--primary-color);
}

.qty-input {
  width: 44px;
  text-align: center;
  background: transparent;
  border: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  outline: none;
}

.total-display {
  text-align: right;
}

.total-diamonds {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.total-diamonds #total-points {
  color: var(--ruby-red);
  font-weight: 800;
  font-size: 1.1rem;
}

.total-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.total-price #total-amount {
  color: var(--primary-light);
}

.btn-proceed {
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #eab308 0%, #ea580c 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.35);
}

.btn-proceed:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(234, 179, 8, 0.5);
  background: linear-gradient(135deg, #facc15 0%, #f97316 100%);
}

.btn-proceed:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
  background: rgba(75, 85, 99, 0.5);
}

/* Support Section */
.section-header {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.support-item {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
}

.support-item:hover {
  border-color: var(--surface-border-glow);
  transform: translateX(4px);
  background: var(--surface-hover);
}

.support-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
}

.support-icon.imo {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}
.support-icon.wa {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.support-text .title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}
.support-text .value {
  font-size: 0.825rem;
  color: var(--text-secondary);
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface-color);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--surface-border);
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 0;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 4px;
  transition: all 0.2s ease;
}

.nav-item i {
  font-size: 1.25rem;
}

.nav-item.active, .nav-item:hover {
  color: var(--primary-light);
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

/* Modals */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(7, 3, 18, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--surface-color);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-modal);
  color: #ffffff;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--surface-border);
  padding-bottom: 0.75rem;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.close-modal {
  background: rgba(234, 179, 8, 0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
}

/* Maintenance Screen Dark Gold Theme */
.maintenance-screen {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 30%, #2e220a 0%, #171105 60%, #0a0802 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  overflow-y: auto;
}

.maintenance-card {
  background: rgba(33, 24, 8, 0.8);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(234, 179, 8, 0.35);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(234, 179, 8, 0.2);
}

.maintenance-icon-glow {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3) 0%, rgba(168, 85, 247, 0.1) 100%);
  border: 1px solid rgba(217, 119, 6, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 2.2rem;
  color: #f59e0b;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.3);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(245, 158, 11, 0.6); }
  100% { transform: scale(1); box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
}

.maintenance-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.maintenance-banner {
  max-width: 100%;
  max-height: 220px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--surface-border);
}

/* Custom Maintenance Notice Message Container */
.maintenance-reason-container {
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.35);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.reason-header {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reason-body {
  font-size: 1rem;
  color: #f1f5f9;
  line-height: 1.6;
  font-weight: 500;
}

.countdown-card {
  background: rgba(13, 6, 28, 0.7);
  border: 1px solid var(--surface-border);
  padding: 1.25rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.countdown-timer {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ruby-red);
  font-family: monospace;
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px rgba(255, 42, 95, 0.5);
}

.maintenance-support-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.maint-support-btn {
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.maint-support-btn.wa {
  background: linear-gradient(135deg, #16a34a, #15803d);
}
.maint-support-btn.imo {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.maint-support-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Custom Payment Status Modal Styling */
.status-modal-card {
  max-width: 420px;
  width: 90%;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(24, 18, 5, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(234, 179, 8, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(234, 179, 8, 0.25);
  border-radius: 24px;
  animation: modalPopIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPopIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.status-icon-wrapper {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
}

.status-icon-wrapper.success {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 2px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
  animation: pulseSuccess 2s infinite ease-in-out;
}

.status-icon-wrapper.failed {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 2px solid rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.4);
}

@keyframes pulseSuccess {
  0% { transform: scale(1); box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 35px rgba(34, 197, 94, 0.7); }
  100% { transform: scale(1); box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); }
}

.status-modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.status-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.status-details-box {
  background: rgba(13, 6, 28, 0.75);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.status-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.status-detail-row .detail-label {
  color: var(--text-muted);
  font-weight: 600;
}

.status-detail-row .detail-value {
  color: #ffffff;
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 0.05em;
}

.status-badge-pill {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge-pill.success {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.status-badge-pill.failed {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.status-modal-info {
  font-size: 0.825rem;
  color: var(--primary-light);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.45;
}

.status-modal-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #9333ea 0%, #e11d48 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.4);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(225, 29, 72, 0.6);
}

