/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #181818;
  color: #fff;
  line-height: 1.6;
  padding: 20px;
}

h1,
h3 {
  font-weight: 700;
}

a {
  color: #1e90ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.site-logo {
  width: 50px;
  margin-right: 10px;
}

/* Main Content */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resource {
  background-color: #242424;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  margin: 20px 0;
}

label {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
}

select,
input {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  background-color: #333;
  color: #fff;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #1e90ff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #1c7bd6;
}

#embedCode {
  margin-top: 20px;
}

/* Tooltip styles */
.info-icon {
  margin-left: 5px;
  cursor: pointer;
  font-size: 1rem;
}

/* Footer */
footer {
  background-color: #202020;
  padding: 20px;
  border-top: 1px solid #444;
  text-align: center;
}

footer p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  background-color: #444;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
}

.discord-button:hover,
.dmca-button:hover {
  background-color: #333;
}

.discord-icon-left,
.dmca-icon-left,
.donate-icon-left,
.discord-icon-right,
.dmca-icon-right,
.donate-icon-right {
  width: 25px;
  margin-right: 8px;
}

/* Adblocker Popup */
#adblocker-popup-container {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

#adblocker-message {
  background-color: #ff6666;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  width: 80%;
  max-width: 400px;
}

#adblocker-message h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

#adblocker-message p {
  font-size: 1rem;
  margin-bottom: 20px;
}

#adblocker-message button {
  background-color: #fff;
  color: #ff6666;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

#adblocker-message button:hover {
  background-color: #e0e0e0;
}
