/* Reset and Base Styles */
* {
    margin: 0;
    padding: 3;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #210e01, #1e293b);
    color: #f1f5f9;
    overflow-x: hidden;
    position: relative;
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  
  
  /* Header Styles */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    height: 64px;
    backdrop-filter: blur(10px);
    top: 0;
    z-index: 1000;
  }
  
  header h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6700;
    letter-spacing: -0.025em;
  }
  
  nav {
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s, transform 0.2s;
  }
  
  nav a:hover {
    color: #ff6700;
    transform: translateY(-2px);
  }
  nav a.active {
  color: #00ff99;
  font-weight: bold;
  border-bottom: 2px solid #00ff99;
}

  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    font-size: 1.4rem;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .menu-toggle:hover {
    color: #ff6700;
  }
  
  /* Hero Section */
  .hero {
    padding: 80px 0;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  
  .hero-text {
    flex: 1;
    min-width: 320px;
  }
  
  .hero-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ff6700, #ff6700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #cbd5e1;
    max-width: 500px;
  }

  .hero-slider {
  position: relative;
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  height: 400px; /* Adjust based on image aspect ratio */
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the slider without distortion */
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #333; /* Active dot color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-slider {
    height: 300px; /* Smaller height for mobile */
  }
}
  
.download-btn {
  padding: 10px 24px;
  background-color: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px; /* Ensures consistent height */
  transition: background 0.3s;
}

.download-btn:hover {
  background-color: #e05500;
}

.download-btn.alt {
  background-color: #ff6700;
}

