:root  {
  --primary-color: #4a00e0;
  --secondary-color: #8e2de2;
  --accent-color: #00d9ff;
  --dark-bg: #0a0a10;
  --darker-bg: #050507;
  --light-text: #f0f0f0;
  --gray-text: #a0a0a0;
  --card-bg: rgba(30, 30, 50, 0.6);
  --glow-shadow: 0 0 10px rgba(74, 0, 224, 0.7),
                 0 0 20px rgba(74, 0, 224, 0.5),
                 0 0 30px rgba(74, 0, 224, 0.3);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  overflow-x: hidden;
  position: relative;
}

.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(74, 0, 224, 0.5);
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 16, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 0, 224, 0.2);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light-text);
}

.logo i {
  margin-right: 0.5rem;
  color: var(--accent-color);
  font-size: 1.8rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
  border-radius: 8px;
}

.footer-logo-img {
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
  border-radius: 6px;
}

.nav-links ul {
  display: flex;
  list-style: none;
}

.nav-links ul li {
  margin-left: 2rem;
}

.nav-links ul li a {
  color: var(--gray-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-links ul li a:hover {
  color: var(--light-text);
}

.nav-links ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.nav-links ul li a:hover::after {
  width: 100%;
}

#openMenu, #closeMenu {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 80px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.hero-content h2 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.hero-content p {
  color: var(--gray-text);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(74, 0, 224, 0.3);
  object-fit: cover;
  max-height: 500px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn, .discord-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.primary-btn {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glow-btn:hover::before {
  opacity: 1;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow);
}

.secondary-btn {
  background: transparent;
  color: var(--light-text);
  border: 1px solid var(--primary-color);
}

.secondary-btn:hover {
  background: rgba(74, 0, 224, 0.1);
  transform: translateY(-3px);
}

.discord-btn {
  background: #5865F2;
  color: white;
  border: none;
}

.discord-btn:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.7);
}

.primary-btn i, .secondary-btn i, .discord-btn i {
  margin-right: 0.5rem;
}

/* Section Styling */
section {
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.underline {
  height: 3px;
  width: 80px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 0 auto;
}

/* Features Section */
.features-section {
  background-color: var(--darker-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(142, 45, 226, 0.1);
  backdrop-filter: blur(5px);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(74, 0, 224, 0.2);
  border-color: rgba(142, 45, 226, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--light-text);
}

.feature-card ul {
  list-style-position: inside;
  color: var(--gray-text);
}

.feature-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
  list-style-type: none;
}

.feature-card ul li::before {
  content: "•";
  color: var(--accent-color);
  position: absolute;
  left: 0;
}

/* Commands Section */
.commands-section {
  position: relative;
  z-index: 1;
}

.command-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.prefix-info {
  text-align: center;
  margin-bottom: 2rem;
}

.prefix-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--accent-color);
  font-size: 2rem;
  font-weight: 700;
}

.command-examples {
  width: 100%;
}

.code-block {
  background: rgba(5, 5, 10, 0.9);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.code-header {
  background: rgba(10, 10, 20, 0.9);
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.code-header span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: var(--accent-color);
}

.copy-btn {
  background: transparent;
  border: none;
  color: var(--gray-text);
  cursor: pointer;
  transition: var(--transition);
}

.copy-btn:hover {
  color: var(--light-text);
}

pre {
  padding: 1.5rem;
  overflow-x: auto;
  margin: 0;
}

code {
  font-family: 'Courier New', monospace;
  color: var(--light-text);
  line-height: 1.6;
}

.matrix-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  overflow: hidden;
}

.matrix-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.2);
}

/* About Section */
.about-section {
  background-color: var(--darker-bg);
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(74, 0, 224, 0.7), rgba(142, 45, 226, 0.4));
  opacity: 0.5;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  font-family: 'Orbitron', sans-serif;
}

.stat-label {
  color: var(--gray-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Developer Section */
.developer-section {
  background-color: var(--dark-bg);
  position: relative;
}

.developer-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.developer-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(74, 0, 224, 0.3);
}

.developer-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.developer-image:hover img {
  transform: scale(1.05);
}

.developer-text {
  flex: 1;
}

.developer-text h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--light-text);
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.developer-role {
  font-size: 1.1rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

.developer-text p {
  margin-bottom: 1.5rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.developer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
}

.social-link i {
  margin-right: 0.5rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Discord Section */
.discord-section {
  background-color: var(--darker-bg);
  position: relative;
}

.discord-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.discord-text {
  flex: 1;
}

.discord-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--light-text);
}

.discord-text p {
  margin-bottom: 1.5rem;
  color: var(--gray-text);
  line-height: 1.7;
}

.discord-widget {
  flex: 1;
  display: flex;
  justify-content: center;
}

.discord-widget iframe {
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(88, 101, 242, 0.3);
}

.discord-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.discord-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discord-stat i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.discord-stat span:first-of-type {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Orbitron', sans-serif;
  color: var(--light-text);
}

.discord-stat span:last-of-type {
  font-size: 0.9rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(74, 0, 224, 0.8), rgba(142, 45, 226, 0.8));
  text-align: center;
  padding: 5rem 1rem;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: var(--darker-bg);
  padding: 4rem 5% 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light-text);
  margin-bottom: 1rem;
}

.footer-logo i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column h4 {
  margin-bottom: 1.5rem;
  color: var(--light-text);
  position: relative;
  display: inline-block;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  bottom: -8px;
  left: 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: var(--gray-text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--light-text);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #00d9ff;
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #4a00e0;
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% {
    clip: rect(132px, 350px, 101px, 30px);
  }
  20% {
    clip: rect(35px, 350px, 235px, 30px);
  }
  40% {
    clip: rect(162px, 350px, 73px, 30px);
  }
  60% {
    clip: rect(17px, 350px, 166px, 30px);
  }
  80% {
    clip: rect(28px, 350px, 16px, 30px);
  }
  100% {
    clip: rect(87px, 350px, 82px, 30px);
  }
}

@keyframes glitch-anim-2 {
  0% {
    clip: rect(129px, 350px, 36px, 30px);
  }
  20% {
    clip: rect(36px, 350px, 4px, 30px);
  }
  40% {
    clip: rect(27px, 350px, 139px, 30px);
  }
  60% {
    clip: rect(98px, 350px, 7px, 30px);
  }
  80% {
    clip: rect(94px, 350px, 140px, 30px);
  }
  100% {
    clip: rect(53px, 350px, 163px, 30px);
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-section {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-image {
    justify-content: center;
  }
  
  .about-content, .developer-content, .discord-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(10, 10, 20, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
    backdrop-filter: blur(10px);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links ul {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links ul li {
    margin: 1.5rem 0;
  }
  
  #openMenu, #closeMenu {
    display: block;
  }
  
  #closeMenu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-image img {
    max-height: 300px;
  }
  
  .discord-widget iframe {
    width: 100%;
    max-width: 350px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .primary-btn, .secondary-btn, .discord-btn {
    width: 100%;
  }
  
  .developer-links {
    flex-direction: column;
  }
}

.abc{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}