/* LUXURY ADDRESSES PAGE - INVESTOR GRADE */
.addresses-hero {
  background: radial-gradient(ellipse at center, rgba(247,216,0,0.08) 0%, transparent 70%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
  margin-top: 80px;
}

.addresses-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: -1;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0,255,127,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(247,216,0,0.06) 0%, transparent 50%);
}

.addresses-hero h1 {
  font-size: 3rem; font-weight: 800; margin-bottom: 24px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem; color: var(--muted); max-width: 600px; margin: 0 auto;
  line-height: 1.6;
}

.address-section {
  background: linear-gradient(145deg, rgba(14,15,20,0.9), rgba(16,18,24,0.95));
  border: 1px solid rgba(247,216,0,0.15); border-radius: 24px; padding: 40px;
  margin-bottom: 40px; position: relative; overflow: hidden;
  box-shadow: 0 16px 64px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.3s ease; backdrop-filter: blur(20px);
}

.address-section::before {
  content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: var(--grad); border-radius: 26px; z-index: -1; opacity: 0;
  transition: opacity 0.3s ease;
}

.address-section:hover::before { opacity: 0.1; }

.address-section:hover {
  transform: translateY(-8px); border-color: rgba(247,216,0,0.25);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(247,216,0,0.2);
}

.address-section h2 {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
  font-size: 1.6rem; color: #fff;
}

.address-section h2 i {
  width: 48px; height: 48px; background: var(--grad); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #001;
}

.address-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(247,216,0,0.2);
  border-radius: 16px; padding: 20px; font-family: 'Courier New', monospace;
  word-break: break-all; position: relative; margin: 20px 0; font-size: 1rem;
}

.address-box::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad); border-radius: 0 0 0 16px;
}

.verification-status {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(0,255,127,0.15); color: var(--lime); border-radius: 999px;
  font-size: 0.9rem; font-weight: 700; margin-bottom: 20px;
  border: 1px solid rgba(0,255,127,0.3);
}

.explorer-links {
  display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px;
}

.explorer-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(247,216,0,0.15);
  border-radius: 999px; color: var(--text); text-decoration: none;
  font-size: 0.9rem; font-weight: 600; transition: all 0.3s ease;
}

.explorer-link:hover {
  background: rgba(247,216,0,0.1); border-color: rgba(247,216,0,0.4);
  color: var(--lime); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,216,0,0.2);
}

.security-info {
  background: rgba(0,255,127,0.05); border: 1px solid rgba(0,255,127,0.2);
  border-radius: 16px; padding: 24px; margin-top: 32px;
}

.security-info h3 {
  color: var(--lime); margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}

.security-info ul {
  list-style: none; padding: 0;
}

.security-info li {
  padding: 8px 0; color: var(--muted); position: relative; padding-left: 24px;
}

.security-info li::before {
  content: '✓'; position: absolute; left: 0; color: var(--lime); font-weight: bold;
}