.download-btn.alt:hover {
  background-color: #d76d6d;
}
  
  .hero-image {
    flex: 1;
    min-width: 320px;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
  
  /* Reseller Section */
  .resellers {
    padding: 80px 0;
    text-align: center;
  }
  
  .resellers h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 48px;
    background: linear-gradient(to right, #ff6700, #ff6700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .reseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
  }
  
  .reseller-card {
    background: #1e293b;
    padding: 24px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .reseller-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff6700, #ff6700);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .reseller-card:hover::before {
    opacity: 1;
  }
  
  .reseller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  }
  
  .reseller-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid #ff6700;
  }
  
  .reseller-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f1f5f9;
  }
  
  .reseller-card p {
    color: #cbd5e1;
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  
  .social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
  }
  
  .social-links a {
    color: #94a3b8;
    font-size: 1.25rem;
    transition: color 0.3s, transform 0.2s;
  }
  
  .social-links a:hover {
    color: #ff6700;
    transform: scale(1.2);
  }
  
  /* Tools Section */
  .tools {
    padding: 80px 0;
    text-align: center;
  }
  
  .tools h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 48px;
    background: linear-gradient(to right, #ff6700, #ff6700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
  }
  
  .tool-card {
    background: #1e293b;
    padding: 24px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
  }
  
  .tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ff6700, #ff6700);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .tool-card:hover::before {
    opacity: 1;
  }
  
  .tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  }
  
  .tool-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 3px solid #ff6700;
  }
  
  .tool-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f1f5f9;
  }
  
  .tool-card p {
    color: #cbd5e1;
    margin-bottom: 16px;
    font-size: 0.95rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid #1e293b;
  }
  
  footer p {
    font-size: 0.9rem;
    color: #94a3b8;
  }
  
  /* Shooting Stars */
  .stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }
  
  .star {
    position: absolute;
    background: #f1f5f9;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    animation: shooting-star 1.5s linear infinite;
    opacity: 0;
  }
  
  @keyframes shooting-star {
    0% { transform: translate(0, 0); opacity: 0.8; }
    100% { transform: translate(240px, 240px); opacity: 0; }
  }
  
  /* Random star positions */
  .star:nth-child(1) { top: 10%; left: 20%; animation-delay: 0.2s; }
  .star:nth-child(2) { top: 30%; left: 50%; animation-delay: 0.6s; }
  .star:nth-child(3) { top: 50%; left: 70%; animation-delay: 1.2s; }
  /* Add more star positions as needed up to 50 */
  
  /* Mouse Trail */
  .mouse-trail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
  }
  
  .trail-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6700;
    border-radius: 50%;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    animation: glow-fade 0.6s ease-out forwards;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
  }
  
  @keyframes glow-fade {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  }
  
  /* Custom Cursor */
  body {
    cursor: none;
  }
  
  .custom-cursor {
    position: fixed;
    width: 24px;
    height: 24px;
    border: 2px solid #ff6700;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  }
  
  /* Animations */
  .animate-fade-up {
    animation: fadeUp 1s ease-out;
  }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Mobile Optimization */
  @media (max-width: 768px) {
    header {
      height: 56px;
      padding: 12px 0;
    }
  
    nav {
      display: none;
      flex-direction: column;
      width: 100%;
      text-align: center;
      gap: 12px;
      background: #0f172a;
      padding: 16px 0;
      position: absolute;
      top: 56px;
      left: 0;
      z-index: 1000;
      border-top: 1px solid #1e293b;
    }
  
    nav.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .hero-content {
      flex-direction: column;
      text-align: center;
      gap: 32px;
    }
  
    .download-buttons {
      justify-content: center;
    }
  
    .hero-text h2 {
      font-size: 2rem;
    }
  
    .hero-text p {
      font-size: 1rem;
    }
  
    .resellers h2, .tools h2 {
      font-size: 1.75rem;
    }
  
    .reseller-grid, .tools-grid {
      grid-template-columns: 1fr;
    }
  
    .custom-cursor {
      display: none;
    }
  
    body {
      cursor: auto;
    }
  }
  
  @media (max-width: 480px) {
    header h1 {
      font-size: 1.3rem;
    }
  
    .hero-text h2, .tools h2 {
      font-size: 1.75rem;
    }
  
    .hero-text p, .tool-card p {
      font-size: 0.95rem;
    }
  
    .download-btn {
      padding: 10px 24px;
      font-size: 0.9rem;
    }
  
    .resellers h2 {
      font-size: 1.5rem;
    }
  
    .reseller-card img {
      width: 100px;
      height: 100px;
    }
  
    .tool-card img {
      height: 140px;
    }
  
    .trail-dot {
      width: 6px;
      height: 6px;
    }
  }




  .hero-slider {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    height: 400px; /* Adjust based on image aspect ratio */
    overflow: hidden;
  }
  
  .slider {
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the slider without distortion */
  }
  
  .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: #333; /* Active dot color */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-slider {
      height: 300px; /* Smaller height for mobile */
    }
  }


  /* Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust based on your design */
    height: 400px; /* Adjust based on image aspect ratio */
    overflow: hidden;
  }
  
  .slider {
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the slider without distortion */
  }
  
  .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: #333; /* Active dot color */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-slider {
      max-width: 100%;
      height: 300px; /* Smaller height for mobile */
    }
  }

  .hero {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .typing-text {
    display: inline-block;
    border-right: 2px solid #fff;
    padding-right: 5px;
    min-width: 150px;
    text-align: left;
  }



/* Scroll Bar */
  .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6600;
    color: #fff;
    padding: 10px 16px;
    border-radius: 50%;
    text-decoration: none;
    display: none;
    font-size: 18px;
    z-index: 999;
  }
  
  .scroll-top:hover {
    background: #e05500;
  }
  
  /* server */
  
  .status-box {
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 12px;
  color: white;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  text-align: center;
}
.status-box .service {
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  background: #2a2a2a;
  font-weight: bold;
}
.status-box .service.offline {
  background: #ff4d4d;
  color: #fff;
}
.status-box .countdown {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.status-box .links a {
  color: #00bfff;
  text-decoration: none;
  margin: 0 0.5rem;
}


/* Star Effect */
.stars .star {
  position: absolute;
  background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0));
  height: 1px;
  width: 50px;
  animation: shoot 2s infinite;
}

.stars .star:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.stars .star:nth-child(2) { top: 50%; left: 60%; animation-delay: 0.5s; }
.stars .star:nth-child(3) { top: 80%; left: 20%; animation-delay: 1s; }

@keyframes shoot {
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(100px); opacity: 0; }
}

/* Mouse Trail Effect */
.trail-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: rgba(59, 130, 246, 0.8);
  border-radius: 50%;
  pointer-events: none;
  animation: fade 0.5s ease-out forwards;
}

@keyframes fade {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}

/* Mobile Menu */
nav a {
  display: block;
  text-align: center;
}