/* ============================================ */
/* LEMONPYHUB - MASTER STYLE.CSS                */
/* Consolidated & Error-Free Version           */
/* ============================================ */

/* ===== 1. RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Fira Code', monospace;
  background: #1a1a1a;
  color: #c9d1d9;
  text-align: center;
  padding: 50px;
  position: relative;
}

/* Light gradient effect (applies to multiple pages) */
body::before {
  content: "";
  width: 100%;
  height: 750px;
  position: absolute;
  top: -200px;
  left: 10px;
  transform: rotate(55deg);
  background: rgba(255,255,255,0.1);
  background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(42,31,25,0) 65%);
  z-index: -1;
}

/* ===== 2. MATRIX CANVAS ===== */
#matrixCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

/* ===== 3. TYPOGRAPHY ===== */
h1 {
  width: 100%;
  margin: 0 auto 0 auto;
  font-family: 'Lato', sans-serif;
  line-height: 1.2;
  font-size: 5rem;
  padding: 10px 20px 15px;
  text-align: center;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  color: #00ffcc;
  letter-spacing: .15em;
  text-shadow: 
    -1px -1px 1px #00ffcc, 
    0px 1px 0 #2e2e2e, 
    0px 2px 0 #2c2c2c, 
    0px 3px 0 #2a2a2a, 
    0px 4px 0 #282828, 
    0px 5px 0 #262626, 
    0px 6px 0 #242424, 
    0px 7px 0 #222, 
    0px 8px 0 #202020, 
    0px 9px 0 #1e1e1e, 
    0px 10px 0 #1c1c1c, 
    0px 11px 0 #1a1a1a, 
    0px 12px 0 #181818, 
    0px 13px 0 #161616, 
    0px 14px 0 #141414, 
    0px 15px 0 #121212,
    2px 20px 5px rgba(0, 0, 0, 0.9),
    5px 23px 5px rgba(0, 0, 0, 0.3),
    8px 27px 8px rgba(0, 0, 0, 0.5),
    8px 28px 35px rgba(0, 0, 0, 0.9),
    0 0 10px #00ffcc,
    0 0 20px #00ffcc,
    0 0 30px #00ffcc;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #00ffcc;
  margin: 30px auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0,255,204,0.6);
}

/* Donate page heading (smaller) */
.donate-page h1,
body.donate-page h1 {
  font-size: 3.0rem;
  padding: 20px 50px 30px;
}

h2 {
  color: #58a6ff;
  font-size: 2rem;
  margin-top: 40px;
}

h3 {
  color: #58a6ff;
  font-size: 1.5rem;
}

p {
  color: #e8e6e3;
  line-height: 1.7;
}

/* ===== 4. LAYOUT COMPONENTS ===== */
.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

nav {
  text-align: center;
  margin-top: 10px;
}

/* Intro box - used across multiple pages */
.intro-box {
  text-align: center;
  background: #161b22;
  padding: 25px 20px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,255,200,0.3);
  line-height: 1.6;
  max-width: 800px;
}

/* Content section for donate page */
.content-section {
  background: #161b22;
  padding: 25px 20px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,255,200,0.3);
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== 5. GLOW EFFECT ===== */
.glow, .glow * {
  color: #00ffcc !important;
  text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

/* ===== 6. NAVIGATION BUTTONS ===== */
.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 10px 10px 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: #58a6ff;
  font-weight: bold;
  border-radius: 8px;
  background: #21262d;
  border: 1px solid #58a6ff;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(88, 166, 255, 0.7);
  box-sizing: border-box;
  min-width: 140px;
  max-width: 200px;
  font-size: 14px;
}

.nav-btn:hover, .nav-btn:focus {
  color: #00ffcc;
  border-color: #00ffcc;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.9);
  animation: pulse 1s infinite;
  outline: 2px solid #00ffcc;
  outline-offset: 2px;
}

.nav-btn i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.nav-btn:hover i {
  transform: scale(1.2);
}

