:root {
  --neon-pink: #ff17bb;
  --neon-blue: #00f3ff;
  --neon-green: #39ff14;
  --neon-purple: #bc13fe;
  --neon-yellow: #f7e05c;
  --deep-space: #0a0f1b;
  --cosmic-blue: #20395c;
  --holly-red: #ff1744;
  --snow-white: #f0f8ff;
  --frost-silver: #e0e5ec;
  --christmas-gold: #ffd700;
}

/* Main Container */
body {
  background: linear-gradient(135deg, var(--deep-space) 0%, #0c1530 50%, #1a2b4d 100%);
  min-height: 100vh;
  color: var(--snow-white);
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1800px;
  margin: 1rem auto 2rem;
  padding: 0 2rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  color: var(--frost-silver);
}

.breadcrumbs a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--neon-green);
}

.breadcrumbs span {
  color: var(--neon-yellow);
}

/* Card Detail Container */
.card-detail-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.card-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 1400px) {
  .card-detail-container {
    max-width: 95%;
    padding: 0 1.5rem 2rem;
  }
}

@media (max-width: 1200px) {
  .card-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .card-detail-container {
    max-width: 100%;
    padding: 0 1rem 2rem;
  }
}

@media (max-width: 768px) {
  .card-detail-container,
  .breadcrumbs {
    padding: 0 1rem;
  }
  
  .breadcrumbs {
    font-size: 0.8rem;
    margin: 0.5rem auto 1.5rem;
  }
}

/* Left Column: Card Image */
.card-image-column {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.card-image-wrapper {
  background: rgba(11, 15, 26, 0.6);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.card-image-large {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Card Action Buttons */
.card-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.got-only {
  width: 100%;
}

.got-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--neon-green), #20c997);
  color: var(--deep-space);
  width: 100%;
  position: relative;
}

.got-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(57, 255, 20, 0.5);
}

/* Changed for ALREADY OWNED state - less bright */
.got-option.active {
  border-color: var(--snow-white);
  background: linear-gradient(135deg, #2d8f68, #1a6d4f);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
  opacity: 0.9;
}

.got-option.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(57, 255, 20, 0.3);
  background: linear-gradient(135deg, #2d8f68, #1a6d4f);
}

.got-option input {
  display: none;
}

.got-label {
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.got-label:before {
  content: '✓';
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.got-option.active .got-label:before {
  opacity: 1;
}

.share-btn {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--neon-yellow), #ffd700);
  color: var(--deep-space);
  width: 100%;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 224, 92, 0.5);
  background: linear-gradient(135deg, #ffd700, var(--neon-yellow));
}

.share-btn i {
  font-size: 1.1rem;
}

/* Right Column: Card Details */
.card-details-column {
  background: rgba(11, 15, 26, 0.6);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Card Title - Slightly smaller */
.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--snow-white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(240, 248, 255, 0.5);
}

/* Card subtitle - Changed to GREEN */
.card-subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  color: var(--neon-green);
  font-weight: 600;
}

.card-subtitle span {
  color: var(--neon-green);
}

.card-subtitle .separator {
  color: var(--neon-green);
  opacity: 0.7;
}

/* Price Section - More compact */
.price-section {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.market-price,
.user-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.market-price:last-child,
.user-price:last-child {
  margin-bottom: 0;
}

.price-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  color: var(--snow-white);
  min-width: 100px;
}

/* Market Price - Pink */
.price-amount {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(255, 23, 187, 0.5);
}

/* User Price - Yellow */
.user-price .price-amount {
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(247, 224, 92, 0.5);
}

.price-change {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.price-change.positive {
  color: var(--neon-green);
  background: rgba(57, 255, 20, 0.1);
}

.price-change.negative {
  color: var(--holly-red);
  background: rgba(255, 23, 68, 0.1);
}

/* Details Grid - Compact spacing */
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* Label - White, closer to value */
.detail-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  color: var(--snow-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.1rem;
}

/* Value - Aqua (neon-blue) */
.detail-value {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  color: var(--neon-blue);
  font-weight: 600;
  line-height: 1.3;
}

/* POC ID - Remove background (both in details and thumbnail) */
.detail-value.poc-id,
.product-thumbnail .poc-id,
.related-card-item .poc-id {
  background: none !important;
  color: var(--neon-blue);
  padding: 0;
  border-radius: 0;
  font-weight: 600;
}

/* Also target any element with poc-id class in thumbnails */
.poc-id-badge,
.poc-id-label {
  background: none !important;
}

/* Remove pink background from POC ID text in product thumbnails */
.product-thumbnail .poc-id-text {
  background: none !important;
  color: var(--cosmic-blue) !important;
  padding: 0 !important;
  margin: 0.1rem 0 !important;
  font-size: 0.9rem !important;
}

.detail-value a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-value a:hover {
  color: var(--neon-green);
  text-decoration: underline;
}

/* Price History Section */
.price-history-section {
  margin: 1.5rem 0;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-history-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.no-price-history {
  text-align: center;
  padding: 1.5rem;
  color: var(--frost-silver);
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

/* Set Statistics */
.set-statistics {
  margin: 1.5rem 0;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.set-statistics h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-box {
  background: rgba(11, 15, 26, 0.8);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: var(--neon-blue);
}

.stat-value {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-yellow);
  margin-bottom: 0.3rem;
  text-shadow: 0 0 5px rgba(247, 224, 92, 0.5);
}

.stat-label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.85rem;
  color: var(--frost-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Population Section */
.population-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(11, 15, 26, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.population-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: var(--neon-yellow);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(247, 224, 92, 0.5);
  text-align: center;
}

.placeholder-notice {
  text-align: center;
  padding: 2rem;
  color: var(--neon-blue);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 2px dashed var(--neon-blue);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Related Cards Section */
.related-cards-section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(11, 15, 26, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.related-cards-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
  color: var(--neon-yellow);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(247, 224, 92, 0.5);
  text-align: center;
}

.related-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.related-card-item {
  transition: transform 0.3s ease;
}

.related-card-item:hover {
  transform: translateY(-5px);
}

.related-card-item a {
  text-decoration: none;
  color: inherit;
}

.no-related-cards {
  text-align: center;
  padding: 2rem;
  color: var(--frost-silver);
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.1);
}

.view-full-set {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.full-set-link {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  color: var(--deep-space);
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.full-set-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 243, 255, 0.5);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-yellow));
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 27, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(5px);
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--neon-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Custom Modal Styles (for GOT/NEED functionality) */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(5px);
}

.custom-modal {
  background: linear-gradient(135deg, var(--deep-space) 0%, #0c1530 100%);
  border: 2px solid var(--neon-blue);
  border-radius: 16px;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
  position: relative;
  color: var(--snow-white);
}

.custom-modal h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(247, 224, 92, 0.5);
  font-family: 'Orbitron', sans-serif;
}

.custom-modal p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--frost-silver);
  line-height: 1.5;
}

.custom-modal input[type="number"] {
  padding: 0.8rem;
  width: 80%;
  margin-bottom: 1.5rem;
  border: 2px solid var(--neon-blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--snow-white);
  font-size: 1rem;
  text-align: center;
}

.custom-modal input[type="number"]:focus {
  outline: none;
  border-color: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255, 23, 187, 0.5);
}

