* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(135deg, #eef1ff, #f9f7ff);
  min-height: 100vh;
}

.announcement-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.announcement-card {
  background: #ffffff;
  max-width: 620px;
  width: 100%;
  padding: 50px 40px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.badge {
  display: inline-block;
  background: linear-gradient(90deg, #7b5cff, #c77dff);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.brand-change {
  font-size: 34px;
  margin-bottom: 20px;
}

.brand-change .old {
  color: #9aa0a6;
  text-decoration: line-through;
}

.brand-change .arrow {
  margin: 0 10px;
  color: #7b5cff;
}

.brand-change .new {
  color: #6a5cff;
  font-weight: 700;
}

h2 {
  font-size: 24px;
  color: #1f2937;
  margin-bottom: 16px;
}

.description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

.tagline {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 30px;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 30px 0;
}

.visit {
  color: #6b7280;
  margin-bottom: 6px;
}

.link {
  color: #6a5cff;
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
}

.contact {
  margin-top: 18px;
  font-size: 14px;
  color: #6b7280;
}

.contact a {
  color: #6a5cff;
  text-decoration: none;
}

.cta-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 34px;
  background: linear-gradient(90deg, #7b5cff, #c77dff);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(123,92,255,0.35);
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}
