/* portal-algo assets/style.css – Future Crypto Style */

body {
  background: #000;
}

.portal-algo-wrapper {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(135deg, #0d0d0d 0%, #111827 100%);
  padding: 25px;
  border-radius: 16px;
  color: #e0f7fa;
  box-shadow: 0 0 25px rgba(0,255,255,0.3);
  animation: glow 5s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(0,255,255,0.3); }
  to   { box-shadow: 0 0 40px rgba(0,255,255,0.7); }
}

.portal-algo-wrapper h2 {
  text-align: center;
  color: #00ffe7;
  font-size: 1.8rem;
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

.portal-algo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
  gap: 20px;
  margin-top: 25px;
}

.portal-algo-card {
  background: rgba(10,15,25,0.85);
  border: 1px solid #0ff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,255,255,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portal-algo-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg at 50% 50%, #0ff, transparent, #0ff);
  animation: rotate 6s linear infinite;
  opacity: 0.15;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.portal-algo-card:hover {
  transform: scale(1.07);
  box-shadow: 0 0 30px #0ff;
}

.portal-algo-card h3 {
  margin-top: 0;
  color: #80ffea;
  font-size: 1.4rem;
  text-shadow: 0 0 8px #00ffe7;
}

.portal-algo-card p {
  margin: 6px 0;
  font-size: 0.95rem;
}

.profit {
  color: #39ff14;
  font-weight: bold;
  text-shadow: 0 0 8px #39ff14, 0 0 12px #39ff14;
}
