/* Global Styles */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: #121212; /* Dark background */
  color: #fff;
}

/* Container Styling */
.component-container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading Styling */
h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2em;
  color: #edebeb;
}

/* Asset Container Grid */
#asset-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Asset Card Styling */
.asset-card {
  background: #1e1e1e; /* Slightly lighter dark background for cards */
  border: 1px solid #333;
  border-radius: 10px;
  width: 220px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}
.asset-card:hover {
  transform: translateY(-5px);
}

/* Asset Image Styling */
.asset-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #444;
}

/* Asset Info Styling */
.asset-info h3 {
  margin: 10px 0 5px;
  font-size: 1.2em;
}
.price {
  font-size: 1em;
  color: #27ae60; /* Accent green */
  margin-bottom: 10px;
}

/* Action Container for Buttons */
.action-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* Buy Now Button Styling */
.buy-now-btn {
  display: inline-block;
  text-decoration: none;
  background: #e74c3c; /* Red-ish tone */
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.buy-now-btn:hover {
  background: #cf3c2c;
}
