/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *

 */

.gpk-display {
  font-family: "Garbage Pail Kids", "Cooper Black", "Arial Black", Impact, sans-serif;
}

.gpk-name-pill {
  background: #2da8df;
  border: 5px solid #111827;
  border-radius: 9999px;
  color: #ffffff;
  display: inline-block;
  min-width: 75%;
  padding: 0.14em 0.72em 0.24em;
  text-shadow:
    2px 2px 0 rgba(17, 24, 39, 0.35);
}

.gpk-trading-card {
  aspect-ratio: 5 / 7;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.72) 0 18%, transparent 42%),
    radial-gradient(rgba(17,24,39,.12) 1px, transparent 1px),
    linear-gradient(180deg, #9b9891 0%, #d8d1b7 52%, #eee2bb 100%);
  background-size: auto, 5px 5px, auto;
  border: 12px solid #1f1b1c;
  box-shadow: 14px 14px 22px rgba(15, 23, 42, 0.28);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  justify-items: center;
  max-width: 24rem;
  overflow: hidden;
  padding: 1.1rem;
  position: relative;
  width: min(100%, 20rem);
}

.gpk-card-logo {
  color: #ef233c;
  font-size: clamp(1.8rem, 8vw, 1.8rem);
  line-height: 0.9;
  padding-top: 0.7rem;
  position: relative;
  text-shadow:
    3px 3px 0 #ffffff,
    -3px -3px 0 #ffffff,
    3px -3px 0 #ffffff,
    -3px 3px 0 #ffffff,
    5px 5px 0 #111827,
    -5px -5px 0 #111827,
    5px -5px 0 #111827,
    -5px 5px 0 #111827;
  transform: rotate(-1deg);
  width: fit-content;
  z-index: 2;
}

.gpk-card-scene {
  align-items: end;
  background: transparent;
  display: flex;
  justify-content: center;
  margin-top: -0.35rem;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gpk-trading-card::after {
  color: #111827;
  content: "00b";
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 0.9rem;
  position: absolute;
  right: 0.75rem;
  top: 0.65rem;
}

.gpk-card-silhouette {
  background: rgba(17, 24, 39, 0.18);
  border-radius: 40% 40% 16% 16%;
  height: 42%;
  margin-bottom: 18%;
  position: relative;
  width: 42%;
  z-index: 1;
}

.gpk-card-silhouette::before {
  background: rgba(17, 24, 39, 0.18);
  border-radius: 9999px;
  content: "";
  height: 48%;
  left: 50%;
  position: absolute;
  top: -38%;
  transform: translateX(-50%);
  width: 62%;
}

.gpk-card-name {
  align-self: end;
  max-width: 100%;
  padding-bottom: 0.55rem;
  width: 100%;
}
                                                                        
