/* General Styles */
body {
  font-family: "Akt", sans-serif;
  background-color: #f0f2f5;
  color: #333;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(circle at 10% 20%, rgba(204, 229, 255, 0.5), transparent 30%),
                    radial-gradient(circle at 90% 80%, rgba(255, 204, 229, 0.5), transparent 30%);
}

.page-wrapper {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}

/* Header */
.header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.logo-icon {
  width: 24px;
  height: 24px;
}

/* Main Content */
.main-content {
  padding-top: 100px; /* Space for header */
  padding-bottom: 100px; /* Space for footer */
}

.content-center {
  max-width: 600px;
  margin: 0 auto;
}

.emoji {
  font-size: 48px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.title {
  font-size: 48px;
  font-weight: 800;
  color: #1a73e8;
  margin: 0 0 20px;
}

.description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.notify-button {
  background-color: #2c3e50;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.notify-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.button-icon {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a img {
  width: 24px;
  height: 24px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}

.social-links a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Floating Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #89f7fe, #66a6ff);
  opacity: 0.5;
}

.shape-1 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 10%;
  background: #a8e6cf;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 12%;
  background: #ffd3b6;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 36px;
  }
  .description {
    font-size: 16px;
  }
  .shape-1, .shape-2 {
    display: none;
  }
}
