/*

    made with (heart) by
        __                              _____
       / /______ _____  _______  __   _|__  /
      / //_/ __ `/ __ \/ ___/ / / /  (_)/_ < 
     / ,< / /_/ / /_/ (__  ) /_/ /  _ ___/ / 
    /_/|_|\__,_/\____/____/\__,_/  (_)____/  

    note..
        - this code/file is protected by basic intellectual property rights, if found duplicated/reproduced without permission, legal action may occur.
        - this was made for "Beacon Bot", only authorized for use on any subdomain/path associated with "kaosu.xyz" and "beaconbot.site"

*/

:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-muted: #555555;
  --primary: #5865f2;
  --card-bg: #f9f9fb;
  --border: #e0e0e0;
  --navbar-bg: rgba(255, 255, 255, 0.95);
  --navbar-border: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] {
  --bg: #0f0f12;
  --text: #e0e0e0;
  --text-muted: #a0a0a0;
  --primary: #5865f2;
  --card-bg: #1a1a1f;
  --border: #2a2a2f;
  --navbar-bg: rgba(15, 15, 18, 0.95);
  --navbar-border: #2a2a2f;
  --shadow: rgba(0, 0, 0, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: transparent;
  backdrop-filter: blur(0);
}
.navbar.scrolled {
  background: var(--navbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navbar-border);
  padding: 0.75rem 5%;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  height: 100%;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.nav-links a:hover {
  color: var(--text);
}

.invite-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.invite-btn:hover {
  background: #4752c4;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.1rem;
  margin-left: 0.5rem;
}
.theme-toggle:hover {
  background: rgba(88, 101, 242, 0.1);
  color: var(--primary);
}
.theme-toggle i {
  transition: transform 0.3s ease;
}
.theme-toggle:hover i {
  transform: rotate(20deg);
}

.hero {
  padding: 8rem 5% 6rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.features, .commands, .partners, .team {
  padding: 3rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 600;
  color: var(--text);
}
.features-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.feature-tile, .team-member, .partner-tile {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.feature-tile:hover, .team-member:hover, .partner-tile:hover {
  border-color: var(--primary);
}
.feature-placeholder {
  height: 60px;
  background: rgba(88, 101, 242, 0.08);
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.feature-tile h3, .team-member h3, .partner-tile h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  color: var(--text);
}
.feature-tile p, .team-member p, .partner-tile p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.topgg-section {
  padding: 4rem 5%;
  display: flex;
  justify-content: center;
}
.topgg-widget {
  max-width: 400px;
  width: 100%;
}
.topgg-widget img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px var(--shadow);
}

.cmd-category {
  margin-bottom: 3rem;
}
.cmd-category h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.4rem;
  display: inline-block;
}
.cmd-list {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  font-family: monospace;
  line-height: 2;
}
.cmd {
  color: var(--primary);
  font-weight: 600;
}

.partner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.btn {
  background: var(--primary);
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn:hover {
  background: #4752c4;
}

.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}
.team-member h3 i {
  color: var(--primary);
  margin-right: 0.3rem;
  font-size: 0.9rem;
}

.footer {
  padding: 3rem 5%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.5rem; }
  .hero { padding: 7rem 5% 4rem; }
}