:root {
  --sage: #9ead93;
  --pine: #2e5c4f;
  --gold: #e7b24b;
  --white: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

/* Background gradient */
.bg {
  position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(160deg, var(--sage), var(--pine));
  animation: bgmove 12s ease-in-out infinite alternate;
}
@keyframes bgmove {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(-25deg); }
}

/* Header */
.header { margin-top: 40px; }
.logo { width: 320px; height: auto; }

/* Main text */
.main { max-width: 700px; padding: 20px; }
h1 { font-size: clamp(28px, 6vw, 52px); margin-bottom: 14px; }
.text { font-size: clamp(15px, 1.6vw, 20px); margin-bottom: 12px; line-height: 1.5; }

/* Notification Section */
.notify-section {
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.notify-title {
  font-size: clamp(20px, 4vw, 28px);
  margin-bottom: 20px;
  color: var(--gold);
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  padding: 4px 4px 4px 14px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.country-code {
  font-size: 16px;
  font-weight: 600;
  color: var(--pine);
  margin-right: 8px;
}

.phone-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 10px;
  font-size: 16px;
  color: var(--pine);
  background: transparent;
}

.phone-input::placeholder {
  color: #a0a0a0;
}

.notify-btn {
  background: var(--gold);
  color: var(--pine);
  border: none;
  padding: 13px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(231, 178, 75, 0.3);
}

.notify-btn:hover {
  background: #d9a43e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(231, 178, 75, 0.4);
}

.notify-btn:active {
  transform: translateY(0);
}

.disclaimer {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 8px;
}

.success-message {
  margin-top: 16px;
  padding: 12px 20px;
  background: rgba(144, 238, 144, 0.2);
  border: 1px solid rgba(144, 238, 144, 0.4);
  border-radius: 8px;
  color: #d4ffd4;
  font-weight: 500;
}

/* Admin Panel */
.admin-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(46, 92, 79, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--gold);
  z-index: 1000;
}

.download-btn {
  background: var(--gold);
  color: var(--pine);
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #d9a43e;
  transform: translateY(-2px);
}

.admin-info {
  margin-top: 10px;
  font-size: 13px;
  color: var(--white);
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .notify-section {
    padding: 20px 15px;
  }
  
  .phone-input-wrapper,
  .notify-btn {
    max-width: 100%;
  }
  
  .admin-panel {
    bottom: 10px;
    right: 10px;
    left: 10px;
    padding: 12px 15px;
  }
  
  .download-btn {
    width: 100%;
  }
}

/* Footer with social icons */
.footer {
  display: flex;
  gap: 18px;
  margin: 40px 0;
}
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--pine);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  gap: 14px;
}

.socials {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.footer-text {
  text-align: center;
  font-size: 14px;
  color: #f1f1f1;
  opacity: 0.85;
}
.footer-text p { margin: 4px 0; }