* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

.container-guide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header-guide {
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255, 156, 0, 0.3);
}

.nav-guide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-guide {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 156, 0, 0.5);
}

.nav-links-guide {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links-guide a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-links-guide a:hover {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  color: #000000;
  transform: translateY(-2px);
}

/* Hero Section */
.page-hero-guide {
  padding: 120px 0 80px;
  text-align: center;
  background: radial-gradient(
    circle at center,
    rgba(255, 156, 0, 0.1) 0%,
    transparent 70%
  );
}

.page-title-guide {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
}

.neon-guide {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 156, 0, 0.8);
  filter: drop-shadow(0 0 20px rgba(255, 156, 0, 0.6));
}

.page-subtitle-guide {
  font-size: 1.5rem;
  color: #ffffff;
  opacity: 0.9;
}

/* Discord Section Styles - New Addition */
.discord-section-guide {
  margin-bottom: 4rem;
}

.discord-card-guide {
  border: 2px solid #5865f2 !important;
  background: linear-gradient(
    135deg,
    rgba(88, 101, 242, 0.1) 0%,
    rgba(26, 26, 26, 0.9) 30%,
    rgba(0, 0, 0, 0.8) 100%
  ) !important;
}

.discord-card-guide:hover {
  box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3) !important;
}

.discord-card-guide h2 {
  color: #5865f2 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
}

.discord-warning-guide {
  background: linear-gradient(45deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffc107;
  font-weight: 600;
}

.discord-warning-guide i {
  font-size: 1.2rem;
  animation: warning-pulse 2s infinite;
}

@keyframes warning-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.discord-steps-guide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.discord-step-guide {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.discord-step-guide:hover {
  transform: translateX(5px);
  border-color: #5865f2;
}

.discord-step-number-guide {
  background: #5865f2;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.discord-step-content-guide h4 {
  color: #5865f2;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.discord-link-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5865f2;
  text-decoration: none;
  font-family: monospace;
  background: rgba(88, 101, 242, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.discord-link-guide:hover {
  background: rgba(88, 101, 242, 0.3);
  transform: translateY(-2px);
}

.bot-mention-guide {
  background: rgba(88, 101, 242, 0.3);
  color: #5865f2;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.code-example-guide {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #5865f2;
  border-radius: 6px;
  padding: 1rem;
  margin: 0.5rem 0;
  text-align: center;
}

.code-example-guide code {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffd84a;
  background: none;
  padding: 0;
}

.code-note-guide {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.5rem;
  font-style: italic;
}

.discord-help-guide {
  background: rgba(0, 150, 136, 0.2);
  border: 1px solid #009688;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4db6ac;
}

.discord-help-guide i {
  font-size: 1.1rem;
}

/* Main Content */
.join-content-guide {
  padding: 80px 0;
}

.join-grid-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.server-info-guide {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card-guide {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border: 1px solid rgba(255, 156, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-guide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 156, 0, 0.2);
}

.info-card-guide h2 {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.server-details-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item-guide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 156, 0, 0.1);
  border-radius: 8px;
  border-left: 3px solid #ff9c00;
}

.detail-label-guide {
  font-weight: 600;
  color: #ffd84a;
}

.detail-value-guide {
  font-family: "Courier New", monospace;
  color: #ffffff;
}

.server-ip-guide {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.copy-btn-guide {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  border: none;
  color: #000000;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.copy-btn-guide:hover {
  transform: scale(1.1);
}

.status-grid-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.status-item-guide {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 156, 0, 0.1);
  border-radius: 8px;
}

.status-item-guide.online-guide .fas {
  color: #00ff00;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Steps Section */
.join-steps-guide h2 {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.steps-container-guide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-guide {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border: 1px solid rgba(255, 156, 0, 0.3);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.step-guide:hover {
  transform: translateX(10px);
  border-color: #ff9c00;
}

.step-number-guide {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content-guide h3 {
  color: #ffd84a;
  margin-bottom: 0.5rem;
}

.step-content-guide code {
  background: rgba(255, 156, 0, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  color: #ffd84a;
}

.req-card-guide {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border: 1px solid rgba(255, 156, 0, 0.3);
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.req-card-guide:hover {
  transform: translateY(-5px);
  border-color: #ff9c00;
}

.req-card-guide h3 {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.req-card-guide ul {
  list-style: none;
}

.req-card-guide li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 156, 0, 0.2);
}

.req-card-guide li:last-child {
  border-bottom: none;
}

.req-card-guide strong {
  color: #ffd84a;
}

/* CTA Section */
.join-cta-guide {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border-radius: 20px;
  border: 2px solid rgba(255, 156, 0, 0.3);
}

.join-cta-guide h2 {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.join-cta-guide p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons-guide {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn-guide {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.btn-primary-guide {
  background: #5865f2;
  color: #ffffff;
}

.btn-primary-guide:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(88, 101, 242, 0.4);
  background: #4752c4;
}

.btn-secondary-guide {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ff9c00;
}

.btn-secondary-guide:hover {
  background: linear-gradient(45deg, #ffd84a, #ff9c00);
  color: #000000;
  transform: translateY(-3px);
}

/* Footer */
.footer-guide {
  background: rgba(0, 0, 0, 0.9);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 156, 0, 0.3);
  margin-top: 4rem;
}

.footer-guide p {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .join-grid-guide {
    grid-template-columns: 1fr;
  }

  .page-title-guide {
    font-size: 2.5rem;
  }

  .nav-links-guide {
    display: none;
  }

  .cta-buttons-guide {
    flex-direction: column;
    align-items: center;
  }

  .container-guide {
    padding: 0 15px;
  }

  .discord-steps-guide,
  .discord-step-guide {
    gap: 1rem;
  }
  
  .discord-step-content-guide h4 {
    font-size: 1rem;
  }
}