.hero {
  position: relative;
  background: url(/public/images/hero-bg.jpg) no-repeat center/cover;
  color: #1a237e;
  padding: 6rem 2rem;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero .lead {
  font-size: 1.25rem;
}
.hero .btn-primary {
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 2rem;
}
.latest-news {
  padding: 2rem 0;
}
.latest-news .card {
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.latest-news .card img {
  max-height: 300px;
  object-fit: cover;
}
.older-news {
  width: 100%;
  border-top: 1px solid #ddd;
  padding: 2rem 0;
}
.older-news .container {
  padding-left: 0;
  padding-right: 0;
}
.older-news .news-item + .news-item {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
}
.older-news .news-date {
  font-size: 0.875rem;
  color: #666;
}
.older-news .news-title {
  font-size: 1.25rem;
  font-weight: 600;
}
.older-news .news-desc {
  margin-top: 0.5rem;
  color: #333;
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  transform: translateX(-50%);
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #007bff;
}
.card-signal {
  border: 1px solid #e3e3e3;
  box-shadow: none;
}
.signal-header {
  font-weight: 600;
}
.pl-box {
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}
.pl-box.profit {
  background: #d4edda;
  color: #155724;
}
.pl-box.loss {
  background: #f8d7da;
  color: #721c24;
}
.pl-box.wait {
  background: #d4edda;
  color: #007bff;
}
.pl-box.type {
  background: #fff3cd;
  color: #856404;
}

.custom-clean:hover {
  color: inherit;
  text-decoration: none;
}
