@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* { box-sizing: border-box; }
body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at 20% 20%, #f0f4ff, #dfe3ff, #f7faff);
  margin: 0;
  color: #222;
  text-align: center;
  overflow-x: hidden;
}

header {
  padding: 60px 20px;
  background: linear-gradient(135deg, #5f2cff, #00c6ff);
  color: white;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
header h1 {
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255,255,255,0.6);
}
header span { color: #ffda79; }
header p { font-size: 1.1rem; margin-top: 10px; opacity: 0.9; }

.glass-box {
  margin: 50px auto;
  padding: 40px 30px;
  width: 90%;
  max-width: 650px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 25px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

textarea {
  width: 100%;
  height: 120px;
  padding: 15px;
  font-size: 1rem;
  border-radius: 15px;
  border: 2px solid rgba(0,0,0,0.1);
  resize: none;
  outline: none;
  background: rgba(255,255,255,0.7);
  transition: box-shadow 0.3s;
}
textarea:focus { box-shadow: 0 0 15px rgba(0, 136, 255, 0.4); }

button {
  margin-top: 20px;
  background: linear-gradient(90deg, #00c6ff, #007bff);
  border: none;
  padding: 14px 35px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}
button:hover { transform: scale(1.05); background: linear-gradient(90deg, #0099ff, #0056b3); }

.treasure-box {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255,255,255,0.8);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  animation: fadeIn 0.6s ease;
}

.email-treasure {
  position: relative;
  background: linear-gradient(135deg, #fff6bf, #fff0a6, #ffdd73);
  border: 3px solid gold;
  border-radius: 18px;
  padding: 25px;
  margin: 20px auto;
  max-width: 500px;
  box-shadow: 0 0 25px rgba(255,215,0,0.5);
  animation: shine 3s infinite linear;
}
.email-treasure p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5f2cff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.copyBtn {
  background: linear-gradient(90deg, #28a745, #34d058);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}
.copyBtn:hover { transform: scale(1.1); }

.refine-btn {
  background: linear-gradient(90deg, #ff8c42, #ffb347);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.refine-btn:hover { transform: scale(1.05); background: linear-gradient(90deg, #e67e22, #ffa94d); }

footer {
  margin-top: 70px;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(15px);} to { opacity: 1; transform: translateY(0);} }
@keyframes shine { 0% {box-shadow: 0 0 15px rgba(255,215,0,0.3);} 50% {box-shadow: 0 0 40px rgba(255,215,0,0.8);} 100% {box-shadow: 0 0 15px rgba(255,215,0,0.3);} }




#ad-placeholder a {
  color: #7a1cff;
  font-weight: 700;
  text-decoration: none;
}
#ad-placeholder a:hover {
  text-decoration: underline;
  color: #8b32ff;
}

/* 🌟 Festive Email Result Block */
.festive-box {
  margin-top: 40px;
  padding: 35px 25px;
  background: linear-gradient(145deg, #fff9e6, #ffeef9);
  border-radius: 25px;
  box-shadow: 0 0 40px rgba(255, 200, 0, 0.2), 0 0 25px rgba(255, 0, 255, 0.15);
  border: 2px solid rgba(255, 215, 0, 0.5);
  animation: fadeIn 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.festive-box h3 {
  color: #6b2cff;
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.festive-mail {
  position: relative;
  background: radial-gradient(circle at 30% 30%, #fff7c4, #ffe680, #ffd447);
  border-radius: 18px;
  padding: 25px;
  margin: 25px auto;
  max-width: 480px;
  box-shadow: 0 0 25px rgba(255,215,0,0.6);
  animation: glowRotate 6s infinite linear;
}

.festive-mail p {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5f2cff;
  text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.festive-note {
  font-size: 0.95rem;
  color: #555;
  margin-top: 15px;
}

.copyBtn {
  background: linear-gradient(90deg, #28a745, #34d058);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 10px;
}
.copyBtn:hover { transform: scale(1.1); }

@keyframes glowRotate {
  0% { box-shadow: 0 0 25px rgba(255,215,0,0.5); }
  50% { box-shadow: 0 0 40px rgba(150,0,255,0.6); }
  100% { box-shadow: 0 0 25px rgba(255,215,0,0.5); }
}

/* ✨ Confetti / Sparkle effect */
.sparkle::before, .sparkle::after {
  content: "✨";
  position: absolute;
  font-size: 1.2rem;
  animation: sparkleAnim 2s infinite ease-in-out;
}
.sparkle::before { top: -10px; left: 10%; }
.sparkle::after { bottom: -10px; right: 10%; }

@keyframes sparkleAnim {
  0%,100% { opacity: 0; transform: scale(0.7) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
  
  
/* 📨 Complaint Email Block */
.claim-box {
  margin-top: 30px;
  background: linear-gradient(145deg, #f6f9ff, #eef3ff);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
  padding: 25px;
  animation: fadeIn 0.7s ease;
  border: 2px solid rgba(90, 130, 255, 0.3);
}

.claim-box h3 {
  color: #0056b3;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.claim-template {
  background: white;
  border: 1px dashed #ccc;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

.copyClaimBtn {
  background: linear-gradient(90deg, #007bff, #00b7ff);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 25px;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.copyClaimBtn:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #0066cc, #0099ff);
}
  
.language-note {
  font-size: 0.9rem;
  color: #444;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 10px 15px;
  margin-top: 10px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.language-note:hover {
  transform: scale(1.02);
  background: rgba(0,255,255,0.8);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,0.6);
}
header h2, header h3 {
  color: #e9ecff;
}
/* 🌍 Site Footer */
.site-footer {
  margin-top: 70px;
  background: linear-gradient(180deg, #f9faff, #eef3ff);
  padding: 50px 20px;
  color: #333;
  border-top: 2px solid #d0d8ff;
  font-family: "Poppins", sans-serif;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
  text-align: left;
}

.footer-section {
  flex: 1;
  min-width: 260px;
}

.footer-section h4 {
  color: #0056b3;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-section p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #dde4ff;
  margin-top: 40px;
  padding-top: 20px;
}

.keywords {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}
