:root{
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --accent: rgba(255,255,255,0.95);
  --muted: rgba(255,255,255,0.85);
  --shadow: rgba(8,10,25,0.6);
}



.birthday-footer{
  margin-top: 24px;             
  padding: 22px 18px;
  display:flex;
  justify-content:center;
  align-items:center;

  text-align: center;
 
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: 0 10px 30px var(--shadow);
  
  width: 90%;
  position: relative;
  overflow: hidden;
}

.footer-inner{
  width:100%;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content: center;
  flex-wrap:wrap;
}




.footer-text{
  font-family: 'Cinzel Decorative', cursive;  
  flex:1 1 320px;
  
  text-align: center;
  font-size:15px;
  line-height:1.3;
  color: var(--muted);
  padding-right:8px;
  font-weight:600;
  text-shadow: 0 1px 0 rgba(0,0,0,0.25);
}

.created-by{
  font-family: 'Gabriela', sans-serif;
  margin-top:6px;
  font-size:12px;
  font-weight:600;
  color: rgba(255,255,255,0.7);
  opacity:0.95;
  letter-spacing:0.3px;
}

.birthday-footer::before,
.birthday-footer::after{
  content:'';
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  filter: blur(30px);
  opacity:0.06;
  pointer-events:none;
}
.birthday-footer::before{
  right: -60px;
  top: -60px;
  background: linear-gradient(135deg, #a6e3ff, #8ec5ff);
}
.birthday-footer::after{
  left: -40px;
  bottom: -60px;
  background: linear-gradient(135deg, #ffd6e0, #ffc6a8);
}



@media (max-width:640px){
  .birthday-footer{ padding:18px 12px; width: calc(100% - 24px); border-radius:12px; }
 .footer-text{ font-size:14px; text-align:center; }
  .footer-inner{ gap:10px; justify-content:center; }
  .created-by{ text-align:center; }
}