/* Enhanced Aesthetics for Addresses and Whitepapers Pages */

/* Common enhancements */
.page-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-header:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f7d800, #00ffa0);
  margin: 20px auto 0;
  border-radius: 2px;
}

.page-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: #a0a0a0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.page-intro strong {
  color: #ffffff;
}

/* Addresses page enhancements */
.address-card {
  background: linear-gradient(145deg, rgba(14,15,20,0.8), rgba(16,18,24,0.9));
  border: 1px solid rgba(247,216,0,0.15);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.address-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(247,216,0,0.3);
}

.address-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f7d800, #00ffa0);
}

.address-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ffffff;
}

.address-card h3 i {
  color: #f7d800;
  font-size: 1.8rem;
}

.address-description {
  color: #a0a0a0;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.address-box {
  background: rgba(10,12,16,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px;
  font-family: 'Roboto Mono', monospace;
  color: #f7d800;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: auto;
}

.address-box .copy-btn {
  background: transparent;
  border: none;
  color: #a0a0a0;
  cursor: pointer;
  padding: 5px;
  margin-left: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.address-box .copy-btn:hover {
  color: #ffffff;
}

.explorer-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.explorer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 10px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.explorer-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.explorer-link i {
  color: #f7d800;
}

/* Security notice */
.security-notice {
  background: linear-gradient(145deg, rgba(30,35,45,0.8), rgba(25,30,40,0.9));
  border: 1px solid rgba(0,255,170,0.15);
  border-radius: 16px;
  padding: 24px;
  margin: 40px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.security-notice i {
  color: #00ffa0;
  font-size: 2rem;
  margin-top: 5px;
}

.security-notice-content h4 {
  color: #00ffa0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.security-notice-content p {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.security-notice-content ul {
  color: #a0a0a0;
  padding-left: 20px;
  margin-top: 10px;
}

.security-notice-content ul li {
  margin-bottom: 8px;
}

/* Treasury policy */
.treasury-policy {
  background: rgba(247,216,0,0.05);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.treasury-policy h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f7d800;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.treasury-policy p {
  color: #a0a0a0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Whitepapers page enhancements */
.whitepaper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.whitepaper-card {
  background: linear-gradient(145deg, rgba(14,15,20,0.8), rgba(16,18,24,0.9));
  border: 1px solid rgba(247,216,0,0.15);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.whitepaper-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(247,216,0,0.3);
}

.whitepaper-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, rgba(247,216,0,0.1), rgba(0,255,170,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.whitepaper-icon i {
  font-size: 1.8rem;
  background: linear-gradient(90deg, #f7d800, #00ffa0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whitepaper-title {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.whitepaper-description {
  color: #a0a0a0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.whitepaper-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.whitepaper-date {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.whitepaper-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,216,0,0.1);
  border: 1px solid rgba(247,216,0,0.2);
  border-radius: 30px;
  padding: 8px 16px;
  color: #f7d800;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.whitepaper-link:hover {
  background: rgba(247,216,0,0.2);
  transform: translateY(-2px);
}

.whitepaper-link i {
  font-size: 1rem;
}
