:root {
  --bg-dark: #0E0D16;
  --bg-light: #1C1B24;
  --text-primary: #EDEDED;
  --text-muted: #A0A0A0;
  --accent-purple: #6D3BC6;
  --accent-pink: #FF3D8A;
  --gradient-accent: linear-gradient(135deg, #6D3BC6, #FF3D8A);
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background-color: var(--bg-light);
  padding: 1rem 0;
  border-bottom: 1px solid #2c2d33;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 0.75rem;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.main-nav a {
  margin-left: 2rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
}

.main-nav a:hover {
  color: var(--accent-pink);
}

.user-area .login-btn {
  color: var(--accent-pink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent-pink);
  border-radius: 4px;
}

.user-area .login-btn:hover {
  background-color: var(--accent-pink);
  color: #fff;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}



/* Hero Section */
.hero-section {
  padding: 4rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.75rem;
  color: var(--text-primary);
}

.hero-section h1 strong {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-section p {
  font-size: 1.125rem;
  margin: 1rem 0 2rem;
  color: var(--text-muted);
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  text-decoration: none;
}

.cta-btn:hover {
  background: var(--accent-pink);
}

/* Features Section */
.features-section {
  padding: 4rem 0;
}

.features-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-item {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-purple);
}

.feature-item p {
  color: var(--text-muted);
}

/* Trusted Clients Section */
.trusted-section {
  padding: 3rem 0;
  text-align: center;
}

.trusted-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.client-logos img {
  max-height: 60px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.client-logos img:hover {
  opacity: 1;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
  background-color: var(--bg-light);
  padding: 2.5rem 2rem;
  border: 1px solid #2c2d33;
  border-radius: 6px;
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.75rem;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--accent-pink);
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.pricing-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--gradient-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
}

.pricing-btn:hover {
  background-color: var(--accent-pink);
}

/* Footer */
.site-footer {
  background-color: var(--bg-light);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  border-top: 1px solid #2c2d33;
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
}



.api-key-box {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: var(--bg-light);
  border: 1px solid #2c2c35;
  border-radius: 6px;
  color: var(--accent-pink);
}

.api-key-box button {
  margin-top: 0.75rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.api-key-box button:hover {
  opacity: 0.9;
}

.setting {
  margin-bottom: 1.25rem;
}

.setting label {
  display: block;
  margin-bottom: 0.4rem;
  color: #ccc;
}

.setting input,
.setting select {
  width: 100%;
  padding: 0.5rem;
  background-color: var(--bg-light);
  color: #eee;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 1rem;
}

form button[type="submit"] {
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: var(--gradient-accent);
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

form button[type="submit"]:hover {
  opacity: 0.95;
}


#configSection {
  animation: fadeIn 0.5s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.loader {
  border: 4px solid #2a2a2f;
  border-top: 4px solid var(--accent-pink);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.95);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.membership-box,
.code-redeem {
  animation: fadeIn 0.6s ease forwards;
  margin-bottom: 2rem;
  opacity: 0;
  animation-delay: 0.2s;
}

.connected-users {
  animation: slideIn 0.6s ease forwards;
  margin-bottom: 3rem;
  opacity: 0;
  animation-delay: 0.4s;
}

.add-account {
  animation: slideIn 0.6s ease forwards;
  margin-bottom: 3rem;
  opacity: 0;
  animation-delay: 0.4s;
}

.pricing-section h3 {
  text-align: center;
  margin-bottom: 1rem;
  animation: fadeIn 0.5s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.5s;
}

.pricing-card {
  animation: fadeIn 0.5s ease-in-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  transition: transform 0.3s ease;
}

input[type="text"] {
  padding: 0.7rem;
  width: 100%;
  max-width: 400px;
  background-color: var(--bg-light);
  border: 1px solid #333;
  color: #eee;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus {
  border-color: var(--accent-pink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 45, 149, 0.3);
}

button,
.pricing-btn {
  padding: 0.7rem 1.5rem;
  background: var(--gradient-accent);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-top: 0.5rem;
}

button:hover,
.pricing-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.downloads-grid {
  display: grid;
  gap: 2rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  animation: fadeIn 0.8s ease-in-out;
}

.download-card {
  background: #181a1f;
  border: 1px solid #2c2d33;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  color: var(--text-primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.6s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.download-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}


.download-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(122, 15, 226, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


.hero-section h1,
.hero-section p,
.hero-section .cta-btn {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-section h1 {
  animation-delay: 0.1s;
}

.hero-section p {
  animation-delay: 0.3s;
}

.hero-section .cta-btn {
  animation-delay: 0.5s;
}

.features-grid .feature-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.features-grid .feature-item:nth-child(1) {
  animation-delay: 0.2s;
}

.features-grid .feature-item:nth-child(2) {
  animation-delay: 0.4s;
}

.features-grid .feature-item:nth-child(3) {
  animation-delay: 0.6s;
}

.pricing-card {
  animation: zoomIn 0.6s ease forwards;
  opacity: 0;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.4s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.6s;
}

.pricing-card:hover {
  transform: scale(1.03);
}

.connected-users {
  margin: 2rem 0;
}

.user-list {
  list-style: none;
  padding: 0;
}

.user-entry {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: .5rem;
  background-color: var(--bg-light);
  padding: .5rem;
  border-radius: 6px;
}

.user-entry .user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-pink);
  object-fit: cover;
}

.user-entry .user-name {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.remove-btn {
  background-color: #ff3d8a;
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-left: auto;
  position: fixed;
  right: 3rem;
}

.remove-btn:hover {
  opacity: 0.9;
}

.add-account {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 6px;
}

.add-section {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.add-section input {
  background-color: #202027;
  border: 1px solid #333;
  padding: 0.5rem;
  border-radius: 4px;
  color: #eee;
  width: 280px;
}

.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.server-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Ensure vertical centering */
  background-color: var(--bg-light);
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.server-item img {
  margin: 0 auto 0.6rem; /* space below image */
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.server-item span {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-top: 0.4rem;
}


.server-item:hover,
.server-item.active {
  border-color: var(--accent-pink);
  transform: scale(1.05);
}



.custom-multiselect {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.multi-select-box {
  border: 1px solid #444;
  background-color: #1c1c24;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  position: relative;
}

.multi-select-box .options {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #2a2a33;
  border: 1px solid #555;
  border-radius: 5px;
  z-index: 10;
  padding: 0.5rem;
}

.multi-select-box.show .options {
  display: block;
}


.multi-select-box .option {
  padding: 8px;
  border-radius: 4px;
  transition: background 0.2s;
  color: #eee;
}

.multi-select-box .option:hover {
  background-color: var(--accent-pink);
  color: #fff;
}

.multi-select-box .option.selected {
  background-color: var(--accent-purple);
  color: #fff;
}

.sv-btn {
  margin-bottom: 3rem;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--accent-pink);
}

.user-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-username {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

/* Mobile layout */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--bg-dark);
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 1rem;
    border-top: 1px solid #2c2d33;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .user-nav {
    margin-left: 0;
    margin-top: 1rem;
  }
}


.user-status.verified {
  padding-left: .5rem;
  color: var(--accent-purple);
  font-weight: bold;
}


.animate-in {
  animation: fadeInUp 0.4s ease-out forwards;
}

.add-bot-btn {
  margin-top: 0.5rem;
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--accent-purple);
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.add-bot-btn:hover {
  background-color: var(--accent-pink);
}

input[readonly] {
    cursor: not-allowed;
    opacity: 0.8;
}

.ranking-account-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--bg-light);
  padding: 0.75rem;
  border-radius: 6px;
  border: 1px solid #333;
  margin-bottom: 1rem;
}

.ranking-account-box img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-pink);
  object-fit: cover;
}

.ranking-account-box .ranking-info {
  flex-grow: 1;
}

.ranking-account-box .ranking-info div {
  color: var(--text-primary);
}

#changeRankingBtn {
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 15, 20, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  color: var(--text-primary);
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.modal-content h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.modal-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.settingimage {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 2px solid var(--accent-purple);
  border-radius: 6px;
  margin-bottom: 1rem;
}


.modal-content input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #444;
  background: var(--bg-dark);
  color: #fff;
  font-size: 1rem;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.modal-actions button {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  background: var(--gradient-accent);
  color: white;
}

.modal-actions button:hover {
  opacity: 0.9;
}

#notification-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.notification {
  background-color: #2c2c2e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease, fadeOut 0.5s ease 3s forwards;
  font-size: 14px;
  min-width: 180px;
}


@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}
.modalAvatarPreview {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid var(--accent-purple);
  object-fit: cover;
}
.roadmap-section {
  padding: 5rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  margin-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #a463f2, #ff67d9);
  border-radius: 2px;
}

