/* General Layout */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom right, rgb(138, 46, 179), rgb(146, 25, 162));
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo img {
  max-width: 150px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #4a00e0;
  font-size: 1.1em;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #1e90ff;
}

.nav-icons {
  display: flex;
  gap: 15px;
}

.nav-icons a {
  color: #4a00e0;
  font-size: 1.5em;
  text-decoration: none;
  transition: 0.3s;
}

.nav-icons a:hover {
  color: #1e90ff;
}

/* Booster Heading */
#booster-tools {
  text-align: center;
  margin: 30px 0;
  color: white;
}

#booster-tools h1 {
  font-size: 2.5em;
}

#booster-tools p {
  font-size: 1.2em;
}

/* Tool Container */
.container {
  background-color: white;
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

input,
select {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  padding: 10px 20px;
  background-color: #8a2be2;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #6a1abe;
}

/* Hooks List */
#ideas-list {
  margin-top: 20px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.idea-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background-color: #f4f4f4;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  flex-wrap: wrap;
}

.idea-text {
  flex: 1;
  text-align: left;
  word-break: break-word;
  font-size: 1em;
  color: #333;
}

.copy-btn {
  background-color: #8a2be2;
  color: white;
  border: none;
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 5px;
  white-space: nowrap;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: #6a1abe;
}

/* Description Box */
.description-box {
  max-width: 800px;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 10px;
  border: 2px dotted #4285f4;
  text-align: center;
}

.description-box h2 {
  color: #4285f4;
  margin-bottom: 10px;
}

.description-box p {
  font-size: 1em;
  line-height: 1.6;
}

/* Ads */
.ad-container {
  text-align: center;
  margin: 30px auto;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #8a2be2;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 999;
}

.scroll-top:hover {
  background-color: #6a1abe;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
  }

  input,
  select {
    width: 100%;
  }

  #ideas-list {
    width: 100%;
  }

  .idea-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-btn {
    align-self: flex-end;
    margin-top: 8px;
  }
}
