/* --- Standardized CTA Footer Bar --- */
:root {
  --m-blue: #402fb5;
  --m-pink: #cf30aa;
}

body {
  padding-bottom: 250px !important;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 220px !important;
  }
}

.footer-actions-container-ps {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 2000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px -10px 40px rgba(0, 0, 0, 0.8);
}

.ps-footer-cta-text {
  color: #fff !important;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  font-family: 'GmarketSans', sans-serif !important;
}

.ps-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

.ps-footer-btn {
  position: relative;
  flex: 1;
  max-width: 400px;
  height: 50px;
  text-decoration: none !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ps-footer-btn:hover {
  transform: translateY(-2px);
}

.ps-footer-btn .poda-bg-layer {
  position: absolute;
  z-index: 0;
  inset: -2px;
  border-radius: 12px;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
}

.ps-footer-btn .poda-bg-layer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  transition: all 2s;
}

.ps-footer-btn .poda-bg-layer.l1 {
  filter: blur(4px);
  opacity: 0.8;
}

.ps-footer-btn .poda-bg-layer.l1::before {
  background: conic-gradient(#000, var(--m-blue) 5%, #000 38%, #000 50%, var(--m-pink) 60%, #000 87%);
  transform: translate(-50%, -50%) rotate(60deg);
}

.ps-footer-btn .poda-bg-layer.l2 {
  filter: blur(3px);
  opacity: 0.7;
}

.ps-footer-btn .poda-bg-layer.l2::before {
  background: conic-gradient(rgba(0, 0, 0, 0), #18116a, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 50%, #6e1b60, rgba(0, 0, 0, 0) 60%);
  transform: translate(-50%, -50%) rotate(82deg);
}

.ps-footer-btn .poda-bg-layer.l3 {
  filter: blur(2px);
  opacity: 0.5;
}

.ps-footer-btn .poda-bg-layer.l3::before {
  background: conic-gradient(rgba(0, 0, 0, 0) 0%, #a099d8, rgba(0, 0, 0, 0) 8%, rgba(0, 0, 0, 0) 50%, #dfa2da, rgba(0, 0, 0, 0) 58%);
  transform: translate(-50%, -50%) rotate(83deg);
  filter: brightness(1.4);
}

.ps-footer-btn .poda-bg-layer.l4 {
  filter: blur(0.5px);
}

.ps-footer-btn .poda-bg-layer.l4::before {
  background: conic-gradient(#1c191c, var(--m-blue) 5%, #1c191c 14%, #1c191c 50%, var(--m-pink) 60%, #1c191c 64%);
  transform: translate(-50%, -50%) rotate(70deg);
  filter: brightness(1.3);
}

.ps-footer-btn .btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
}

@keyframes icon-shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.ps-footer-btn .btn-content i {
  display: inline-block;
  animation: icon-shake 0.5s ease-in-out infinite;
  transform-origin: center;
  font-size: 1.2rem;
}

.ps-footer-btn::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: #010201;
  border-radius: 11px;
  z-index: 1;
}

@media (max-width: 768px) {
  .footer-actions-container-ps {
    height: 220px;
    padding: 4px 20px 15px;
  }
  .ps-footer-cta-text {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .ps-button-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  .ps-footer-btn {
    width: 100%;
    max-width: none;
    height: 50px;
    font-size: 0.95rem;
  }
}
