/* =====================================================
   DARKNET.ZIP BLOG STYLES
   External stylesheet for all blog articles
   ===================================================== */

/* ========== ROOT VARIABLES ========== */
:root {
  --neon: #FE14FF;
  --purple: #7D1FB9;
  --accent: #8a2be2;
  --bg: #000000;
  --text: #e0e0e0;
  --text-muted: #888;
}

/* ========== ARTICLE LAYOUT ========== */
.article-wrapper {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 20px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(139, 43, 226, 0.1);
  border: 1px solid rgba(139, 43, 226, 0.3);
  transition: all 0.3s ease;
}

.back-link:hover {
  background: rgba(139, 43, 226, 0.2);
  border-color: var(--neon);
  color: var(--neon);
  transform: translateX(-5px);
}

.back-link::before {
  content: '←';
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--neon);
}

.breadcrumb span {
  color: #666;
}

/* ========== ARTICLE CONTAINER ========== */
.article-container {
  background: linear-gradient(135deg, rgba(30, 0, 50, 0.7), rgba(10, 0, 20, 0.9));
  border: 1px solid rgba(139, 43, 226, 0.25);
  border-radius: 16px;
  padding: 45px 50px;
  box-shadow: 
    0 0 40px rgba(139, 43, 226, 0.15),
    inset 0 0 60px rgba(139, 43, 226, 0.03);
}

.article-header {
  text-align: center;
  margin-bottom: 35px;
}

.article-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple), var(--neon));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.article-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(139, 43, 226, 0.4);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ========== HERO IMAGE ========== */
.article-hero {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  margin-bottom: 35px;
  border: 2px solid rgba(139, 43, 226, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Full infographic image - not cropped */
.article-infographic {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  margin: 30px 0;
  border: 2px solid rgba(139, 43, 226, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

/* ========== ARTICLE CONTENT ========== */
.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.article-content p {
  margin-bottom: 22px;
}

/* ========== ENHANCED H2 STYLING ========== */
.article-content h2 {
  font-size: 1.7rem;
  color: #fff;
  margin: 55px 0 25px 0;
  padding: 18px 25px;
  background: linear-gradient(135deg, rgba(139, 43, 226, 0.15), rgba(75, 0, 130, 0.1));
  border-left: 4px solid var(--neon);
  border-radius: 0 12px 12px 0;
  position: relative;
  text-shadow: 0 0 20px rgba(254, 20, 255, 0.3);
}

.article-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--neon), var(--purple));
  box-shadow: 0 0 15px rgba(254, 20, 255, 0.6);
}

/* ========== ENHANCED H3 STYLING ========== */
.article-content h3 {
  font-size: 1.35rem;
  color: #e0e0e0;
  margin: 38px 0 18px 0;
  padding-left: 18px;
  border-left: 3px solid var(--purple);
  position: relative;
}

.article-content h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), transparent);
  margin-top: 8px;
}

/* ========== LISTS ========== */
.article-content ul, .article-content ol {
  margin: 25px 0 25px 20px;
}

.article-content li {
  margin-bottom: 14px;
  padding-left: 10px;
  position: relative;
}

.article-content ul li::marker {
  color: var(--neon);
}

.article-content ol li::marker {
  color: var(--neon);
  font-weight: 700;
}

/* ========== LINKS - DEFAULT ========== */
.article-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dotted var(--accent);
  transition: all 0.3s ease;
}

.article-content a:hover {
  color: var(--neon);
  border-color: var(--neon);
}

/* ========== STRONG/BOLD TEXT ========== */
.article-content strong {
  color: #fff;
  font-weight: 600;
}

/* ========== CODE BLOCKS ========== */
.article-content code {
  background: rgba(139, 43, 226, 0.2);
  padding: 3px 10px;
  border-radius: 5px;
  font-family: 'Consolas', 'Monaco', monospace;
  color: var(--neon);
  font-size: 0.9em;
  border: 1px solid rgba(139, 43, 226, 0.3);
}

/* ========== CTA BOX ========== */
.cta-box {
  background: linear-gradient(135deg, rgba(139, 43, 226, 0.15), rgba(75, 0, 130, 0.15));
  border: 2px solid rgba(139, 43, 226, 0.4);
  border-radius: 16px;
  padding: 35px 40px;
  margin: 45px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
}

.cta-box h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.4rem;
  text-shadow: 0 0 15px rgba(254, 20, 255, 0.4);
  /* Reset h3 styles for centered cta-box */
  border-left: none;
  padding-left: 0;
}

