@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

/* Reset + Base Layout */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  background: #0a0a0a;
  color: #eaeaea;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 80px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  flex: 1;
  padding-top: 40px;
}

/* Headers */
h1,
h1.glitch {
  font-size: 3rem;
  color: #ff003c;
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.1rem;
  color: #aaa;
  letter-spacing: 1px;
  margin-top: -10px;
  margin-bottom: 40px;
}

/* Bot Cards */
.bots {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.bot {
  background: #111;
  border: 2px solid #444;
  border-radius: 15px;
  padding: 30px;
  margin: 20px;
  max-width: 400px;
  flex: 1;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.2);
  transition: all 0.3s ease-in-out;
}

.bot:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
}

h2 {
  font-size: 2rem;
  color: #f5f5f5;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background: transparent;
  border: 2px solid #ff003c;
  color: #ff003c;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ff003c;
  color: #000;
}

.btn.flirty {
  border-color: #ff69b4;
  color: #ff69b4;
}

.btn.flirty:hover {
  background: #ff69b4;
  color: #000;
}

/* Feature Section */
.features {
  margin-top: 60px;
}

.features h2 {
  font-size: 2rem;
  color: #ff003c;
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature {
  background: #111;
  border: 1px solid #444;
  padding: 20px;
  border-radius: 15px;
  width: 150px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.feature i {
  font-size: 2rem;
  color: #ff003c;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.9rem;
  color: #ccc;
}

/* TOS + Policy Section Boxes */
.section {
  background: #111;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.15);
  text-align: left;
}

.section h2 {
  color: #ff69b4;
  margin-bottom: 10px;
}

.section h3 {
  color: #ff003c;
  margin-top: 20px;
}

/* Clean list style inside section */
.section ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.section ul li {
  padding: 6px 0;
  margin: 4px 0;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Links */
a {
  color: #ff69b4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  margin-top: 40px;
  padding-bottom: 30px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

footer .links {
  margin-top: 10px;
}

footer .links a {
  color: #ff003c;
  margin: 0 10px;
  text-decoration: none;
  display: inline-block;
}

footer .links a:hover {
  text-decoration: underline;
}

/* Back Button */
.back-home {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 20px;
  border: 2px solid #ff003c;
  color: #ff003c;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.back-home:hover {
  background: #ff003c;
  color: #000;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  h1, h1.glitch {
    font-size: 2rem;
  }

  .section {
    padding: 20px;
  }

  .feature {
    width: 100%;
  }
}
/* === Privacy & Terms Page Styling === */
.section {
  background: #111;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(255, 0, 60, 0.15);
  text-align: left;
}

.section h3 {
  color: #ff003c;
  margin-top: 0;
  font-size: 1.4rem;
}

.section p,
.section li {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.section ul li::before {
  content: "★";
  color: #ff69b4;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.9rem;
}

.back-home {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 20px;
  border: 2px solid #ff003c;
  color: #ff003c;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.back-home:hover {
  background: #ff003c;
  color: #000;
}
.code {
  background: #222;
  color: #ff69b4;
  font-family: monospace;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.highlight {
  color: #087c7c;
  font-weight: bold;
}

.redish {
  color: #ff003c;
  font-weight: bold;
}

.greenish {
  color: #00ff88;
  font-weight: bold;
}

.boxnote {
  background: #191919;
  border-left: 4px solid #ff69b4;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 10px;
  color: #ccc;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(255, 105, 180, 0.1);
}
.btn.invite-mowman {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 30px;
  background: #0a0a0a;
  border: 2px solid #ff003c;
  color: #ff003c;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
  text-decoration: none;
}

.btn.invite-mowman:hover {
  background: #930022;
  color: #0a0a0a;
  box-shadow: 0 0 25px rgba(199, 63, 95, 0.6), 0 0 40px rgba(255, 0, 60, 0.3) inset;
  transform: scale(1.05);
  cursor: pointer;
}
