* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0d1117;
    color: #e6edf3;
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .sidebar {
    width: 280px;
    background: #161b22;
    border-right: 1px solid #30363d;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
  }
  
  .sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid #30363d;
    background: linear-gradient(135deg, #7289DA 0%, #A3B3F5 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiByeD0iOCIgZmlsbD0iIzY2N2VlYSIvPgo8Y2lyY2xlIGN4PSIxNSIgY3k9IjE1IiByPSIzIiBmaWxsPSIjZmZmIi8+CjxjaXJjbGUgY3g9IjI1IiBjeT0iMTUiIHI9IjMiIGZpbGw9IiNmZmYiLz4KPHBhdGggZD0iTTE1IDI1SDI1IiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=') center/cover;
  }
  
  .sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .sidebar-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 300;
  }
  
  .nav-menu {
    padding: 16px 0;
  }
  
  .nav-item {
    display: block;
    padding: 12px 20px;
    color: #8b949e;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  
  .nav-item:hover {
    background-color: #21262d;
    border-left-color: #7289DA;
    color: #c9d1d9;
  }
  
  .nav-item.active {
    background-color: #1f2937;
    border-left-color: #7289DA;
    color: #A3B3F5;
  }
  
  .nav-item .icon {
    margin-right: 8px;
    font-size: 16px;
  }
  
  .main-content {
    margin-left: 280px;
    flex: 1;
    padding: 40px 60px;
    max-width: calc(100% - 280px);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  .content-section {
    display: none;
    animation: fadeIn 0.3s ease-in;
  }
  
  .content-section.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  h1 {
    font-size: 32px;
    font-weight: 700;
    color: #f0f6fc;
    margin-bottom: 8px;
  }
  
  .subtitle {
    font-size: 18px;
    color: #8b949e;
    margin-bottom: 32px;
    font-weight: 400;
  }
  
  h2 {
    font-size: 24px;
    font-weight: 600;
    color: #e6edf3;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #30363d;
  }
  
  h3 {
    font-size: 18px;
    font-weight: 600;
    color: #c9d1d9;
    margin: 24px 0 12px 0;
  }
  
  .command-grid {
    display: grid;
    gap: 16px;
    margin: 16px 0;
  }
  
  .command-card {
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }
  
  .command-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    border-color: #7289DA;
  }
  
  .command-name {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background: #161b22;
    color: #7289DA;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
    border: 1px solid #30363d;
  }
  
  .command-description {
    color: #8b949e;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
  }
  
  .info-card {
    background: #21262d;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  
  .info-card h3 {
    margin: 0 0 16px 0;
    color: #e6edf3;
    font-size: 16px;
    font-weight: 600;
  }
  
  .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #30363d;
  }
  
  .info-item:last-child {
    border-bottom: none;
  }
  
  .info-label {
    font-weight: 500;
    color: #8b949e;
    font-size: 14px;
  }
  
  .info-value {
    font-weight: 600;
    color: #e6edf3;
    font-size: 14px;
  }
  
  .status-online {
    color: #38a169;
  }
  
  .status-enabled {
    color: #38a169;
  }
  
  .status-disabled {
    color: #e53e3e;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
  }
  
  .feature-card {
    background: linear-gradient(135deg, #7289DA 0%, #A3B3F5 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(114, 137, 218, 0.3);
    transition: transform 0.2s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(114, 137, 218, 0.4);
  }
  
  .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .feature-description {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
  }
  
  .developer-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
  .developer-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 24px 0;
  }
  
  .developer {
    text-align: center;
  }
  
  .developer-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #7289DA 0%, #A3B3F5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 8px;
  }
  
  .developer-name {
    font-weight: 600;
    color: #2d3748;
  }
  
  @media (max-width: 768px) {
    body {
      overflow-x: hidden;
      position: relative;
    }
    
    .sidebar {
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      width: 280px;
      height: 100vh;
      overflow-y: auto;
    }
  
    .sidebar.mobile-open {
      transform: translateX(0);
    }
  
    .main-content {
      margin-left: 0;
      max-width: 100%;
      padding: 20px;
      padding-top: 80px;
      overflow-x: hidden;
      min-height: 100vh;
    }
  
    .mobile-menu-toggle {
      display: block !important;
      position: fixed;
      top: 20px;
      left: 20px;
      z-index: 1002;
      background: #7289DA;
      color: white;
      border: none;
      padding: 12px 16px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
      min-width: 48px;
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .mobile-menu-toggle:hover {
      background: #5b6eae;
      transform: scale(1.05);
    }
    
    .mobile-menu-toggle:active {
      transform: scale(0.95);
    }
    
    .mobile-overlay {
      display: block;
    }
    
    .command-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    
    .info-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .feature-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  
  .mobile-menu-toggle {
    display: none;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
  }


  .developer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
  }
  
  .dev-card {
    background: linear-gradient(135deg, #1f2937, #2a3240);
    border: 1px solid #30363d;
    border-radius: 16px;
    width: 280px;
    padding: 24px;
    text-align: center;
    color: #e6edf3;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
  }
  
  .dev-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.5);
    border-color: #7289DA;
  }
  
  .dev-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #7289DA;
    box-shadow: 0 0 12px rgba(114,137,218,0.5);
  }
  
  .dev-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .dev-info h3 {
    margin-bottom: 4px;
    font-size: 20px;
    color: #A3B3F5;
  }
  
  .dev-info p {
    font-size: 14px;
    color: #8b949e;
    margin-bottom: 6px;
  }
  
  .dev-info span {
    font-size: 13px;
    color: #7289DA;
  }