.roadmap-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.roadmap-card:nth-child(1) { animation-delay: 0.2s; }
.roadmap-card:nth-child(2) { animation-delay: 0.4s; }
.roadmap-card:nth-child(3) { animation-delay: 0.6s; }

.marker {
  min-width: 80px;
  padding: 0.5rem 0.8rem;
  background: #8a2be2;
  color: white;
  text-align: center;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
  margin-top: 4px;
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.card-content {
  background: #242427;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 600px;
}

.card-content h3 {
  margin-top: 0;
  color: var(--accent-purple);
}

.card-content p {
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .timeline::before {
    left: 0;
  }
  .roadmap-card {
    flex-direction: column;
    align-items: flex-start;
  }
}


.pricing-section {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #1f1f22, #18181b);
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.plan-card {
  background: #25252a;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 0 15px rgba(164, 99, 242, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(164, 99, 242, 0.2);
}

.plan-card h3 {
  font-size: 1.8rem;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.plan-card ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
  font-size: 0.95rem;
}

.price-group p {
  margin: 0.4rem 0;
  color: #fff;
  font-weight: bold;
}

.plan-buttons {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.btn.robux {
  background: linear-gradient(to right, #a463f2, #ff67d9);
  color: #fff;
}

.btn.usd {
  background: #3a3a3d;
  color: #fff;
}

.btn.contact {
  background: #555;
  color: #fff;
}

.price-contact {
  font-style: italic;
  color: var(--text-muted);
  margin: 1rem 0;
}

.popular {
  border: 2px solid var(--accent-purple);
  background: #292933;
}
.disabled-server {
  position: relative;
  pointer-events: none;
}

.server-blur-content {
  filter: blur(2px);
  opacity: 0.6;
  pointer-events: none;
}

.disabled-server::after {
  content: "Bot not added to server.";
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  z-index: 2;
  pointer-events: auto;
}

 