@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%), url("/assets/background.png");
  background-blend-mode: overlay;
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  background: radial-gradient(2px 2px at 20px 30px, #eee, transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent), radial-gradient(1px 1px at 90px 40px, #fff, transparent), radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent), radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: sparkle 20s linear infinite;
  opacity: 0.3;
  z-index: -1;
}

@keyframes sparkle {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}
::-webkit-scrollbar {
  width: 0.4rem;
}

::-webkit-scrollbar-thumb {
  border-right: 0.4rem solid rgba(100, 100, 100, 0.5);
  background-clip: padding-box;
  border-radius: 10px;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

a {
  color: rgb(113, 132, 153);
  text-decoration-line: none;
}
a:hover {
  color: rgb(144, 181, 226);
  transition: 0.22s;
}

.errorpage {
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  margin-top: 60px;
}

.errorpage img {
  max-width: 128px;
  margin-bottom: 20px;
}

.errorpage h1 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.error-return {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 120px;
  cursor: pointer;
  color: white;
}
.error-return:hover {
  background: rgba(255, 255, 255, 0.062);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main {
  flex-grow: 1;
  line-height: 1.5;
  margin-left: 2rem;
  margin-right: 2rem;
}
main .home {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 0px - 2px + 21px - 60px - 60px - 52px + 6px) !important;
}
main .index {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dashboard {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.dashboard header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 5vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2vh;
  margin-bottom: 10px;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 2rem;
  margin-right: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.dashboard header .header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.dashboard header .logo-link {
  transition: all 0.3s ease;
}
.dashboard header .logo-link:hover {
  transform: scale(1.05);
}
.dashboard header .logo-link img {
  display: flex;
  height: 43px;
  width: 42px;
  transition: all 0.3s ease;
}
.dashboard header .logo-link img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.3));
}
.dashboard header .header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dashboard header .header-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 10px;
  background: transparent;
  color: ivory;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.dashboard header .header-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.3s ease;
  z-index: -1;
}
.dashboard header .header-nav a:hover {
  color: #fff;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.dashboard header .header-nav a:hover::before {
  left: 0;
}
.dashboard header .header-nav a.selected {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.dashboard header .header-right {
  display: flex;
  align-items: center;
}
.dashboard header .header-right .discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #5865F2;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.dashboard header .header-right .discord-btn img {
  width: 20px;
  height: 20px;
}
.dashboard header .header-right .discord-btn:hover {
  background: #707bf4;
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

cfxResolverFooter {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 4px;
}
cfxResolverFooter cfxResolverFooterContent {
  max-width: 900px;
  text-align: center;
}
cfxResolverFooter cfxResolverFooterContent .footer-disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}
cfxResolverFooter cfxResolverFooterContent .footer-disclaimer a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}
cfxResolverFooter cfxResolverFooterContent .footer-disclaimer a:hover {
  color: #93a4f0;
  text-decoration: underline;
}

.cfx-resolver-index-buttons {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cfx-resolver-index-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 220px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cfx-resolver-index-buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.3s ease;
  z-index: -1;
}
.cfx-resolver-index-buttons a:hover {
  color: #fff;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.cfx-resolver-index-buttons a:hover::before {
  left: 0;
}
.cfx-resolver-index-buttons a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.5);
}
.cfx-resolver-index-buttons a .material-symbols-outlined {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(102, 126, 234, 0.25));
}

.hero-section {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  position: relative;
  margin-top: 1rem;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}
.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #667eea;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.hero-section .hero-badge .material-symbols-outlined {
  font-size: 1.2rem;
}
.hero-section .hero-badge:hover {
  background: rgba(102, 126, 234, 0.3);
  transform: translateY(-2px);
}
.hero-section .hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}
.hero-section .hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}
.hero-section .hero-subtitle {
  font-size: 1.8rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.hero-section .hero-description {
  font-size: 1.2rem;
  color: #b0b0b0;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-weight: 400;
}
.hero-section .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-section .hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 120px;
}
.hero-section .hero-stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}
.hero-section .hero-stats .stat-item .stat-number {
  display: block;
  margin: 0 auto 0.5rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section .hero-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-section {
  width: 100%;
  max-width: 1400px;
  margin-bottom: 5rem;
}
.features-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.features-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.features-section .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.features-section .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.2s ease;
}
.features-section .feature-card:hover {
  border-color: #667eea;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}
.features-section .feature-card:hover::before {
  left: 100%;
}
.features-section .feature-card .feature-icon {
  margin-bottom: 2rem;
  position: relative;
}
.features-section .feature-card .feature-icon .material-symbols-outlined {
  font-size: 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.3));
}
.features-section .feature-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 600;
}
.features-section .feature-card p {
  color: #ccc;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  body {
    margin: 0 1rem;
  }
  main {
    margin-left: 0;
    margin-right: 0;
  }
  .dashboard header {
    margin-left: 0;
    margin-right: 0;
    padding: 0 1rem;
    height: auto;
    min-height: 5vh;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    top: 0;
  }
  .dashboard header .header-left {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .dashboard header .header-nav {
    width: 100%;
  }
  .dashboard header .header-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
  }
  .dashboard header .header-nav a {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .hero-stats .stat-item {
    min-width: 100px;
    padding: 1rem;
  }
  .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
  .hero-stats .stat-item .stat-label {
    font-size: 0.8rem;
  }
  .search-input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .search-input {
    max-width: none;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .step {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .example-tags {
    justify-content: flex-start;
  }
  .search-section .search-container {
    padding: 2rem 1.5rem;
  }
  .features-section .feature-card {
    padding: 2rem 1.5rem;
  }
  .how-it-works-section .step {
    padding: 2rem 1.5rem;
  }
  .cta-section {
    padding: 3rem 2rem;
  }
}
@media (max-width: 480px) {
  .dashboard header .header-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-stats .stat-item {
    min-width: auto;
  }
  .search-section .search-container h2 {
    font-size: 2rem;
  }
  .features-section h2,
  .how-it-works-section h2,
  .cta-section h2 {
    font-size: 2.5rem;
  }
}/*# sourceMappingURL=main.css.map */