
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
      line-height: 1.6;
      color: #333;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      background: #fff;
    }
    
    h1 {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      font-size: 2rem;
      color: #2c3e50;
    }
    
    h1 img {
      height: 300px;
      width: auto;
    }
	
	h1 sup {
	  font-size: 0.6em;
	  line-height: 0;
	  vertical-align: baseline;
	  position: relative;
	  top: -0.4em;
	  left: -0.75em;
	}    
	
.list-page h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.list-page p {
  text-align: center;
}

    hr {
      border: none;
      height: 4px;
      background: linear-gradient(to right, transparent, #3498db, transparent);
      margin: 30px 0;
    }
    
    .manufacturer {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 20px;
    }
    
    .manufacturer em {
      color: #e74c3c;
      font-style: italic;
    }
    
    .set-info {
      font-size: 1.2rem;
      font-weight: bold;
      margin: 25px 0 15px;
      color: #2c3e50;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
      background: #f8f9fa;
	  font-size: 0.9em;  /* Optional: Smaller text fits more compactly */
  }
    
    th, td {
      padding: 4px 8px;     
      border: 1px solid #dee2e6;
      vertical-align: top;
	  width: 33.3%;
    }
    
    th {
	  text-align: center;
      background: #3498db;
      color: white;
      font-weight: 600;
      padding: 6px 8px;  /* Slightly more than td for header distinction */
    }
	
	td {
	  text-align: left;
	}	

	.table-2col {
      width: 50%;
      border-collapse: collapse;
      margin-bottom: 30px;
      background: #f8f9fa;
	  font-size: 0.9em;  /* Optional: Smaller text fits more compactly */
	  table-layout: fixed;
  }

	.table-2col th,
	.table-2col td {  /* Special table with 2 columns instead of 3 */
      padding: 4px 8px;
      border: 1px solid #dee2e6;
      vertical-align: top;
    }
	.table-2col th {
      text-align: center;
      background: #3498db;
      color: white;
	  font-weight: 600;
	  padding: 6px 8px;
	} 
    .table-2col td {
      text-align: left;
	}
	
	table.table-2col th, 
	table.table-2col td {
  width: auto !important;
}
		
	.table-4col {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
      background: #f8f9fa;
	  font-size: 0.9em;  /* Optional: Smaller text fits more compactly */
	  table-layout: fixed;
  }

	.table-4col th,
	.table-4col td {  /* Special table with 4 columns instead of 3 */
      padding: 4px 8px;
      border: 1px solid #dee2e6;
      vertical-align: top;
    }
	.table-4col th {
      text-align: center;
      background: #3498db;
      color: white;
	  font-weight: 600;
	  padding: 6px 8px;
	} 
    .table-4col td {
      text-align: left;
	}
	
	table.table-4col th, 
	table.table-4col td {
  width: auto !important;
}
		
	table.table-5col {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 30px;
      background: #f8f9fa;
	  font-size: 0.9em;  /* Optional: Smaller text fits more compactly */
  }

	table.table-5col th,
	table.table-5col td {  /* Special table with 5 columns instead of 3 */
      padding: 4px 8px;
      border: 1px solid #dee2e6;
      vertical-align: top;
	  width: 20%;
    }
 
	table.table-5col td {
      text-align: left;
	}
	
    .artist {
	  color: #e74c3c;
	  font-size: 0.85em;
	  display: inline;      /* keep on same line */
	  margin-left: 4px;     /* small space after title */
	  margin-top: 0;        /* no vertical offset */
	}
   .character {
     color: #408080;  /* Teal for characters */
     font-size: 0.85em;
    }

   .cinfo {
     color: magenta;
     font-size: 0.75em;
    }

   .tinfo {
     color: black;
     font-size: 0.75em;
    }
   
    .section {
      margin: 30px 0;
    }
    
    .section h3 {
      font-size: 1.3rem;
      color: #2c3e50;
      margin-bottom: 15px;
      border-bottom: 2px solid #3498db;
      padding-bottom: 8px;
    }
    
    ul {
      margin: 15px 0;
      padding-left: 25px;
    }
    
/*    li {
      margin-bottom: 2px;
    }
*/    
    .comments {
      background: #e8f4f8;
      padding: 20px;
      border-left: 4px solid #3498db;
      margin: 25px 0;
    }
	.comments ol, 
	.comments ul {
	  padding-left: 25px;
	  margin: 15px 0;
	}

	.comments ol li {
/*	  margin-bottom: 8px;*/
	  margin-bottom: 4px;
	  list-style-position: outside;
	}    
    .back-link {
      display: block;
      text-align: center;
      margin-top: 40px;
    }
    
    .back-link img {
      height: 40px;
      opacity: 0.8;
      transition: opacity 0.3s;
    }
    
    .back-link img:hover {
      opacity: 1;
    }
    
	/* Modal Popup */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content iframe {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
}

.close {
  position: absolute;
  top: 4px;
  right: 8px;
  z-index: 10;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #666;
}

.close:hover {
  color: #000;
}
    @media (max-width: 768px) {
      table {
        font-size: 0.9rem;
      }
      
      th, td {
        padding: 8px 10px;
      }
      
      h1 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
      }
    }