/* ===== 7. ANIMATIONS ===== */
@keyframes pulse {
  0% {
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(0, 255, 204, 0);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(0, 255, 204, 0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes laser-scan {
  from {
    left: 0;
  }
  to {
    left: calc(100% - 40px);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeSlideUp 1s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }
.fade-in.delay-3 { animation-delay: 0.9s; }
.fade-in.delay-4 { animation-delay: 1.2s; }
.fade-in.delay-5 { animation-delay: 1.5s; }

/* ===== 8. FOOTER & POWERED ===== */
footer {
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid #333;
  font-size: 0.8em;
  color: #8b949e;
  text-align: center;
}

.powered {
  font-size: 12px;
  color: #00ffcc;
  text-align: center;
  text-shadow: 0 0 3px #00ffcc, 0 0 6px #00ffcc;
  position: relative;
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 14px;
}

.powered::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 0;
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, transparent, #00ffcc, transparent);
  border-radius: 4px;
  animation: laser-scan 4s ease-in-out infinite alternate;
  box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

/* ===== 9. SKIP LINK (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #00ffcc;
  color: #000;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  font-weight: bold;
}

.skip-link:focus {
  top: 6px;
}

/* ===== SHARE BUTTONS - FIXED FOR MOBILE ===== */
.share-container {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  padding: 5px;
  background: transparent;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  background-color: rgba(51, 51, 51, 0.85);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: 1px solid rgba(0, 255, 204, 0.3);
  outline: none;
}

.share-btn:hover {
  transform: scale(1.05);
}

.facebook-btn:hover { background-color: #1877F2; box-shadow: 0 0 20px #1877F2; }
.tiktok-btn:hover { background-color: #000000; box-shadow: 0 0 20px #000000; }
.instagram-btn:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 0 20px #d6249f; }
.whatsapp-btn:hover { background-color: #25D366; box-shadow: 0 0 20px #25D366; }
.telegram-btn:hover { background-color: #0088cc; box-shadow: 0 0 20px #0088cc; }
.reddit-btn:hover { background-color: #FF4500; box-shadow: 0 0 20px #FF4500; }
.native-share-btn:hover { background-color: #7e57c2; box-shadow: 0 0 20px #7e57c2; }

/* ===== 11. BLOG PAGE SPECIFIC ===== */
.featured-article {
  max-width: 1000px;
  margin: 40px auto;
  padding: 35px;
  background: #161b22;
  border-radius: 15px;
  border: 2px solid #00ffcc;
  box-shadow: 0 0 40px rgba(0, 255, 204, 0.4);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.featured-article::before {
  content: "🔥 HOT";
  position: absolute;
  top: 20px;
  right: -35px;
  background: #ff6b6b;
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
}

.featured-article h2 {
  color: #00ffcc;
  margin-top: 0;
  font-size: 2.2rem;
  border-left: 5px solid #00ffcc;
  padding-left: 20px;
}

.featured-article p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.featured-stats {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.stat-item {
  background: #0d1117;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #58a6ff;
  font-size: 0.9rem;
}

.stat-item i {
  color: #00ffcc;
  margin-right: 5px;
}

/* Before/After mini display */
.ba-mini {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.ba-mini-item {
  background: #0d1117;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
}

.ba-mini-item.before {
  border-left: 3px solid #ff6b6b;
}

.ba-mini-item.after {
  border-left: 3px solid #4caf50;
}

.ba-mini-time {
  font-size: 1.8rem;
  font-weight: bold;
}

.ba-mini-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #8b949e;
}

/* Blog post cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.blog-card {
  background: #161b22;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  border: 1px solid #58a6ff;
  box-shadow: 0 0 15px rgba(88, 166, 255, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: #00ffcc;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.5);
}

.blog-card h3 {
  margin-top: 0;
  color: #00ffcc;
  font-size: 1.4rem;
}

.blog-card p {
  color: #c9d1d9;
  line-height: 1.6;
  margin: 15px 0;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.85rem;
  color: #8b949e;
  margin-bottom: 10px;
}

.blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.blog-tag {
  background: #0d1117;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  border: 1px solid #58a6ff;
  color: #58a6ff;
}

.read-more {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid #00ffcc;
  color: #00ffcc;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.read-more:hover {
  background: #00ffcc;
  color: #1a1a1a;
}

/* Category filter */
.category-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.filter-btn {
  padding: 10px 20px;
  background: #21262d;
  border: 1px solid #58a6ff;
  color: #58a6ff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: #00ffcc;
  color: #1a1a1a;
  border-color: #00ffcc;
}

/* Newsletter section */
.newsletter-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background: #161b22;
  border-radius: 12px;
  border: 1px solid #00ffcc;
}

.newsletter-input {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input input {
  flex: 1;
  min-width: 250px;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #58a6ff;
  background: #0d1117;
  color: #fff;
  font-family: 'Fira Code', monospace;
}

.newsletter-input button {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  background: #00ffcc;
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-input button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffcc;
}

/* Call to Action Section */
.cta-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #0d1117;
  border-radius: 12px;
  border: 1px solid #00ffcc;
  text-align: center;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 25px 0;
}

/* ===== 12. DONATE PAGE SPECIFIC ===== */
.benefits-list {
  text-align: left;
  max-width: 500px;
  margin: 20px auto;
  padding-left: 20px;
}

.benefits-list li {
  margin: 10px 0;
  color: #e8e6e3;
}

#donate-container img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

/* ===== 13. DOWNLOAD PAGE SPECIFIC ===== */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px auto;
  max-width: 900px;
}

.search-box {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #00ffcc;
  background: #0d1117;
  color: #e8e6e3;
  font-family: 'Fira Code', monospace;
  width: 300px;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0,255,204,0.3);
}

/* Download page filter buttons (different style) */
.download-page .filter-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-family: 'Fira Code', monospace;
}

.download-page .filter-btn:hover,
.download-page .filter-btn.active {
  background: #00ffcc;
  color: #0d1117;
  border-color: #00ffcc;
  box-shadow: 0 0 15px rgba(0,255,204,0.7);
}

/* Apps grid */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.app-card {
  background: #161b22;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #30363d;
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,255,204,0.3);
  border-color: #00ffcc;
}

.app-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  height: 140px;
}

.app-icon {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.app-image-container:hover .app-icon {
  transform: scale(1.05);
}

.app-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #00ffcc;
  margin: 0 0 10px 0;
}

.app-description {
  color: #c9d1d9;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 15px;
  height: 60px;
  overflow: hidden;
  text-align: left;
}

.app-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #8b949e;
  margin-bottom: 15px;
}

.platform-tag {
  background: #21262d;
  padding: 3px 8px;
  border-radius: 4px;
}

.app-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.download-btn {
  display: block;
  text-align: center;
  padding: 8px;
  background: #21262d;
  color: #00ffcc;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #00ffcc;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.download-btn:hover,
.download-btn:focus {
  background: #00ffcc;
  color: #0d1117;
  box-shadow: 0 0 10px rgba(0,255,204,0.7);
}

.details-btn {
  display: block;
  text-align: center;
  padding: 6px;
  background: transparent;
  color: #58a6ff;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #58a6ff;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.details-btn:hover,
.details-btn:focus {
  background: #58a6ff;
  color: #0d1117;
}

.app-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #30363d;
  font-size: 0.7rem;
  color: #8b949e;
}

.blog-link {
  color: #58a6ff;
  text-decoration: none;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.blog-link:hover {
  color: #00ffcc;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10003;
}

.app-detail-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.modal-app-content {
  background: #161b22;
  border-radius: 12px;
  max-width: 900px;
  margin: 20px auto;
  padding: 25px;
  position: relative;
  box-shadow: 0 0 30px rgba(0,255,204,0.3);
}

.close-detail {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 10002;
}

.tool-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tool-img {
  max-width: 200px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

.download-block {
  font-family: 'Fira Code', monospace;
  color: #c9d1d9;
  background: #0d1117;
  padding: 15px;
  border-radius: 12px;
  flex: 1;
}

.btn {
  display: block;
  margin: 0 0 10px;
  width: fit-content;
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border: 1px solid #00ffcc;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #21262d;
}

.btn:hover {
  background: #00ffcc;
  color: #0d1117;
  transform: scale(1.02);
}

.copy-btn {
  display: inline-block;
  margin-left: 10px;
  padding: 6px 10px;
  font-size: 0.85rem;
  border-radius: 6px;
  border: 1px solid #00ffcc;
  background: #21262d;
  color: #00ffcc;
  cursor: pointer;
}

.copy-btn:hover {
  background: #00ffcc;
  color: #0d1117;
}

/* ===== 14. HELP/FAQ & MANUAL PAGES (Text alignment) ===== */
.helpfaq-page body,
.manual-page body {
  text-align: left;
}

.helpfaq-page h2, .helpfaq-page h3,
.manual-page h2, .manual-page h3 {
  text-align: left;
}

.helpfaq-page .intro-box,
.manual-page .intro-box {
  text-align: left;
}

.muted {
  color: #c9d1d9;
}

ul {
  text-align: left;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* ===== 15. RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 768px) {
  body {
    padding: 20px;
    padding-right: 55px; 
  }
  
  h1 {
    font-size: 3.2rem;
    padding: 50px 20px 20px;
    letter-spacing: .1em;
  }
  
  .nav-btn {
    display: inline-block;
    margin: 8px 10px;
    width: auto;
    min-width: 150px;
    max-width: 180px;
    padding: 12px 18px;
    font-size: 13px;
  }
  
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .intro-box {
    font-size: 14px;
    padding: 20px;
    margin: 15px auto;
  }
  
  .share-container {
    right: 10px;
    gap: 10px;
  }
  
  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px;
    padding-right: 50px;
  }
  
  h1 {
    font-size: 2.4rem;
    padding: 40px 15px 15px;
  }
  
  .nav-btn {
    margin: 6px 8px;
    min-width: 140px;
    max-width: 160px;
    padding: 10px 15px;
    font-size: 12px;
  }
  
  nav {
    gap: 6px;
  }
  
  .share-btn {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
}

@media (max-width: 360px) {
  body {
    padding: 12px;
    padding-right: 45px;
  }
  
  h1 {
    font-size: 2rem;
    padding: 30px 10px 10px;
  }
  
  .nav-btn {
    margin: 4px 6px;
    min-width: 130px;
    max-width: 150px;
    padding: 8px 12px;
    font-size: 11px;
  }
  
  nav {
    gap: 4px;
  }
  
  .share-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .share-container {
    gap: 8px;
  }
}

/* ===== RESPONSIVE SHARE BUTTON - MOBILE FIX ===== */

/* Tablet & Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .share-container {
    right: 10px;
    gap: 8px;
    padding: 4px;
  }
  
  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
  body {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .share-container {
    right: 10px;
    gap: 6px;
    padding: 3px;
  }
  
  .share-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Very Small Mobile (max-width: 380px) */
@media (max-width: 380px) {
  .share-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .share-container {
    right: 10px;
    gap: 5px;
    padding: 3px;
  }
}

/* Add spacing between list items */
ul li {
  margin-bottom: 15px;
}

/* Optional: Remove margin from last item */
ul li:last-child {
  margin-bottom: 0;
}

/* ============================================ */
/* HELP/FAQ PAGE SPECIFIC STYLES                */
/* Added without modifying existing code        */
/* ============================================ */

/* Matrix Canvas Styling */
#matrixCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  text-align: center;
  width: 100%;
}

p { 
  color: #e8e6e3;
  line-height: 1.7;
}

.glow, .glow * {
  color: #00ffcc !important;
  text-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

/* Light Effect */
body::before {
  content:"";
  width: 100%;
  height: 750px;
  position: absolute;
  top: -200px;
  left: 10px;
  transform: rotate(55deg);
  background: rgba(255,255,255,0.1);
  background: -moz-linear-gradient(left, rgba(255,255,255,0.1) 0%, rgba(42,31,25,0) 65%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0.1)), color-stop(65%, rgba(42,31,25,0)));
  background: -webkit-linear-gradient(left, rgba(255,255,255,0.1) 0%, rgba(42,31,25,0) 65%);
  background: -o-linear-gradient(left, rgba(255,255,255,0.1) 0%, rgba(42,31,25,0) 65%);
  background: -ms-linear-gradient(left, rgba(255,255,255,0.1) 0%, rgba(42,31,25,0) 65%);
  background: linear-gradient(to right, rgba(255,255,255,0.1) 0%, rgba(42,31,25,0) 65%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#2a1f19', GradientType=0.7 );
  z-index: -1;
}

/* 3D Effect for Title */
h1 {
  width: 100%;
  margin: 0 auto 0 auto;
  font-family: 'Lato', sans-serif;
  line-height: 1.2;
  font-size: 5rem;
  padding: 10px 20px 15px;
  text-align: center;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  color: #00ffcc;
  letter-spacing: .15em;
  text-shadow: 
    -1px -1px 1px #00ffcc, 
    0px 1px 0 #2e2e2e, 
    0px 2px 0 #2c2c2c, 
    0px 3px 0 #2a2a2a, 
    0px 4px 0 #282828, 
    0px 5px 0 #262626, 
    0px 6px 0 #242424, 
    0px 7px 0 #222, 
    0px 8px 0 #202020, 
    0px 9px 0 #1e1e1e, 
    0px 10px 0 #1c1c1c, 
    0px 11px 0 #1a1a1a, 
    0px 12px 0 #181818, 
    0px 13px 0 #161616, 
    0px 14px 0 #141414, 
    0px 15px 0 #121212,
    2px 20px 5px rgba(0, 0, 0, 0.9),
    5px 23px 5px rgba(0, 0, 0, 0.3),
    8px 27px 8px rgba(0, 0, 0, 0.5),
    8px 28px 35px rgba(0, 0, 0, 0.9),
    0 0 10px #00ffcc,
    0 0 20px #00ffcc,
    0 0 30px #00ffcc;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #00ffcc;
  margin: 30px auto 0 auto;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 255, 204, 0.6);
}

h2, h3 { 
  color: #58a6ff; 
  text-align: left;
}

nav {
  text-align: center;
  margin-top: 10px;
}

.nav-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 10px 10px 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: #58a6ff;
  font-weight: bold;
  border-radius: 8px;
  background: #21262d;
  border: 1px solid #58a6ff;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(88, 166, 255, 0.7);
  box-sizing: border-box;
  min-width: 140px;
  max-width: 200px;
  font-size: 14px;
}

.nav-btn:hover, .nav-btn:focus {
  color: #00ffcc;
  border-color: #00ffcc;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.9);
  animation: pulse 1s infinite;
  outline: 2px solid #00ffcc;
  outline-offset: 2px;
}

.nav-btn i { font-size: 1.1em; transition: transform 0.3s ease; }
.nav-btn:hover i { transform: scale(1.2); }

/* Pulse animation for the entire button */
@keyframes pulse {
  0% {
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(0, 255, 204, 0);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 0 0 0 rgba(0, 255, 204, 0);
  }
}

.intro-box {
  background: #161b22;
  padding: 25px 20px;
  margin: 20px auto 10px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,255,200,0.3);
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
}

.powered {
  font-size: 12px;
  color: #00ffcc;
  text-align: center;
  text-shadow: 0 0 3px #00ffcc, 0 0 6px #00ffcc;
  position: relative;
  display: inline-block;
  margin-top: 15px;
  padding-bottom: 14px; 
}

.powered::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 0;
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, transparent, #00ffcc, transparent);
  border-radius: 4px;
  animation: laser-scan 4s ease-in-out infinite alternate;
  box-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

@keyframes laser-scan {
  from { left: 0; }
  to   { left: calc(100% - 40px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; animation: fadeSlideUp 1s ease forwards; }
.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }
.fade-in.delay-3 { animation-delay: 0.9s; }
.fade-in.delay-4 { animation-delay: 1.2s; }

/* SHARE CONTAINER */
.share-container {
  position: fixed;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.share-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  background-color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffcc;
  cursor: pointer;
  border: none;
  outline: none;
  min-width: 44px;
  min-height: 44px;
}

.share-btn:hover { 
  transform: scale(1.1); 
}

.facebook-btn:hover { background-color: #1877F2; box-shadow: 0 0 20px #1877F2; }
.tiktok-btn:hover { background-color: #000000; box-shadow: 0 0 20px #000000; }
.instagram-btn:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 0 20px #d6249f; }
.whatsapp-btn:hover { background-color: #25D366; box-shadow: 0 0 20px #25D366; }
.telegram-btn:hover { background-color: #0088cc; box-shadow: 0 0 20px #0088cc; }
.reddit-btn:hover { background-color: #FF4500; box-shadow: 0 0 20px #FF4500; }
.native-share-btn:hover { background-color: #7e57c2; box-shadow: 0 0 20px #7e57c2; }

/* Media queries */
@media (max-width: 768px) {
  body { padding: 20px; }
  h1 { font-size: 3.2rem; padding: 50px 20px 20px; letter-spacing: .1em; }
  .nav-btn { display: inline-block; margin: 8px 10px; width: auto; min-width: 150px; max-width: 180px; padding: 12px 18px; font-size: 13px; }
  nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .intro-box { font-size: 14px; padding: 20px; margin: 15px auto; }
  .share-container { right: 8px; gap: 10px; }
  .share-btn { width: 40px; height: 40px; font-size: 18px; }
}

@media (max-width: 480px) {
  body { padding: 15px; padding-right: 65px; }
  h1 { font-size: 2.4rem; padding: 40px 15px 15px; }
  .nav-btn { margin: 6px 8px; min-width: 140px; max-width: 160px; padding: 10px 15px; font-size: 12px; }
  nav { gap: 6px; }
  .share-btn { width: 38px; height: 38px; font-size: 17px; }
}

@media (max-width: 360px) {
  body { padding: 12px; padding-right: 60px; }
  h1 { font-size: 2rem; padding: 30px 10px 10px; }
  .nav-btn { margin: 4px 6px; min-width: 130px; max-width: 150px; padding: 8px 12px; font-size: 11px; }
  nav { gap: 4px; }
  .share-btn { width: 35px; height: 35px; font-size: 16px; }
  .share-container { gap: 8px; }
}