.discord-container {
  max-width: 800px;
  margin: 0 auto;
}

.discord-card {
  background: linear-gradient(135deg, #1f2937, #2a3240);
  border: 1px solid #30363d;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.discord-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(114, 137, 218, 0.1) 0%, rgba(163, 179, 245, 0.05) 100%);
  z-index: 1;
}

.discord-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: #7289DA;
}

.discord-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(114, 137, 218, 0.3);
  position: relative;
  z-index: 2;
}

.discord-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7289DA 0%, #A3B3F5 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(114, 137, 218, 0.4);
  transition: all 0.3s ease;
}

.discord-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(114, 137, 218, 0.6);
}

.discord-info h3 {
  font-size: 2rem;
  color: #A3B3F5;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.discord-info p {
  color: #8b949e;
  font-size: 1.1rem;
  line-height: 1.6;
}

.discord-widget {
  margin: 2rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(114, 137, 218, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.discord-widget:hover {
  border-color: #7289DA;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.discord-widget iframe {
  display: block;
  border: none;
  width: 100%;
  height: 400px;
  background: #1f2937;
}

.discord-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.discord-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-width: 180px;
  justify-content: center;
}

.discord-actions a:first-child {
  background: linear-gradient(135deg, #7289DA 0%, #A3B3F5 100%);
  color: white;
  border: 1px solid #7289DA;
}

.discord-actions a:last-child {
  background: transparent;
  color: #A3B3F5;
  border: 2px solid #7289DA;
}

.discord-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(114, 137, 218, 0.4);
}

.discord-actions a:first-child:hover {
  background: linear-gradient(135deg, #5b6eaa 0%, #8c9ede 100%);
}

.discord-actions a:last-child:hover {
  background: rgba(114, 137, 218, 0.1);
  border-color: #A3B3F5;
}

@media (max-width: 768px) {
  .discord-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .discord-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .discord-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .discord-info h3 {
    font-size: 1.8rem;
  }
  
  .discord-info p {
    font-size: 1rem;
  }
  
  .discord-widget iframe {
    height: 350px;
  }
  
  .discord-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .discord-actions a {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .discord-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .discord-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }
  
  .discord-info h3 {
    font-size: 1.6rem;
  }
  
  .discord-widget iframe {
    height: 300px;
  }
}
