/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #2c3e50, #4ca1af);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent black for contrast */
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

h1 {
  font-size: 28px;
  font-weight: bold;
  color: #61dbfb; /* Light blue for contrast */
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  color: #bdc3c7; /* Light gray for readability */
  margin-bottom: 25px;
}

.input-section textarea {
  width: 100%;
  height: 120px;
  padding: 15px;
  border: 2px solid #61dbfb;
  border-radius: 10px;
  resize: none;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1); /* Transparent white for input */
  color: #fff;
  transition: border-color 0.3s ease;
}

.input-section textarea:focus {
  border-color: #34b7f1;
  outline: none;
}

.btn {
  padding: 12px 25px;
  background: #61dbfb;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #34b7f1;
  transform: scale(1.05);
}

.copy-btn {
  background: #ff6f61;
}

.copy-btn:hover {
  background: #ff4d4d;
}

.result-section {
  margin-top: 25px;
}

.result-section h2 {
  font-size: 22px;
  color: #61dbfb;
  margin-bottom: 15px;
}

.hashtags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 15px;
}

.hashtags-container span {
  background: rgba(255, 255, 255, 0.2); /* Transparent white for hashtags */
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: #61dbfb;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hashtags-container span:hover {
  background: #61dbfb;
  color: #2c3e50;
  transform: scale(1.1);
}