/* Makes all text white */
body{
  background-color: rgb(0, 0, 0);
}
div{
  color:rgb(255,255,255);
}
h1{
  color:rgb(255,255,255);
}
p{
  color:rgb(255,255,255);
}


/* Changes fonts of text */

div{
  font-family: Syne Mono, deno;
}
h1{
  font-family: Syne Mono, deno;
}
p{
  font-family: Syne Mono, deno;
}

/* Change background pattern & change navigation */
body {
  background-color: #0a0a0a;
  background-image: radial-gradient(ellipse at 20% 20%, rgba(80, 20, 10, 0.5) 0%, transparent 60%);
  margin: 0;
  padding: 0;
  font-family: 'Syne Mono', monospace;
  color: white;
} 

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  gap: 40px;
}

.hero-text {
  max-width: 450px;
}


/*Buttons:*/
.btn-primary {
  display: inline-block;
  background: #E8524A;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary:hover {
  background: #c44040;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid white;
  text-decoration: none;
  font-weight: bold;
}

.buttons {
  display: flex;
  gap: 16px;
  margin: 24px 0;
}

/*The hero card on the right:*/
.hero-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  width: 380px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-header {
  background:rgb(114,137,218);
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
}


.card-header img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.bot-name {
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.bot-tag {
  color: #000000;
  font-size: 13px;
  margin: 0;
}

.card-body {
  background: #1a1a1a;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.command {
  background: #222;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #333;
}

.command-name {
  color: rgb(255, 255, 255);
  font-weight: bold;
  margin: 0;
  font-size: 14px;
}

.command-desc {
  color: #888;
  margin: 0;
  font-size: 13px;
}

.tag {
  background: transparent;
  border: 1px solid #555;
  color: #ccc;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  flex-shrink: 0;
}

/*Nav logo image:*/
nav img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
}

nav a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*Style the badge:*/
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #555;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: white;
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #E8524A;
  border-radius: 50%;
  display: inline-block;
}

/*Style the stats:*/
.stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat-number {
  display: block;
  font-size: 45px;
  font-weight: 800;
  color: white;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #888;
}

/*feature grid*/
#features {
  padding: 80px 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 28px;
  color: white;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.feature-card h3 {
  color: white;
  margin: 0 0 8px 0;
}

.feature-card p {
  color: #888;
  margin: 0;
  font-size: 14px;
}

/*/Commands pills*/
#commands {
  padding: 80px 40px;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.command-pill {
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.command-pill code {
  color: white;
  font-family: 'Syne Mono', monospace;
  font-weight: bold;
  font-size: 13px;
  background: none;
}

.command-pill span {
  color: #888;
  font-size: 13px;
}

/*pricing*/
#pricing {
  padding: 80px 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 700px;
}

.pricing-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card.featured {
  border-color: #E8524A;
}

.featured-badge {
  background: #E8524A;
  color: white;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}

.pricing-card h3 {
  color: white;
  font-size: 20px;
  margin: 8px 0 0 0;
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin: 8px 0 0 0;
}

.price-per {
  color: #888;
  font-size: 13px;
  margin: 0 0 16px 0;
}

.pricing-card ul {
  color: #aaa;
  font-size: 14px;
  padding-left: 18px;
  margin: 0 0 24px 0;
  line-height: 2;
}

.pricing-card li {
  color: #aaa;
}

/*footer*/
footer {
  padding: 40px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
}

footer p {
  color: #555;
  font-size: 13px;
  margin: 4px 0 0 0;
}

/*animation*/
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  animation: fadeUp 0.8s ease forwards;
}

.hero-card {
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
}


/* buttons animation */
.btn-primary {
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  background: #c44040;
}

.btn-secondary {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  transform: scale(1.05);
  border-color: #E8524A;
  color: #E8524A;
}


.feature-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #E8524A;
}

/*command pill animation*/
.command-pill {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.command-pill:hover {
  transform: translateY(-4px);
  border-color: #E8524A;
}

/*pricing card animation*/
.pricing-card {
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

/*nav links*/
nav ul li a {
  transition: color 0.2s ease;
}

nav ul li a:hover {
  color: #E8524A;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}


.feature-card,
.command-pill,
.pricing-card,
#features h2,
#features p,
#commands h2,
#commands p,
#pricing h2,
#pricing p {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
opacity: 1 !important;
transform: translateY(0) !important;
}

/*Shows the guilds bot is in*/
.marquee-section {
padding: 60px 0;
overflow: hidden;
}

.marquee-label {
text-align: center;
color: #555;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 24px;
}

.marquee-wrapper {
overflow: hidden;
-webkit-mask-image: linear-gradient(
  to right,
  transparent 0%,
  black 15%,
  black 85%,
  transparent 100%
);
mask-image: linear-gradient(
  to right,
  transparent 0%,
  black 15%,
  black 85%,
  transparent 100%
);
}

.marquee-track {
display: flex;
gap: 16px;
width: max-content;
animation: marquee 25s linear infinite;
}

.marquee-item {
display: flex;
align-items: center;
gap: 12px;
background: #111;
border: 1px solid #222;
border-radius: 12px;
padding: 12px 20px;
flex-shrink: 0;
}

.marquee-item img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
}

.server-name {
color: white;
font-size: 14px;
font-weight: bold;
margin: 0;
}

.server-members {
color: #888;
font-size: 12px;
margin: 0;
}

@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {

/* NAV */
nav {
  padding: 12px 20px;
}

nav ul {
  display: none;
}

/* HERO */
.hero {
  flex-direction: column;
  padding: 60px 20px;
  text-align: center;
}

.hero-text {
  max-width: 100%;
}

.hero-text h1 {
  font-size: 34px;
}

.hero-text p {
  font-size: 15px;
}

.buttons {
  justify-content: center;
  flex-wrap: wrap;
}

/* HERO CARD */
.hero-card {
  width: 100%;
  max-width: 400px;
}

/* STATS */
.stats {
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.stat-number {
  font-size: 28px;
}

.stat-label {
  font-size: 14px;
}

/* FEATURES */
.features-grid {
  grid-template-columns: 1fr;
}

/* COMMANDS — single scrollable box */
.commands-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
  margin: 32px 0;
}

.command-pill {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  transition: background 0.2s ease;
}

.command-pill:last-child {
  border-bottom: none;
}

.command-pill:hover {
  transform: none;
  background: #181818;
  border-color: transparent;
}

/* PRICING */
.pricing-grid {
  grid-template-columns: 1fr;
}

/* FOOTER */
footer {
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

}