:root {
  --brand-orange: #e99c52;
}

/* Base layout */
html, body {
  background-color: #000000 !important;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

.page-grid {
  position: relative;
  z-index: 1;
}

/* Coin background image behind everything */
.coin-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/assets/smartmetals/Veritaseum_1oz_Ag_Round_Back_FIN.png');
  background-size: 150%;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
}

/* @media (max-aspect-ratio: 2/3) {
  .coin-background {
    background-size: 200%;
    background-position: center top;
  }
}

@media (min-aspect-ratio: 3/2) {
  .coin-background {
    background-size: 300%;
    background-position: left center;
  }
} */

/* Universal card structure */
.fund-card {
  background:
    linear-gradient(0deg, rgba(163, 187, 199, 0.602), rgba(53, 53, 53, 0.5)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.474), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.474), transparent 30%);
  padding: 2px;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.fund-card-content {
  background-color: #a3bbc737;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  backdrop-filter: blur(8px);        /* <- the blur effect */
  -webkit-backdrop-filter: blur(8px); /* for Safari */
}



/* Row layout for multi-card display */
.fund-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Shared banner card hover effect */
.fund-card.info-card:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.fund-card img {
  width: 100%;
  display: block;
  /* border-radius: 10px; */
}

/* Responsive utilities */
@media (max-width: 1024px) {
  .mkt-thirds-1,
  .mkt-thirds-2,
  .mkt-item {
    flex: 1;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 340px;
  }
}

@media (max-width: 480px) {
  .mkt-nav-btn.mkt-buy-button {
    padding: 5px 10px;
  }
}
