.cta-box h3::after {
  display: none;
}

.cta-box p {
  margin-bottom: 22px;
  color: #ccc;
  font-size: 1.05rem;
}

/* ========== CTA BUTTON - FIXED VISIBILITY ========== */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #1a0033, #2d0052);
  color: #fff !important;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--neon);
  box-shadow: 
    0 0 20px rgba(254, 20, 255, 0.3),
    inset 0 0 20px rgba(254, 20, 255, 0.1);
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(254, 20, 255, 0.5);
}

.cta-button:hover {
  background: linear-gradient(135deg, #2d0052, #4a0080);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(254, 20, 255, 0.5),
    0 0 40px rgba(139, 43, 226, 0.4),
    inset 0 0 30px rgba(254, 20, 255, 0.2);
  border-color: #fff;
}

/* ========== INFO BOX ========== */
.info-box {
  background: linear-gradient(135deg, rgba(139, 43, 226, 0.1), rgba(75, 0, 130, 0.08));
  border-left: 4px solid var(--purple);
  padding: 22px 28px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.info-box::before {
  content: '💡';
  position: absolute;
  left: -20px;
  top: 20px;
  font-size: 1.2rem;
  background: var(--bg);
  padding: 5px;
  border-radius: 50%;
}

.info-box strong {
  color: var(--neon);
  font-weight: 700;
}

/* ========== TABLES ========== */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: rgba(139, 43, 226, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139, 43, 226, 0.2);
}

.article-content th {
  background: rgba(139, 43, 226, 0.2);
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid rgba(139, 43, 226, 0.3);
}

.article-content td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(139, 43, 226, 0.1);
  color: var(--text);
}

.article-content tr:hover td {
  background: rgba(139, 43, 226, 0.08);
}

/* ========== DARKNET.ZIP GRADIENT TEXT ========== */
.darknetzip-text {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff 0%, #e0c0ff 35%, #b388ff 60%, #9c27ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
}

/* DARKNET.ZIP gradient links with hover effect */
a.darknetzip-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff 0%, #e0c0ff 35%, #b388ff 60%, #9c27ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
  text-decoration: none !important;
  border: none !important;
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: filter 0.3s ease, background-position 0.4s ease;
}

a.darknetzip-link:hover {
  background-position: 100% 50%;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.9)) drop-shadow(0 0 25px rgba(156, 39, 255, 0.6));
}

/* ========== CEBULKA LINK ========== */
.cebulka-link {
  color: #39ff14 !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px dotted #39ff14 !important;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.5);
  transition: all 0.3s ease;
  -webkit-text-fill-color: #39ff14 !important;
  background: none !important;
}

.cebulka-link:hover {
  color: #7fff00 !important;
  border-color: #7fff00 !important;
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
  z-index: 10000;
  -webkit-text-fill-color: #7fff00 !important;
}

.cebulka-link::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0) rotate(-10deg);
  width: 36px;
  height: 36px;
  background: url('ikony/cebulka-logo_25.webp') center/contain no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.8));
  margin-bottom: 6px;
  z-index: 9999;
}

.cebulka-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotate(0deg);
}

/* ========== MONERO LINK ========== */
.monero-link {
  color: #ff6600 !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px dotted #ff6600 !important;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
  transition: all 0.3s ease;
  -webkit-text-fill-color: #ff6600 !important;
  background: none !important;
}

.monero-link:hover {
  color: #ff9933 !important;
  border-color: #ff9933 !important;
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.8);
  -webkit-text-fill-color: #ff9933 !important;
}

.monero-link::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0.5) rotate(-15deg);
  width: 36px;
  height: 36px;
  background-image: url("ikony/monero.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.8));
  margin-bottom: 5px;
  z-index: 9999;
}

.monero-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotate(0deg);
}

/* ========== TOR LINK ========== */
.tor-link {
  color: #b388ff !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px dotted #b388ff !important;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 8px rgba(179, 136, 255, 0.4);
  transition: all 0.3s ease;
  -webkit-text-fill-color: #b388ff !important;
  background: none !important;
}

.tor-link:hover {
  color: #d4b8ff !important;
  border-color: #d4b8ff !important;
  text-shadow: 0 0 12px rgba(179, 136, 255, 0.7);
  z-index: 10000;
  -webkit-text-fill-color: #d4b8ff !important;
}

