* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #F2F4F8;
  background-image: radial-gradient(circle at 10px 10px, rgba(39,67,114,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  font-family: 'Courier New', Courier, 'IBM Plex Mono', 'VT323', monospace;
  line-height: 1.5;
  color: #1C2A44;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  border: 3px solid #274372;
  box-shadow: 14px 14px 0 rgba(39,67,114,0.15), 0 0 0 1px rgba(39,67,114,0.3);
  padding: 25px 30px;
  transition: box-shadow 0.2s;
}

.page:hover {
  box-shadow: 16px 16px 0 rgba(39,67,114,0.2), 0 0 0 1px #274372;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px dashed #274372;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.logo-area {
  flex: 1 1 260px;
}

.site-title {
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  text-transform: uppercase;
  color: #274372;
  background: #FFFFFF;
  display: inline-block;
  border: 4px solid #274372;
  padding: 12px 20px 8px 20px;
  box-shadow: 8px 8px 0 #274372;
  transition: box-shadow 0.15s, transform 0.15s;
}

.site-title:hover {
  box-shadow: 10px 10px 0 #274372;
  transform: translate(-2px, -2px);
}

.dot {
  color: #274372;
  font-size: 1.2em;
}

.under-title {
  font-size: 1.1rem;
  margin-top: 8px;
  padding-left: 8px;
  color: #274372;
  font-style: italic;
  letter-spacing: 1px;
  word-break: break-all;
  opacity: 0.9;
}

.ad-place {
  width: 100%;
  max-width: 1060px;
  border: 3px solid #274372;
  background: #FFFFFF;
  transition: border-color 0.15s;
}

.ad-place:hover {
  border-color: #1a2e4f;
}

.ad-gif {
  display: block;
  width: 100%;
  height: auto;
  max-height: 128px;
  object-fit: cover;
  image-rendering: crisp-edges;
  border: none;
}

.old-nav {
  margin: 20px 0 20px 0;
  border: 2px solid #274372;
  background: #FFFFFF;
  padding: 8px 12px;
  box-shadow: 4px 4px 0 rgba(39,67,114,0.1);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  list-style: none;
}

.nav-links li a {
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: #274372;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.1s, background 0.1s, color 0.1s;
  text-transform: lowercase;
  letter-spacing: -0.3px;
}

.nav-links li a.active {
  border-bottom: 3px solid #274372;
  background: #E6ECF5;
  padding: 6px 10px;
}

.nav-links li a:hover {
  border-bottom: 3px solid #274372;
  background: #f0f3fa;
  padding: 6px 10px;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  background: #274372;
  color: white;
  padding: 14px 22px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid #274372;
  justify-content: center;
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.1), 5px 5px 0 rgba(0,0,0,0.05);
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

.stat-item {
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -18px;
  opacity: 0.5;
  color: #a0b8d4;
}

@media (max-width: 700px) {
  .stat-item:not(:last-child)::after {
    content: "";
    display: none;
  }
}

.grid-odd {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 35px;
}

.block {
  background: #FFFFFF;
  border: 2px solid #274372;
  padding: 22px 18px;
  box-shadow: 6px 6px 0 rgba(39,67,114,0.1);
  transition: box-shadow 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}

.block:hover {
  box-shadow: 8px 8px 0 rgba(39,67,114,0.15);
  transform: translate(-1px, -1px);
}

.block-title {
  font-size: 1.5rem;
  margin-bottom: 18px;
  border-left: 16px solid #274372;
  padding-left: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: #F0F4FD;
  line-height: 1.2;
  transition: border-left-width 0.1s;
}

.block:hover .block-title {
  border-left-width: 20px;
}

.block-desc {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #274372;
  font-style: italic;
  opacity: 0.9;
}

.verify-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.verify-input {
  flex: 1 1 200px;
  background: #FFFFFF;
  border: 2px solid #274372;
  padding: 15px 14px;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  color: #274372;
  outline: none;
  word-break: break-all;
  transition: background 0.1s, border-color 0.1s, box-shadow 0.1s;
}

.verify-input:focus {
  background: #FFFDE7;
  border-color: #1a2e4f;
  box-shadow: inset 0 0 0 1px #274372;
}

.verify-btn {
  background: #274372;
  border: 2px solid #274372;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0 28px;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  transition: background 0.1s, color 0.1s, transform 0.1s;
  min-height: 54px;
}

.verify-btn:hover {
  background: #FFFFFF;
  color: #274372;
  transform: scale(0.98);
}

.verify-btn:active {
  transform: scale(0.96);
}

.verify-result {
  margin-top: 15px;
  padding: 14px;
  background: #F0F5FF;
  border-left: 8px solid #274372;
  font-weight: 500;
  word-break: break-word;
  font-size: 1.1rem;
  transition: border-left-width 0.1s;
}

.verify-note {
  font-size: 0.85rem;
  margin-top: 12px;
  color: #274372;
  border-top: 1px dashed #274372;
  padding-top: 10px;
  opacity: 0.8;
}

.verify-stats {
  font-size: 0.9rem;
  background: #E0E8F5;
  padding: 8px 12px;
  margin-top: 12px;
  border: 1px solid #274372;
}

.mirror-list {
  list-style: none;
  margin: 10px 0 15px;
}

.mirror-item {
  background: #F5F9FF;
  border: 1px solid #274372;
  margin-bottom: 10px;
  padding: 12px 14px;
  font-family: monospace;
  font-size: 1.05rem;
  word-break: break-all;
  border-left: 10px solid #274372;
  transition: border-left-width 0.1s, background 0.1s;
}

.mirror-item:hover {
  border-left-width: 15px;
  background: #eaf0fc;
}

.mirror-footnote {
  font-size: 0.85rem;
  color: #274372;
  border-top: 1px dashed #274372;
  padding-top: 12px;
  margin-top: 10px;
}

.mirror-stats {
  font-size: 0.9rem;
  background: #E0E8F5;
  padding: 8px 12px;
  margin-top: 12px;
  border: 1px solid #274372;
}

.mirror-badge {
  font-size: 0.85rem;
  background: #274372;
  color: white;
  padding: 6px 10px;
  margin-top: 10px;
  text-align: center;
}

.seo-headline {
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  background: #274372;
  color: #FFFFFF;
  display: inline-block;
  padding: 6px 14px;
  letter-spacing: 1px;
  font-weight: 700;
}

.seo-text {
  font-size: 1.05rem;
  margin: 18px 0;
  background: #FFFFFF;
  border: 2px dashed #274372;
  padding: 18px;
  line-height: 1.5;
}

.hl {
  background: #274372;
  color: #FFFFFF;
  padding: 3px 8px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
  margin: 2px 0;
}

@media (max-width: 600px) {
  .hl {
    white-space: normal;
  }
}

.old-badge {
  background: #E0E8F5;
  border: 2px solid #274372;
  text-align: center;
  padding: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.block--warning {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #FFF1E0;
}

.warning-sign {
  font-size: 3.8rem;
  color: #274372;
  line-height: 1;
}

.warning-text {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1f2b40;
}

.block--info .info-list {
  list-style: none;
}

.block--info .info-list li {
  padding: 8px 0;
  border-bottom: 1px dotted #274372;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.block--info .info-list li::before {
  content: "▹";
  color: #274372;
  margin-right: 8px;
  font-weight: bold;
}

.auction-item {
  background: #F5F9FF;
  padding: 12px;
  margin-bottom: 8px;
  border-left: 6px solid #274372;
  font-weight: 500;
  transition: border-left-width 0.1s, background 0.1s;
}

.auction-item:hover {
  border-left-width: 10px;
  background: #eaf0fc;
}

.auction-more {
  margin-top: 15px;
  font-style: italic;
  background: #274372;
  color: white;
  padding: 8px 12px;
  text-align: center;
  font-weight: 600;
}

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.shipping-grid span {
  background: #F0F4FD;
  padding: 8px 10px;
  border: 1px solid #274372;
  font-weight: 500;
  transition: background 0.1s;
}

.shipping-grid span:hover {
  background: #dde5f5;
}

.shipping-note {
  background: #274372;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.shipping-guarantee {
  background: #E0E8F5;
  border: 1px solid #274372;
  padding: 8px;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

.digital-item {
  background: #F5F9FF;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-left: 5px solid #274372;
  font-weight: 500;
  transition: border-left-width 0.1s;
}

.digital-item:hover {
  border-left-width: 8px;
}

.digital-note {
  margin-top: 12px;
  font-size: 0.9rem;
  background: #E0E8F5;
  padding: 8px;
  text-align: center;
  border: 1px solid #274372;
}

.drugs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.drugs-grid span {
  background: #F0F4FD;
  border-left: 8px solid #274372;
  padding: 8px;
  font-weight: 500;
  transition: border-left-width 0.1s, background 0.1s;
}

.drugs-grid span:hover {
  border-left-width: 12px;
  background: #dde5f5;
}

.drugs-note {
  margin-top: 12px;
  font-size: 0.9rem;
  background: #E0E8F5;
  padding: 8px;
  text-align: center;
  border: 1px solid #274372;
}

.drugs-trending {
  background: #274372;
  color: white;
  padding: 8px;
  margin-top: 10px;
  text-align: center;
  font-size: 0.9rem;
}

.vendor-item {
  background: #F5F9FF;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-left: 5px solid #274372;
  font-weight: 500;
  transition: border-left-width 0.1s;
}

.vendor-item:hover {
  border-left-width: 8px;
  background: #eaf0fc;
}

.vendor-note {
  margin-top: 12px;
  font-size: 0.9rem;
  background: #E0E8F5;
  padding: 8px;
  text-align: center;
  border: 1px solid #274372;
}

.security-item {
  background: #F5F9FF;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-left: 5px solid #274372;
  font-weight: 500;
  transition: border-left-width 0.1s;
  font-size: 0.95rem;
}

.security-item:hover {
  border-left-width: 8px;
  background: #eaf0fc;
}

.security-note {
  margin-top: 12px;
  font-size: 0.9rem;
  background: #E0E8F5;
  padding: 8px;
  text-align: center;
  border: 1px solid #274372;
  font-weight: 500;
}

.roadmap-item {
  background: #F5F9FF;
  padding: 12px;
  margin-bottom: 8px;
  border-left: 5px solid #274372;
  font-weight: 500;
  transition: border-left-width 0.1s;
}

.roadmap-item:hover {
  border-left-width: 8px;
  background: #eaf0fc;
}

.roadmap-q {
  font-weight: 700;
  color: #274372;
  background: #E0E8F5;
  padding: 2px 6px;
  margin-right: 8px;
  border: 1px solid #274372;
}

.roadmap-note {
  margin-top: 12px;
  font-size: 0.9rem;
  background: #E0E8F5;
  padding: 8px;
  text-align: center;
  border: 1px solid #274372;
}

.comparison-item {
  background: #F5F9FF;
  padding: 10px 12px;
  margin-bottom: 8px;
  border-left: 5px solid #274372;
  font-weight: 500;
  transition: border-left-width 0.1s;
}

.comparison-item:hover {
  border-left-width: 8px;
  background: #eaf0fc;
}

.comparison-item span {
  font-weight: 700;
  color: #274372;
}

.testimonial-compact {
  background: #F5F9FF;
  padding: 12px;
  margin-bottom: 8px;
  border-left: 5px solid #274372;
  font-style: italic;
  font-size: 0.95rem;
  transition: border-left-width 0.1s;
}

.testimonial-compact:hover {
  border-left-width: 8px;
  background: #eaf0fc;
}

.bottom-links {
  border: 3px double #274372;
  padding: 18px 22px;
  background: #FFFFFF;
  font-size: 1.2rem;
  text-align: center;
  word-break: break-all;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
  box-shadow: inset 0 0 0 1px rgba(39,67,114,0.1);
}

.old-icon {
  font-size: 2rem;
  color: #274372;
  line-height: 1;
}

.faq-block {
  border: 3px solid #274372;
  padding: 30px;
  margin-bottom: 35px;
  background: #F8FAFE;
  box-shadow: inset 0 0 0 2px white, 6px 6px 0 rgba(39,67,114,0.1);
}

.faq-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 25px;
  color: #274372;
  text-transform: uppercase;
  border-bottom: 4px solid #274372;
  padding-bottom: 12px;
  font-weight: 800;
  letter-spacing: -1px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.faq-item {
  border: 1px solid #274372;
  background: white;
  transition: box-shadow 0.1s;
}

.faq-item:hover {
  box-shadow: 4px 4px 0 rgba(39,67,114,0.15);
}

.faq-q {
  background: #274372;
  color: white;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.faq-a {
  padding: 18px;
  line-height: 1.6;
}

.extended-content {
  margin-bottom: 35px;
  border: 3px solid #274372;
  padding: 25px;
  background: #F8FAFE;
}

.extended-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 20px;
  color: #274372;
  text-transform: uppercase;
  border-bottom: 3px solid #274372;
  padding-bottom: 10px;
}

.extended-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.extended-item {
  background: white;
  border: 1px solid #274372;
  padding: 18px;
  transition: box-shadow 0.1s;
}

.extended-item:hover {
  box-shadow: 4px 4px 0 rgba(39,67,114,0.1);
}

.extended-item h3 {
  color: #274372;
  margin-bottom: 12px;
  font-size: 1.2rem;
  border-left: 6px solid #274372;
  padding-left: 10px;
}

.extended-item p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.statistics-detailed {
  margin-bottom: 35px;
  border: 3px solid #274372;
  padding: 25px;
  background: #FFFFFF;
}

.statistics-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 20px;
  color: #274372;
  text-transform: uppercase;
  border-bottom: 3px solid #274372;
  padding-bottom: 10px;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-block {
  border: 1px solid #274372;
  background: #F8FAFE;
  padding: 15px;
}

.stat-category {
  background: #274372;
  color: white;
  padding: 8px 10px;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  text-align: center;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dotted #274372;
  font-size: 0.9rem;
}

.stat-row span:first-child {
  font-weight: 500;
}

.stat-row span:last-child {
  font-weight: 700;
  color: #274372;
}

.resource-links {
  margin-bottom: 35px;
  border: 2px solid #274372;
  padding: 20px;
  background: #FFFFFF;
}

.resource-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #274372;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  justify-content: center;
}

.resource-grid span {
  background: #F0F4FD;
  border: 1px solid #274372;
  padding: 8px 16px;
  font-weight: 500;
  transition: background 0.1s;
}

.resource-grid span:hover {
  background: #dde5f5;
}

.old-footer {
  margin-top: 35px;
  border-top: 3px solid #274372;
  padding: 18px 5px 5px 5px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #274372;
  text-transform: uppercase;
  gap: 15px;
}

.crypto-seal {
  background: #274372;
  color: white;
  padding: 6px 14px;
  font-family: monospace;
  letter-spacing: 0.5px;
  transition: background 0.1s;
}

.crypto-seal:hover {
  background: #1a2e4f;
}

@media (max-width: 1024px) {
  .grid-odd {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .extended-grid {
    grid-template-columns: 1fr;
  }
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-title { font-size: 2.6rem; }
  .top-bar { flex-direction: column; align-items: stretch; }
  .shipping-grid, .drugs-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .statistics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body { padding: 8px; }
  .page { padding: 15px; }
  .grid-odd { grid-template-columns: 1fr; gap: 18px; }
  .nav-links { flex-direction: column; gap: 10px; }
  .site-title { font-size: 2.2rem; padding: 8px 14px 4px 14px; }
  .block-title { font-size: 1.4rem; }
  .bottom-links { font-size: 1rem; padding: 15px; }
  .verify-btn { width: 100%; padding: 15px; }
  .stats-bar { flex-direction: column; gap: 10px; padding: 15px; }
  .stat-item::after { display: none; }
  .faq-block { padding: 18px; }
  .extended-content { padding: 15px; }
  .statistics-detailed { padding: 15px; }
  .resource-grid { flex-direction: column; align-items: center; }
  .resource-grid span { width: 100%; text-align: center; }
}

@supports (font-variation-settings: normal) {
  body {
    font-family: 'Courier New', 'IBM Plex Mono', monospace;
  }
}

::selection {
  background: #274372;
  color: #FFFFFF;
}

::-moz-selection {
  background: #274372;
  color: #FFFFFF;
}