body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0F0F0F;
  color: #FFFFFF;
}

.support-container {
  padding: 10px;
  min-height: 100vh;
  background-color: #0F0F0F;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Header */
.support-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #1A1A1A;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

.support-header h1 {
  font-size: 18px;
  font-weight: 600;
  color: #00FF99;
}

.header-icons {
  display: flex;
  gap: 10px;
}

.live-chat-icon,
.notification-icon {
  font-size: 18px;
  color: #00FF99;
  cursor: pointer;
}

.live-chat-icon i,
.notification-icon i {
  transition: color 0.3s ease;
}

.live-chat-icon:hover i,
.notification-icon:hover i {
  color: #00CC80;
}

/* Support Section */
.support-section {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.support-section h2 {
  font-size: 20px;
  color: #00FF99;
  margin-bottom: 10px;
}

.support-section p {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.support-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 300px;
}

.support-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #00FF99, #00CC80);
  color: #0F0F0F;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.support-btn:hover {
  background: linear-gradient(90deg, #00CC80, #00FF99);
  transform: translateY(-2px);
}

.cindy-btn i,
.luna-btn i {
  font-size: 18px;
}

/* Footer */
.footer {
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 20px;
}

.footer-legal {
  font-size: 12px;
  color: #888;
}

/* Responsive Design */
@media (min-width: 768px) {
  .support-container {
    max-width: 1000px;
    padding: 20px;
  }

  .support-header {
    padding: 15px 20px;
  }

  .support-header h1 {
    font-size: 22px;
  }

  .live-chat-icon,
  .notification-icon {
    font-size: 20px;
  }

  .support-section h2 {
    font-size: 24px;
  }

  .support-section p {
    font-size: 16px;
  }

  .support-buttons {
    max-width: 400px;
    flex-direction: row;
    justify-content: center;
  }

  .support-btn {
    font-size: 18px;
    padding: 14px 25px;
  }

  .cindy-btn i,
  .luna-btn i {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .support-container {
    max-width: 1200px;
    padding: 30px;
  }

  .support-header h1 {
    font-size: 24px;
  }

  .live-chat-icon,
  .notification-icon {
    font-size: 24px;
  }

  .support-section h2 {
    font-size: 28px;
  }

  .support-section p {
    font-size: 18px;
  }

  .support-btn {
    font-size: 20px;
    padding: 16px 30px;
  }
}