.custom-modal input[type="number"]::placeholder {
  color: var(--frost-silver);
  opacity: 0.7;
}

.custom-modal .modal-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  color: var(--deep-space);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-modal .modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 243, 255, 0.6);
  background: linear-gradient(135deg, var(--neon-green), var(--neon-yellow));
}

.custom-modal .modal-cancel {
  background: linear-gradient(135deg, #e60073, #cc0066);
  color: white;
}

.custom-modal .modal-cancel:hover {
  background: linear-gradient(135deg, #cc0066, #99004d);
  box-shadow: 0 6px 20px rgba(230, 0, 115, 0.6);
}

.custom-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--neon-yellow);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.custom-modal .modal-close:hover {
  color: #ff5555;
  background: rgba(255, 85, 85, 0.1);
  transform: scale(1.1);
}

/* Share Modal */
.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  backdrop-filter: blur(10px);
}

.share-modal {
  background: linear-gradient(135deg, var(--deep-space) 0%, #0c1530 100%);
  border: 2px solid var(--neon-blue);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 243, 255, 0.4);
  position: relative;
  color: var(--snow-white);
}

.share-modal h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(247, 224, 92, 0.5);
  font-family: 'Orbitron', sans-serif;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .share-options {
    grid-template-columns: 1fr;
  }
}

.share-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--snow-white);
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.share-option:hover {
  background: rgba(0, 243, 255, 0.15);
  border-color: var(--neon-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.share-option i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.share-option span {
  flex: 1;
}

.share-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--neon-yellow);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-close:hover {
  color: #ff5555;
  background: rgba(255, 85, 85, 0.2);
  transform: scale(1.1) rotate(90deg);
}

/* Error Containers */
.error-container {
  max-width: 800px;
  margin: 5rem auto;
  padding: 3rem;
  text-align: center;
  background: rgba(11, 15, 26, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.error-container h1 {
  color: var(--holly-red);
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.error-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--frost-silver);
}

.card-id {
  background: rgba(255, 23, 68, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: monospace;
  color: var(--holly-red);
}

.button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  color: var(--deep-space);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 243, 255, 0.5);
}

.error-details {
  background: rgba(255, 23, 68, 0.1);
  padding: 1rem;
  border-radius: 8px;
  font-family: monospace;
  color: var(--holly-red);
  text-align: left;
  margin: 2rem 0;
  font-size: 0.9rem;
  overflow-x: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .card-title {
    font-size: 1.6rem;
  }
  
  .card-subtitle {
    font-size: 1rem;
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  
  .price-amount {
    font-size: 1.5rem;
  }
  
  .share-btn {
    width: 100%;
  }
  
  .market-price,
  .user-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .price-label {
    min-width: auto;
  }
  
  .related-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .share-modal {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .card-detail-container {
    padding: 0 0.5rem 2rem;
  }
  
  .card-image-wrapper,
  .card-details-column {
    padding: 1.2rem;
  }
  
  .card-title {
    font-size: 1.4rem;
  }
  
  .card-subtitle {
    font-size: 0.9rem;
  }
  
  .price-section,
  .details-grid,
  .price-history-section,
  .set-statistics {
    padding: 1rem;
  }
  
  .related-cards-section {
    padding: 1.2rem;
  }
  
  .full-set-link {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .placeholder-notice {
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
  }
  
  .stat-value {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}