/* Security Trust Section Styles */
.security-trust-badge {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.security-badge {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(0, 167, 212, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0, 167, 212, 0.15);
  transition: all 0.3s ease;
}

.security-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 167, 212, 0.25);
  border-color: rgba(0, 167, 212, 0.5);
}

.shield-icon {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 8px rgba(0, 167, 212, 0.6));
}

.security-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.security-text strong {
  color: #00a7d4;
  font-size: 0.9rem;
  font-weight: 600;
}

.security-rating {
  color: #a0a0a0;
  font-size: 0.8rem;
}

.audit-link {
  background: linear-gradient(135deg, #00a7d4, #0066ff);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.audit-link:hover {
  background: linear-gradient(135deg, #0066ff, #00a7d4);
  transform: scale(1.05);
}

/* Security Transparency Section */
.security-transparency {
  background: linear-gradient(135deg, #0A0A0F 0%, #1a1a2e 50%, #16213e 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.security-transparency::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 167, 212, 0.1) 0%, transparent 70%);
}

.security-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.security-heading {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00a7d4, #0066ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  font-weight: 700;
}

.security-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 167, 212, 0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 167, 212, 0.4);
  box-shadow: 0 10px 30px rgba(0, 167, 212, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00a7d4;
  font-family: 'Orbitron', monospace;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 167, 212, 0.5);
}

.stat-label {
  color: #a0a0a0;
  font-size: 0.9rem;
  font-weight: 500;
}

.security-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.highlight-item {
  background: rgba(0, 167, 212, 0.1);
  border: 1px solid rgba(0, 167, 212, 0.3);
  border-radius: 8px;
  padding: 1rem;
  color: #e0e0e0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(0, 167, 212, 0.2);
  border-color: rgba(0, 167, 212, 0.5);
}

.security-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.security-audit-btn, .security-resources-btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.security-audit-btn {
  background: linear-gradient(135deg, #00a7d4, #0066ff);
  color: white;
}

.security-audit-btn:hover {
  background: linear-gradient(135deg, #0066ff, #00a7d4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 167, 212, 0.3);
}

.security-resources-btn {
  background: transparent;
  color: #00a7d4;
  border-color: #00a7d4;
}

.security-resources-btn:hover {
  background: rgba(0, 167, 212, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 167, 212, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .security-badge {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .security-heading {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .security-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .security-audit-btn, .security-resources-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* POLY Token Information Section */
.poly-token-info {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.poly-token-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.token-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.token-heading {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
  font-weight: 700;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.token-stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.token-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.token-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.token-stat-label {
  color: #a0a0a0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.token-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.token-info-card, .token-utility-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}

.token-info-card h3, .token-utility-card h3 {
  color: #FFD700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.token-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-field label {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.token-value {
  color: #ffffff;
  font-weight: 500;
  font-family: 'Courier New', monospace;
}

.canister-id-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.canister-id {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
}

.copy-btn {
  background: rgba(255, 215, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(255, 215, 0, 0.3);
  transform: scale(1.1);
}

.copy-icon {
  font-size: 0.9rem;
}

.utility-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.utility-item {
  color: #ffffff;
  padding: 0.5rem 0;
  border-left: 3px solid #FFD700;
  padding-left: 1rem;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 4px;
}

.token-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.token-buy-btn, .token-stake-btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.token-buy-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
}

.token-buy-btn:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.token-stake-btn {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: #fff;
}

.token-stake-btn:hover {
  background: linear-gradient(135deg, #F7931E, #FF6B35);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.exchange-listing-info {
  margin-top: 2rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 0, 0.2);
  width: 100%;
}

.exchange-listing-info h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ff8c00;
}

.exchange-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.exchange-badge {
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
}

.exchange-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.pair-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-style: italic;
}

@media (max-width: 768px) {
  .token-details {
    grid-template-columns: 1fr;
  }
  
  .token-heading {
    font-size: 2rem;
  }
  
  .token-stat-number {
    font-size: 1.5rem;
  }
  
  .token-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .token-buy-btn, .token-stake-btn {
    width: 100%;
    max-width: 300px;
  }
}