.tor-link::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0.5) rotate(-15deg);
  width: 32px;
  height: 32px;
  background-image: url("ikony/tor-icon-56.webp");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 0 8px rgba(179, 136, 255, 0.8));
  margin-bottom: 5px;
  z-index: 9999;
}

.tor-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotate(0deg);
}

/* ========== PGP LINK ========== */
.pgp-link {
  color: #e6c200 !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px dotted #e6c200 !important;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 8px rgba(230, 194, 0, 0.4);
  transition: all 0.3s ease;
  -webkit-text-fill-color: #e6c200 !important;
  background: none !important;
}

.pgp-link:hover {
  color: #ffdd44 !important;
  border-color: #ffdd44 !important;
  text-shadow: 0 0 12px rgba(230, 194, 0, 0.7);
  z-index: 10000;
  -webkit-text-fill-color: #ffdd44 !important;
}

.pgp-link::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0.5) rotate(-15deg);
  width: 32px;
  height: 32px;
  background-image: url("ikony/pgp.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(230, 194, 0, 0.8));
  margin-bottom: 5px;
  z-index: 9999;
}

.pgp-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotate(0deg);
}

/* ========== BITCOIN LINK ========== */
.bitcoin-link {
  color: #f7931a !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px dotted #f7931a !important;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 8px rgba(247, 147, 26, 0.4);
  transition: all 0.3s ease;
  -webkit-text-fill-color: #f7931a !important;
  background: none !important;
}

.bitcoin-link:hover {
  color: #ffaa44 !important;
  border-color: #ffaa44 !important;
  text-shadow: 0 0 12px rgba(247, 147, 26, 0.7);
  z-index: 10000;
  -webkit-text-fill-color: #ffaa44 !important;
}

.bitcoin-link::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) scale(0.5) rotate(-15deg);
  width: 32px;
  height: 32px;
  background-image: url("ikony/bitcoin.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(247, 147, 26, 0.8));
  margin-bottom: 5px;
  z-index: 9999;
}

.bitcoin-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotate(0deg);
}

/* ========== I2P LINK ========== */
.i2p-link {
  color: #9c27b0 !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px dotted #9c27b0 !important;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 8px rgba(156, 39, 176, 0.4);
  transition: all 0.3s ease;
  -webkit-text-fill-color: #9c27b0 !important;
  background: none !important;
}

.i2p-link:hover {
  color: #ba68c8 !important;
  border-color: #ba68c8 !important;
  text-shadow: 0 0 12px rgba(156, 39, 176, 0.7);
  -webkit-text-fill-color: #ba68c8 !important;
}

/* ========== SESSION LINK ========== */
.session-desc-link {
  color: #00ff88 !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1px dotted #00ff88 !important;
  text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
  transition: all 0.3s ease;
  -webkit-text-fill-color: #00ff88 !important;
  background: none !important;
}

.session-desc-link:hover {
  color: #66ffaa !important;
  border-color: #66ffaa !important;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.7);
  -webkit-text-fill-color: #66ffaa !important;
}

/* ========== FOOTER DARKNET.ZIP ========== */
.footer-darknetzip {
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff 0%, #e0c0ff 35%, #b388ff 60%, #9c27ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
}

.footer-copy .footer-darknetzip {
  font-weight: 700 !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .article-container {
    padding: 25px 20px;
  }

  .article-title {
    font-size: 1.7rem;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-content h2 {
    font-size: 1.4rem;
    padding: 14px 18px;
    margin: 40px 0 20px 0;
  }

  .article-content h3 {
    font-size: 1.2rem;
  }

  .cta-box {
    padding: 25px 20px;
  }

  .info-box::before {
    display: none;
  }
}

/* ========== QUOTE/BLOCKQUOTE STYLING ========== */
.article-content blockquote,
.article-content em {
  font-style: italic;
  color: #ccc;
}

/* Special quote styling */
.article-content blockquote {
  border-left: 3px solid var(--neon);
  padding: 15px 20px;
  margin: 25px 0;
  background: rgba(139, 43, 226, 0.05);
  border-radius: 0 8px 8px 0;
}

/* ========== KEYWORD HIGHLIGHT ========== */
.article-content strong {
  background: linear-gradient(180deg, transparent 60%, rgba(139, 43, 226, 0.25) 60%);
  padding: 0 2px;
}

/* ========== FIRST PARAGRAPH HIGHLIGHT ========== */
.article-content > p:first-of-type {
  font-size: 1.15rem;
  color: #f0f0f0;
  line-height: 1.9;
}
